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

autostart.lua

.config/hypr/lua/autostart.lua

local M = {}

function M.setup(programs)
    hl.on("hyprland.start", function()
        hl.exec_cmd("pactl set-default-source alsa_input.usb-Kingston_HyperX_7.1_Audio_00000000-00.analog-stereo")
        hl.exec_cmd("waybar")
        hl.exec_cmd(os.getenv("HOME") .. "/.config/waybar/scripts/scratchpad-listener.sh")
        hl.exec_cmd("dunst")
        hl.exec_cmd("hyprpaper")
        hl.exec_cmd([[sleep 2 && hyprctl hyprpaper wallpaper "DP-3,/home/magnus/.config/wallpapers/Tank-Girl-Wallpaper-Black.png"]])
        hl.exec_cmd(programs.terminal, { workspace = "special:term silent" })
        hl.exec_cmd("eww open-many tux-angel tux-devil")
    end)
end

return M