
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.
fco.fish
.config/fish/functions/fco.fish
function fco
set -l branch (
git branch --all --color=always |
string match --invert --regex 'HEAD' |
fzf --ansi |
string replace --regex '^[*[:space:]]+' '' |
string replace --regex '^remotes/[^/]+/' ''
)
test -n "$branch"; or return
git checkout $branch
end