Compare commits

..

2 Commits

Author SHA1 Message Date
krolyxon 57dab0ae72 waybar: use brictl for brightness control 2026-01-21 19:29:14 +05:30
krolyxon bfeb728f80 install.sh: fix AUTO_YES for UTILITY_PKGS 2026-01-21 19:28:54 +05:30
2 changed files with 5 additions and 3 deletions

View File

@ -119,8 +119,10 @@
"backlight": {
"format": "{icon} {percent}%",
"format-icons": ["󰃞", "󰃟", "󰃠"],
"on-scroll-up": "brightnessctl set 1%+",
"on-scroll-down": "brightnessctl set 1%-",
// "on-scroll-up": "brightnessctl set 1%+",
// "on-scroll-down": "brightnessctl set 1%-",
"on-scroll-up": "brictl +",
"on-scroll-down": "brictl -",
"min-length": 6
},
"pulseaudio": {

View File

@ -129,7 +129,7 @@ Do you understand the risks and want to continue?" || exit 1
source "$currentDir/packages/pkg_utils.sh"
prompt_style "Important utilities (Most likely go with defaults)"
if ((AUTO_YES)); then
DEV_PKGS=("${pkg_utils[@]}")
UTILITY_PKGS=("${pkg_utils[@]}")
else
gum_to_array UTILITY_PKGS < <(choose_packages pkg_utils)
fi