diff options
Diffstat (limited to 'scripts/volume')
| -rwxr-xr-x | scripts/volume/volumedown | 3 | ||||
| -rwxr-xr-x | scripts/volume/volumemute | 3 | ||||
| -rwxr-xr-x | scripts/volume/volumeup | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/scripts/volume/volumedown b/scripts/volume/volumedown new file mode 100755 index 0000000..aacc4fd --- /dev/null +++ b/scripts/volume/volumedown @@ -0,0 +1,3 @@ +#!/bin/bash + +exec amixer set Master 5%- diff --git a/scripts/volume/volumemute b/scripts/volume/volumemute new file mode 100755 index 0000000..ac0f0d0 --- /dev/null +++ b/scripts/volume/volumemute @@ -0,0 +1,3 @@ +#!/bin/bash + +exec amixer set Master toggle diff --git a/scripts/volume/volumeup b/scripts/volume/volumeup new file mode 100755 index 0000000..49d508e --- /dev/null +++ b/scripts/volume/volumeup @@ -0,0 +1,3 @@ +#!/bin/bash + +exec amixer set Master 5%+
\ No newline at end of file |
