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-show.sh

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

#!/bin/bash
# kill any running animation
[ -f /tmp/tux-anim.pid ] && kill "$(cat /tmp/tux-anim.pid)" 2>/dev/null
echo $$ > /tmp/tux-anim.pid

for x in 160 125 90 55 25; do
    eww update tux-x="-${x}px"
    sleep 0.02
done
eww update tux-x="0px"

rm -f /tmp/tux-anim.pid