From 4c4b967a3bd2d659b3b8229c5caf970bc45a9542 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sat, 19 Nov 2022 20:24:42 -0500 Subject: [PATCH] Drop rofi in favour of dmenu --- .config/i3/config | 15 +++++++-------- .local/bin/dmenu-light | 4 ++++ .local/bin/{rofi-pamixer => dmenu-pamixer} | 2 +- .local/bin/rofi-light | 4 ---- 4 files changed, 12 insertions(+), 13 deletions(-) create mode 100755 .local/bin/dmenu-light rename .local/bin/{rofi-pamixer => dmenu-pamixer} (58%) delete mode 100755 .local/bin/rofi-light 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 similarity index 58% rename from .local/bin/rofi-pamixer rename to .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" -- 2.20.1