
Setup Overview
This section documents the tools, configs, and workflows behind my daily setup. It combines real dotfiles, short tutorials, and practical context so the system is not just shown, but also explained.
The topics below cover the desktop, terminal, shell, notifications, widgets, Git, and supporting tools. Documentation files can be read as rendered guides, while config files stay available as raw source.
cmus-scratchpad.sh
.config/waybar/scripts/cmus-scratchpad.sh
#!/bin/bash
visible=$(hyprctl monitors -j | jq '[.[] | select(.specialWorkspace.name == "special:cmus")] | length')
exists=$(hyprctl workspaces -j | jq '[.[] | select(.name == "special:cmus")] | length')
if [ "$visible" -gt 0 ]; then
printf '{"text": "\uf9c1", "class": "visible", "tooltip": "cmus (offen)"}\n'
elif [ "$exists" -gt 0 ]; then
printf '{"text": "\uf9c1", "class": "hidden", "tooltip": "cmus (versteckt)"}\n'
else
printf '{"text": "\uf9c1", "class": "empty", "tooltip": "cmus (nicht gestartet)"}\n'
fi