+ Fix rofi misalligned problem

+ Mutt -> Mutt-wizard (luke smith's mutt script) transitiion
This commit is contained in:
ziro 2020-06-14 17:08:25 +07:00
parent 458d561f11
commit c1d195baf8
6 changed files with 13 additions and 111 deletions

View file

@ -1,21 +1,21 @@
#!/bin/sh
#--- Option ------------------
cancel=""
lock=""
suspend=""
log_out=""
restart=""
shutdown=""
#--- Choices -----------------
choice="$cancel
$shutdown
choice="$shutdown
$restart
$lock
$suspend
$log_out"
chosen=$(echo -en "$choice" | rofi -selected-row 0 -dmenu -i -theme ~/.config/rofi/theme/Android/five.rasi)
chosen=$(echo -en "$choice" | rofi -selected-row 2 -dmenu -i -theme ~/.config/rofi/theme/Android/five.rasi)
case "$chosen" in
$cancel) ;;
$lock) slock;;
$log_out) bspc quit ;;
$suspend) systemctl suspend ;;
$restart) systemctl reboot ;;