dwt1--dotfiles/.dmenu/dmenu-sysmon.sh

46 lines
645 B
Bash
Raw Normal View History

#!/bin/bash
# ____ _____
# | _ \_ _| Derek Taylor (DistroTube)
# | | | || | http://www.youtube.com/c/DistroTube
# | |_| || | http://www.gitlab.com/dwt1/
# |____/ |_|
#
# Dmenu script for launching system monitoring programs.
2020-05-12 06:04:10 +00:00
declare -a options=("bashtop
glances
gtop
2020-05-12 06:04:10 +00:00
htop
iftop
iotop
iptraf-ng
nmon
s-tui
quit")
choice=$(echo -e "${options[@]}" | dmenu -l -i -p 'System monitors: ')
case $choice in
quit)
echo "Program terminated." && exit 1
;;
2020-05-12 06:04:10 +00:00
bashtop| \
glances| \
gtop| \
2020-05-12 06:04:10 +00:00
htop| \
nmon| \
s-tui)
exec st -e $choice
;;
iftop| \
iotop| \
iptraf-ng)
exec st -e gksu $choice
;;
*)
exit 1
;;
esac