Title: fix option --title-fqdn doesn't work

This commit is contained in:
李通洲 2023-07-20 11:14:30 +08:00
parent d3ff245e1b
commit 00a5f1bf3f
No known key found for this signature in database
GPG Key ID: 269AD4F5325A22A3
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ Bugfixes:
* Fix false errors when built without libnm support (Wifi, Linux)
* Properly detect CPU on POWER (CPU, Linux)
* Fix compatibility with Fig (Terminal, macOS)
* Fix option `--title-fqdn` doesn't work (Title)
Logo:
* Change the special handling of `kitty` protocol with `.png` image file to a new image protocol `kitty-direct`. This is the fastest image protocol because fastfetch doesn't need to pre-encode the image to base64 or something and the image content doesn't need to be transmitted via tty. Note:

View File

@ -962,6 +962,7 @@ static void parseOption(FFdata* data, const char* key, const char* value)
else if(ffParseWifiCommandOptions(&instance.config.wifi, key, value)) {}
else if(ffParseWMCommandOptions(&instance.config.wm, key, value)) {}
else if(ffParseWMThemeCommandOptions(&instance.config.wmTheme, key, value)) {}
else if(ffParseTitleCommandOptions(&instance.config.title, key, value)) {}
else if(ffParseThemeCommandOptions(&instance.config.theme, key, value)) {}
else if(ffParseIconsCommandOptions(&instance.config.icons, key, value)) {}
else if(ffParseWallpaperCommandOptions(&instance.config.wallpaper, key, value)) {}