tweaks to desktop stuff
This commit is contained in:
parent
d924e65fd6
commit
543c78db6c
|
@ -129,6 +129,7 @@ in
|
||||||
# for windows named/classed as abc and xyz
|
# for windows named/classed as abc and xyz
|
||||||
windowrule=opaque,firefox
|
windowrule=opaque,firefox
|
||||||
windowrule=float,dolphin
|
windowrule=float,dolphin
|
||||||
|
windowrule=float,nm-tray
|
||||||
windowrule=size 60% 60%,dolphin
|
windowrule=size 60% 60%,dolphin
|
||||||
${if laptop then "# this is a kaladin space" else "windowrule=workspace 1,mpv"}
|
${if laptop then "# this is a kaladin space" else "windowrule=workspace 1,mpv"}
|
||||||
windowrule=float,mpv
|
windowrule=float,mpv
|
||||||
|
|
|
@ -171,5 +171,7 @@ with lib;
|
||||||
ladspaPlugins
|
ladspaPlugins
|
||||||
calf
|
calf
|
||||||
carla
|
carla
|
||||||
|
esphome
|
||||||
|
esptool
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
kill $(pgrep waybar) && waybar &
|
waybar=$(pgrep waybar)
|
||||||
|
|
||||||
|
if [[ $waybar > 0 ]]; then
|
||||||
|
kill $waybar;
|
||||||
|
echo "killing $waybar"
|
||||||
|
else
|
||||||
|
exec waybar
|
||||||
|
echo "starting waybar"
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue