alot of messing with what I like for a desktop

This commit is contained in:
Chris Cochrun 2023-02-05 07:09:48 -06:00
parent 2e8b8b98a2
commit 5a834ec5a3
14 changed files with 204 additions and 88 deletions

9
hypr/scripts/dynamic-float.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
function handle {
if [[ ${1:0:12} == "activewindow" ]]; then
echo ${1:0}
fi
}
socat - UNIX-CONNECT:/tmp/hypr/$(echo $HYPRLAND_INSTANCE_SIGNATURE)/.socket2.sock | while read line; do handle $line; done