diff options
| author | krolxon <krolyxon@tutanota.com> | 2025-08-25 15:44:14 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2025-08-25 15:44:14 +0530 |
| commit | ffeaf344c429ab195160be967a5fb62346f3eed9 (patch) | |
| tree | 5cb9ebeca9d292a6a1b09b5398e88a276c67b18c /.config/waybar/scripts | |
| parent | a81ab033ec5ac0cdbdddfc31f242aee7cb5aee4e (diff) | |
move to fuzzel from rofi
rofi is bad when it comes to fuzzy matching and also you cannot execute
command as it is, for example you cannot pass arguements to commands
like "setwall -m".
Fuzzel is way simpler, natively supports wayland and is a drop in
replacement for dmenu.
Diffstat (limited to '.config/waybar/scripts')
| -rwxr-xr-x | .config/waybar/scripts/envyswitch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/waybar/scripts/envyswitch.sh b/.config/waybar/scripts/envyswitch.sh index 60c09a4..e1d9933 100755 --- a/.config/waybar/scripts/envyswitch.sh +++ b/.config/waybar/scripts/envyswitch.sh @@ -1,6 +1,6 @@ #!/bin/env bash -mode="$(printf "Integrated\nHybrid\nNvidia" | rofi -dmenu -case-smart -matching "fuzzy" -p "Select the graphics mode:")" +mode="$(printf "Integrated\nHybrid\nNvidia" | fuzzel --dmenu -p "Select the graphics mode:")" # Exit if no selection was made [ -z "$mode" ] && exit 1 |
