This commit is contained in:
Leon Kowarschick 2020-06-05 16:43:37 +02:00
parent f778dac528
commit 61ba8ea65c
2 changed files with 10 additions and 1 deletions

View file

@ -7,7 +7,7 @@ echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
outputs=$(xrandr --query | grep " connected" | cut -d" " -f1) outputs=$(xrandr --query | grep " connected" | cut -d" " -f1)
tray_output=HDMI-A-0 tray_output=HDMI-A-0
for m in $outputs; do for m in $outputs; do
if [[ $m == "DisplayPort-1" ]]; then if [[ $m != "DisplayPort-1" ]]; then
tray_output=$m tray_output=$m
fi fi
done done

View file

@ -215,3 +215,12 @@ button[class*="lookFilled"] {
height: 4.6rem; height: 4.6rem;
padding-bottom: 0.5rem; padding-bottom: 0.5rem;
} }
div[class*="chat"] div[class*="root"] {
background-color: #282828;
}
div[class*="chat"] div[class*="root"] canvas {
border-radius: 20px;
}