transparent cava

master
Daniel Napora 2022-03-13 14:38:01 +01:00
parent 8b49e99774
commit 62d472a79b
1 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
#!/bin/bash
#: Usage: transparent-cava (height in pixels) (width full or halt)
#: example transparent-cava 100 full
#: default is 200px height and half width
CONFIG_DIR="$HOME/.config/terminator"
CONFIG_FILE="$CONFIG_DIR/cava-transparent"
if [ ! -f $CONFIG_FILE ]; then
cat <<EOF > ${CONFIG_FILE}
[global_config]
dbus = False
[keybindings]
[profiles]
[[default]]
allow_bold = False
background_darkness = 0.0
background_type = transparent
cursor_blink = False
cursor_color = "#aaaaaa"
font = Sans 4
show_titlebar = False
scrollbar_position = hidden
scroll_on_keystroke = False
use_custom_command = True
custom_command = cava
use_system_font = False
[layouts]
[plugins]
EOF
fi
CAVA_HEIGHT=${1:-200}
CAVA_WIDTH=${2:-half}
WIDTH=$(wmctrl -d|grep "*"|awk '{print $4}'|cut -d'x' -f1)
HEIGHT=$(wmctrl -d|grep "*"|awk '{print $4}'|cut -d'x' -f2)
TOP=$((HEIGHT-CAVA_HEIGHT))
LEFT=0
if [ "$CAVA_WIDTH" != "full" ];then
LEFT=$((WIDTH/4))
WIDTH=$((WIDTH/2))
else
:
fi
terminator -b -g "${CONFIG_FILE}" -T cavatransparent --geometry "${WIDTH}x${CAVA_HEIGHT}+${LEFT}+${TOP}"