mirror of
https://github.com/ashish-yadav11/dwmblocks
synced 2024-11-17 09:26:13 +00:00
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
|