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

tux-toggle.sh

.config/eww/scripts/tux-toggle.sh

#!/bin/bash
if [ "$(eww get tux-visible)" = "true" ]; then
    eww update tux-visible=false
else
    eww update tux-opacity=1
    eww update tux-visible=true
fi