bin/vol.sh (view raw)
1#!/usr/bin/env bash
2
3fg="$(xres color15)"
4light="$(xres color8)"
5
6while getopts idq options
7do
8 case $options in
9 i)
10 pamixer -i 2
11 ;;
12
13 d)
14 pamixer -d 2
15 ;;
16 q)
17 cur_vol=$(pamixer --get-volume-human)
18 if [[ "$cur_vol" == "muted" ]]; then
19 echo -ne "%{F$light}vol %{F$fg}muted"
20 else
21 echo -ne "%{F$light}vol %{F$fg}$cur_vol"
22 fi
23 ;;
24 esac
25done