🎨 Update config

This commit is contained in:
Smirnov Olexandr 2020-11-11 22:48:06 +02:00
parent 394d56fa69
commit 07805d44aa
28 changed files with 845 additions and 415 deletions

17
scripts/dmenu/dmenu-sysmon.sh Executable file
View file

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