🎨 Update

This commit is contained in:
Smirnov Olexandr 2020-11-25 20:53:55 +02:00
parent 07805d44aa
commit 0d2b7d6ba3
28 changed files with 668 additions and 225 deletions

15
script/dmenu/dmenu-sysmon.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/sh
declare options=("htop
bashtop
gtop")
choice=$(echo -e "${options[@]}" | dmenu -h 24 -p 'System monitor ')
case "$choice" in
htop) choice="htop" ;;
bashtop) choice="bashtop" ;;
gtop) choice="gtop" ;;
*) exit 1 ;;
esac
kitty -e "$choice"