converted all colors to theme_config.lua; fixed and added some bugs; rewrote some stuff and added some

This commit is contained in:
Kievits Rene
2022-06-27 01:08:45 +02:00
parent 0ccd38f03a
commit b2e22fdf8a
44 changed files with 1520 additions and 767 deletions

View File

@@ -1,15 +1,13 @@
#!/bin/bash
SINK=$(LC_ALL=C pactl get-default-sink)
case $1 in
"volume")
echo $(LC_ALL=C pactl get-sink-volume $SINK | awk '{print $5}')
echo $(LC_ALL=C pactl get-sink-volume @DEFAULT_SINK@ | awk '{print $5}')
;;
"mute")
echo $(LC_ALL=C pactl get-sink-mute $SINK)
echo $(LC_ALL=C pactl get-sink-mute @DEFAULT_SINK@)
;;
"set_sink")