New folder structure

This commit is contained in:
2023-04-03 17:47:42 +02:00
commit a2bdf977d9
42 changed files with 2055 additions and 0 deletions

11
System/focusMode.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
state=$(cat ~/Scripts/.focusState)
if test $state -eq 0; then
polybar-msg cmd hide
i3-msg gaps inner all set 0
echo 1 > ~/Scripts/.focusState
else
polybar-msg cmd show
i3-msg gaps inner all set 30
echo 0 > ~/Scripts/.focusState
fi