mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
15 lines
266 B
Bash
Executable file
15 lines
266 B
Bash
Executable file
#!/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"
|