diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-06-19 08:25:41 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-06-19 08:25:41 +0200 |
| commit | dc98cba24cb5f1f3e260c49fc61add4a113a1df0 (patch) | |
| tree | 2f5b996f57a2e332884849e7d29fdadf5c698382 /old | |
| parent | af05c6c366ce928818848a3d8c897e7c52ae9d0f (diff) | |
| download | scripts-dc98cba24cb5f1f3e260c49fc61add4a113a1df0.tar.gz scripts-dc98cba24cb5f1f3e260c49fc61add4a113a1df0.zip | |
Update to status (now I use a statusbar)
Diffstat (limited to 'old')
| -rwxr-xr-x | old/brightness | 16 | ||||
| -rwxr-xr-x | old/notify-status | 7 | ||||
| -rwxr-xr-x | old/togglemute | 18 | ||||
| -rwxr-xr-x | old/volume | 13 |
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" | ||
| 12 | notify="herbe" | ||
| 13 | |||
| 14 | pkill herbe # comment this too if not using herbe | ||
| 15 | |||
| 16 | xbacklight -$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 | |||
| 7 | herbe "$(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 | ||
| 7 | notify=herbe | ||
| 8 | |||
| 9 | ismute=$(pulsemixer --toggle-mute --get-mute) | ||
| 10 | |||
| 11 | if [ "$ismute" = "1" ]; then | ||
| 12 | m="muted" | ||
| 13 | else | ||
| 14 | m="unmuted" | ||
| 15 | fi | ||
| 16 | |||
| 17 | pkill 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 | ||
| 8 | notify=herbe | ||
| 9 | |||
| 10 | newvol=$(pulsemixer --change-volume "$1" --get-volume | awk '{print $1}') | ||
| 11 | |||
| 12 | pkill herbe # comment this line too if not using herbe | ||
| 13 | $notify "Volume" "$newvol%" | ||
