Initial import: Lua config, trimmed omarchy scripts, theme system

This commit is contained in:
2026-06-11 19:06:22 +02:00
commit 835a9aa3b5
536 changed files with 12459 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# archypr:summary=Clean up the voxtype --follow child when Waybar reloads
trap 'kill 0' EXIT
if archypr-cmd-present voxtype; then
voxtype status --follow --extended --format json | while read -r line; do
echo "$line" | jq -c '. + {alt: .class}'
done
else
echo '{"alt": "", "tooltip": ""}'
fi