7 lines
159 B
Bash
Executable file
7 lines
159 B
Bash
Executable file
#!/bin/dash
|
|
case "$1" in
|
|
1) exec termite -e "htop -s PERCENT_CPU" ;;
|
|
2) exec termite -e "htop" ;;
|
|
3) exec termite -e "htop -s PERCENT_MEM" ;;
|
|
esac
|