Compare commits

...

2 Commits

263 changed files with 310 additions and 49 deletions

Binary file not shown.

View File

@ -1,5 +1,11 @@
#!/usr/bin/env bash #!/usr/bin/env bash
instances=$(($(pgrep -f $0 | wc -l) -1))
if [ "$instances" -gt 1 ]; then
echo "Another instance of this script is already running."
exit 1
fi
monitors=$(hyprctl -j monitors | jq "length") monitors=$(hyprctl -j monitors | jq "length")
desired_workspaces=4 desired_workspaces=4

Some files were not shown because too many files have changed in this diff Show More