Rename more scripts

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2019-03-06 17:07:39 +01:00
parent 410d0b33c6
commit 469f519890
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
7 changed files with 16 additions and 14 deletions

View file

@ -0,0 +1,18 @@
#!/usr/bin/env bash
#
# SCRIPT NAME:
# increase-volume
#
# 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
if [[ $(pamixer --get-volume) -lt 150 ]]; then
pamixer -i 5 --allow-boost
fi