aboutsummaryrefslogtreecommitdiff
path: root/old
diff options
context:
space:
mode:
Diffstat (limited to 'old')
-rwxr-xr-xold/brightness16
-rwxr-xr-xold/notify-status7
-rwxr-xr-xold/togglemute18
-rwxr-xr-xold/volume13
4 files changed, 54 insertions, 0 deletions
diff --git a/old/brightness b/old/brightness
new file mode 100755
index 0000000..a7294fb
--- /dev/null
+++ b/old/brightness
@@ -0,0 +1,16 @@
1#!/bin/sh
2
3# Increase / decrease brightness, and pops up a notification
4# Requires: xbacklight, a notification program such as herbe or notify-send
5# Usage: brightness {inc|dec} n
6
7# ksh completion
8# set -A complete_brightness_1 inc dec
9# set -A complete_brightness_2 5
10
11#notify="notify-send"
12notify="herbe"
13
14pkill herbe # comment this too if not using herbe
15
16xbacklight -$1 $2 && $notify "Brightness: $(xbacklight | sed 's/\..*$//')%"
diff --git a/old/notify-status b/old/notify-status
new file mode 100755
index 0000000..73a9435
--- /dev/null
+++ b/old/notify-status
@@ -0,0 +1,7 @@
1#!/bin/sh
2
3# Simple script to send a notification displaying the output of status
4
5# Requires: status, herbe (or similar, e.g. notify-send)
6
7herbe "$(status '\n\n')"
diff --git a/old/togglemute b/old/togglemute
new file mode 100755
index 0000000..b799b02
--- /dev/null
+++ b/old/togglemute
@@ -0,0 +1,18 @@
1#!/bin/sh
2
3# Toggle mute state and notify
4# Requires: pulsemixer, notify-send or similar
5
6#notify=notify-send
7notify=herbe
8
9ismute=$(pulsemixer --toggle-mute --get-mute)
10
11if [ "$ismute" = "1" ]; then
12 m="muted"
13else
14 m="unmuted"
15fi
16
17pkill herbe # comment this line too if not using herbe
18$notify "Audio $m"
diff --git a/old/volume b/old/volume
new file mode 100755
index 0000000..8dcd36a
--- /dev/null
+++ b/old/volume
@@ -0,0 +1,13 @@
1#!/bin/sh
2
3# Change volume and notify
4# Usage: volume {+n|-n}
5# Requires: pulsemixer, notify-send or similar
6
7#notify=notify-send
8notify=herbe
9
10newvol=$(pulsemixer --change-volume "$1" --get-volume | awk '{print $1}')
11
12pkill herbe # comment this line too if not using herbe
13$notify "Volume" "$newvol%"

Generated with cgit - Back to sebastiano.tronto.net