diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-03 17:02:39 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-03 17:02:39 -0300 |
commit | fed9f9256253b7f711689b7c544127453988a3b1 (patch) | |
tree | 4c24f339da4f97787b16dd6d50bd4ed5ef40a2cd | |
parent | c8fa37572b357156d5d6e254100205e293fad0f6 (diff) | |
download | puppet-nodo-fed9f9256253b7f711689b7c544127453988a3b1.tar.gz puppet-nodo-fed9f9256253b7f711689b7c544127453988a3b1.tar.bz2 |
Feat: list other potential packages at nodo::utils::interface
-rw-r--r-- | manifests/utils/interface.pp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/manifests/utils/interface.pp b/manifests/utils/interface.pp index 109d539..8a67557 100644 --- a/manifests/utils/interface.pp +++ b/manifests/utils/interface.pp @@ -62,9 +62,7 @@ class nodo::utils::interface inherits nodo::utils::interface::console { 'compton', 'xzoom', 'xautomation', - 'gtk-theme-switch', - 'gtk-smooth-themes', - 'lxappearance', + 'wmctrl', 'pcmanfm', 'metar', @@ -74,6 +72,17 @@ class nodo::utils::interface inherits nodo::utils::interface::console { 'xterm', 'eterm', 'gnome-terminal', + + # Check https://wiki.archlinux.org/title/GTK + # https://wiki.gnome.org/Apps/DconfEditor + 'gtk-theme-switch', + 'gtk-smooth-themes', + 'dconf-editor', + 'lxappearance', + + # xsettingsd is a daemon that implements the XSETTINGS specification. + # https://codeberg.org/derat/xsettingsd + 'xsettingsd', ]: ensure => absent, } |