scripts
This commit is contained in:
commit
6e5095f3cf
35 changed files with 453 additions and 0 deletions
21
scriptDrafts/dwm-volume.sh
Executable file
21
scriptDrafts/dwm-volume.sh
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/sh
|
||||
|
||||
case $1 in
|
||||
up)
|
||||
amixer set 'Master' 2%+
|
||||
;;
|
||||
down)
|
||||
amixer set 'Master' 2%-
|
||||
;;
|
||||
max)
|
||||
amixer set 'Master' 100%
|
||||
;;
|
||||
min)
|
||||
amixer set 'Master' 1%
|
||||
;;
|
||||
toggle)
|
||||
amixer set 'Master' toggle
|
||||
;;
|
||||
esac
|
||||
|
||||
kill -40 $(pidof dwmblocks)
|
||||
Loading…
Add table
Add a link
Reference in a new issue