Mostly mutt config and some tidying
This commit is contained in:
parent
2aaf1684dd
commit
1dac5b8ee3
21 changed files with 987 additions and 24 deletions
14
bin/volume
Executable file
14
bin/volume
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
# A simple script to adjust the volume
|
||||
# Requires pulse and amixer
|
||||
|
||||
case "$1" in
|
||||
"up")
|
||||
amixer -q -D default sset Master 5%+ unmute
|
||||
;;
|
||||
"down")
|
||||
amixer -q -D default sset Master 5%- unmute
|
||||
esac
|
||||
|
||||
command -v notify-send && notify-send "Volume" "$(amixer -D default sget Master | grep -o '\[.*\%' | tr -d '[')"
|
Loading…
Add table
Add a link
Reference in a new issue