first test

This commit is contained in:
cnst
2024-09-21 23:22:22 +02:00
parent c647cea072
commit e212239e8c
36 changed files with 624 additions and 240 deletions

8
.scripts/bin/mako-toggle.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
# Toggle Mako mode between "do-not-disturb" and "default"
if makoctl mode | grep -q "default"; then
makoctl set-mode do-not-disturb
else
makoctl set-mode default
fi