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