mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-24 12:32:32 +00:00
WM Theme [KDE]: Fix detection of Aurorae themes
Aurorae themes were detected as kwin.aurorae because the name was taken from library= instead of theme= in kwinrc. #766
This commit is contained in:
2
neofetch
2
neofetch
@@ -778,7 +778,7 @@ get_wm_theme() {
|
||||
kde_config_dir
|
||||
|
||||
if [[ -f "${kde_config_dir}/kwinrc" ]]; then
|
||||
wm_theme="$(awk '/theme=kwin4/{gsub(/theme=kwin4_decoration_qml_/,"",$0); print $0; exit}' "${kde_config_dir}/kwinrc")"
|
||||
wm_theme="$(awk '/theme=/{gsub(/theme=.*_/,"",$0); print $0; exit}' "${kde_config_dir}/kwinrc")"
|
||||
[[ -z "$wm_theme" ]] && wm_theme="$(awk '/library=org.kde/{gsub(/library=org.kde./,"",$0); print $0; exit}' "${kde_config_dir}/kwinrc")"
|
||||
[[ -z "$wm_theme" ]] && wm_theme="$(awk '/PluginLib=kwin3_/{gsub(/PluginLib=kwin3_/,"",$0); print $0; exit}' "${kde_config_dir}/kwinrc")"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user