Complete overview of the setup

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.

Selected File

obsidian-scratchpad.sh

.config/waybar/scripts/obsidian-scratchpad.sh

#!/bin/bash
visible=$(hyprctl monitors -j | jq '[.[] | select(.specialWorkspace.name == "special:notes")] | length')
exists=$(hyprctl workspaces -j | jq '[.[] | select(.name == "special:notes")] | length')

if [ "$visible" -gt 0 ]; then
    printf '{"text": "\uf15c", "class": "visible", "tooltip": "Notes Scratchpad (offen)"}\n'
elif [ "$exists" -gt 0 ]; then
    printf '{"text": "\uf15c", "class": "hidden", "tooltip": "Notes Scratchpad (versteckt)"}\n'
else
    printf '{"text": "\uf15c", "class": "empty", "tooltip": "Notes Scratchpad (nicht gestartet)"}\n'
fi