diff options
author | Amin Bandali <bandali@gnu.org> | 2022-11-19 20:24:42 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2022-11-19 20:25:33 -0500 |
commit | 4c4b967a3bd2d659b3b8229c5caf970bc45a9542 (patch) | |
tree | 021872062d344d26fefa07d5cd969cced220d503 | |
parent | 060e89402c8014462a16ee1c92939a906aa1d558 (diff) | |
download | configs-4c4b967a3bd2d659b3b8229c5caf970bc45a9542.tar.gz configs-4c4b967a3bd2d659b3b8229c5caf970bc45a9542.tar.xz configs-4c4b967a3bd2d659b3b8229c5caf970bc45a9542.zip |
Drop rofi in favour of dmenu
-rw-r--r-- | .config/i3/config | 15 | ||||
-rwxr-xr-x | .local/bin/dmenu-light | 4 | ||||
-rwxr-xr-x | .local/bin/dmenu-pamixer (renamed from .local/bin/rofi-pamixer) | 2 | ||||
-rwxr-xr-x | .local/bin/rofi-light | 4 |
4 files changed, 12 insertions, 13 deletions
diff --git a/.config/i3/config b/.config/i3/config index 59fc1b1..65671d6 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -29,18 +29,17 @@ bindsym $mod+Shift+w kill # kill an application #bindsym --release $mod+Shift+x exec xkill -# rofi launcher and pass -bindsym $mod+space exec rofi -show run -display-run ' > ' -display-window ' 🗔 ' -bindsym $mod+backslash exec rofi -show window -display-run ' > ' -display-window ' 🗔 ' -bindsym $mod+Shift+space exec rofi-pass +# launcher and pass +bindsym $mod+space exec dmenu_run +bindsym $mod+backslash exec passmenu --type # brightness -bindsym $mod+apostrophe exec rofi-light # rofi-based brightness chooser -bindsym XF86MonBrightnessUp exec light -A 5 # increase screen brightness -bindsym XF86MonBrightnessDown exec light -U 5 # decrease screen brightness +bindsym $mod+apostrophe exec dmenu-light # brightness chooser +bindsym XF86MonBrightnessUp exec light -A 5 # increase brightness +bindsym XF86MonBrightnessDown exec light -U 5 # decrease brightness # volume -bindsym $mod+semicolon exec rofi-pamixer # rofi-based volume chooser +bindsym $mod+semicolon exec dmenu-pamixer # volume chooser bindsym XF86AudioRaiseVolume exec pamixer --allow-boost --increase 5 bindsym XF86AudioLowerVolume exec pamixer --allow-boost --decrease 5 bindsym XF86AudioMute exec pamixer --toggle-mute diff --git a/.local/bin/dmenu-light b/.local/bin/dmenu-light new file mode 100755 index 0000000..988a073 --- /dev/null +++ b/.local/bin/dmenu-light @@ -0,0 +1,4 @@ +#!/bin/sh +cur=$(light -G) +val=$(dmenu -p "brightness ($cur):" < /dev/null) +[ -n "$val" ] && light -S "$val" diff --git a/.local/bin/rofi-pamixer b/.local/bin/dmenu-pamixer index 19377dc..c830e9d 100755 --- a/.local/bin/rofi-pamixer +++ b/.local/bin/dmenu-pamixer @@ -1,4 +1,4 @@ #!/bin/sh cur=$(pamixer --get-volume) -val=$(rofi -dmenu -mesg "volume: $cur" -p "" -l 0 -width 8) +val=$(dmenu -p "volume ($cur):" < /dev/null) [ -n "$val" ] && pamixer --set-volume "$val" diff --git a/.local/bin/rofi-light b/.local/bin/rofi-light deleted file mode 100755 index 72fbd43..0000000 --- a/.local/bin/rofi-light +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -cur=$(light -G) -val=$(rofi -dmenu -mesg "brightness: $cur" -p "" -l 0 -width 13) -[ -n "$val" ] && light -S "$val" |