More config cleanup
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
005c4f29b6
commit
8d3f9c8a1d
22 changed files with 44 additions and 27 deletions
18
system/.local/bin/increase_volume.sh
Executable file
18
system/.local/bin/increase_volume.sh
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# SCRIPT NAME:
|
||||
# increase_volume.sh
|
||||
#
|
||||
# AUTHOR:
|
||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# This script uses pamixer to increase the volume by 5% as long
|
||||
# as the current volume is less than 150%. I call this script
|
||||
# using custom i3 keybindings.
|
||||
#
|
||||
# USAGE:
|
||||
# ./increase_volume.sh
|
||||
if [[ $(pamixer --get-volume) -lt 150 ]]; then
|
||||
pamixer -i 5 --allow-boost
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue