No description
  • CSS 87.8%
  • Lua 10.3%
  • Perl 0.9%
  • GLSL 0.6%
  • Shell 0.3%
Find a file
2026-07-31 19:29:38 -04:00
alacritty/.config/alacritty Checkpoint once in a while 2026-07-24 20:35:35 -04:00
ashell/.config/ashell Update 2026-01-02 12:15:41 -05:00
autorandr/.config/autorandr Remake stow 2024-07-27 00:33:59 +07:00
bash Revamped update 2025-12-29 2025-12-29 12:23:12 -05:00
cava/.config/cava Update from LuminisArcana 2026-03-03 16:46:14 -05:00
cups-printer Update casually 2026-05-20 14:17:55 -04:00
CustomizeLinux Update 2026-03-24 22:53:51 -04:00
dunst/.config/dunst Slowly moving to niri 2025-05-23 21:52:47 -04:00
fail2ban Update 2026-03-24 22:53:51 -04:00
greetd/etc/greetd Update 2025-06-28 16:29:09 -04:00
grub Revamped update 2025-12-29 2025-12-29 12:23:12 -05:00
gtk-3.0/.config/gtk-3.0 Update some configs from LuminisArcana 2026-03-06 01:50:10 -05:00
gtk-4.0/.config/gtk-4.0 Revamped update 2025-12-29 2025-12-29 12:23:12 -05:00
htop/.config/htop Update from LuminisArcana 2026-03-03 16:46:14 -05:00
hypr/.config/hypr Random checkpoint 2026-07-31 18:28:26 -04:00
i3/.config/i3 Updateeeeee 2024-09-27 14:09:46 -04:00
i3blocks/.config/i3blocks Remake stow 2024-07-27 00:33:59 +07:00
mako/.config/mako Update niri and mako 2026-03-07 01:58:26 -05:00
neofetch/.config/neofetch Remake stow 2024-07-27 00:33:59 +07:00
niri/.config/niri Added skyline. Make niri and wofi neobrutialistic 2026-07-31 19:29:38 -04:00
nvim/.config/nvim Revamped update 2025-12-29 2025-12-29 12:23:12 -05:00
pacman/etc Update! 2024-08-05 09:38:10 +07:00
picom/.config/picom More updates I guess, not going to use etckeeper unless really needs it 2024-09-21 23:37:38 -04:00
pipewire/.config/wireplumber Update casually 2026-05-20 14:17:55 -04:00
rofi/.config/rofi Remake stow 2024-07-27 00:33:59 +07:00
skyline/.config/skyline Added skyline. Make niri and wofi neobrutialistic 2026-07-31 19:29:38 -04:00
sway/.config/sway Remake stow 2024-07-27 00:33:59 +07:00
swaylock/.config/swaylock Remake stow 2024-07-27 00:33:59 +07:00
themes/.themes/adw-gtk3-dark Another checkpoint: adding grub, zsh, waybar, hyprland. Plus niri 2025-05-22 00:03:15 -04:00
tmux/.config/tmux Remake stow 2024-07-27 00:33:59 +07:00
wallpaper/.wallpaper Update 2026-03-24 22:53:51 -04:00
waybar/.config/waybar cleanup waybar config 2026-03-07 02:30:37 -05:00
wofi/.config/wofi Added skyline. Make niri and wofi neobrutialistic 2026-07-31 19:29:38 -04:00
xinit Fix configs of hyprland and niri and waybar 2025-11-18 13:49:38 -05:00
Xorg/etc/X11 More updates I guess, not going to use etckeeper unless really needs it 2024-09-21 23:37:38 -04:00
zsh Checkpoint once in a while 2026-07-24 20:35:35 -04:00
.gitmodules Update 2026-03-24 22:53:51 -04:00
.nvimlog Update 2026-03-24 22:53:51 -04:00
.stow-local-ignore Removed linux-guide and obs-studio 2024-08-09 09:44:30 +07:00
allPackages_amd.txt all packages on amd set up machines + wallpaper config 2026-01-29 00:10:34 -05:00
allPackages_LuminisArcana.txt Update 2026-03-24 22:53:51 -04:00
allPackages_LunarEclipse.txt All packages on Lunar Eclipse 2026-01-29 00:13:47 -05:00
LICENSE Added LICENSE (CC0-1.0) 2024-01-14 13:44:47 -05:00
README.md Update casually 2026-05-20 14:17:55 -04:00
README_Packages.md Update 2026-03-24 22:53:51 -04:00

dotfiles

My configuration and styling for things I use on my Linux PC, embracing the power of GNU Stow and symlinks.

Quick start

git clone --recurse-submodules git@github.com:notkaramel/dotfiles ~/dotfiles
cd ~/dotfiles
stow <app>

If you already cloned without submodules:

git submodule update --init --recursive

GNU Stow

GNU Stow symlinks a package directory's contents into a target directory. By default the target is the parent of the current directory, so running from ~/dotfiles symlinks into ~/.

User-local installation (default)

Installs configs into ~/ — no root required.

# From ~/dotfiles:
stow zsh        # → ~/.zshrc, etc.
stow alacritty  # → ~/.config/alacritty/
stow nvim       # → ~/.config/nvim/
stow waybar     # → ~/.config/waybar/

This is equivalent to:

stow <app> --target ~/

To remove (unstow):

stow -D <app>

System-wide installation (requires sudo)

Some programs install assets into system directories under /usr/share/. Use --target to override the destination.

# Themes → /usr/share/themes/
sudo stow <theme> --dir ~/dotfiles --target /usr/share/themes

# Icons/cursors → /usr/share/icons/
sudo stow <icon-theme> --dir ~/dotfiles --target /usr/share/icons

# Fonts → /usr/share/fonts/
sudo stow <font> --dir ~/dotfiles --target /usr/share/fonts

To remove a system-wide stow:

sudo stow -D <app> --dir ~/dotfiles --target /usr/share/themes

Docker in user space (rootless)

[INFO] Installed docker.service successfully. [INFO] To control docker.service, run: systemctl --user (start|stop|restart) docker.service [INFO] To run docker.service on system startup, run: sudo loginctl enable-linger antoine

[INFO] Creating CLI context "rootless" Successfully created context "rootless" [INFO] Using CLI context "rootless" Current context is now "rootless"

[INFO] Make sure the following environment variable(s) are set (or add them to ~/.bashrc): export PATH=/home/antoine/bin:$PATH

[INFO] Some applications may require the following environment variable too: export DOCKER_HOST=unix:///run/user/1000/docker.sock


CustomizeLinux

Third-party programs and themes managed as git submodules under CustomizeLinux/. After cloning with --recurse-submodules they are ready to use.

Directory Description Install target
adw-gtk3 GTK3 libadwaita theme /usr/share/themes (system) or ~/.themes (user)
minegrub Minecraft-style GRUB theme /boot/grub/themes (requires sudo)
posy-cursors Clean cursor theme /usr/share/icons (system) or ~/.local/share/icons (user)
SpotX-Bash Spotify ad-blocker patch script Run as user
Tela-icon-theme Flat icon theme /usr/share/icons (system) or ~/.local/share/icons (user)
yay AUR helper PKGBUILD Build with makepkg -si

adw-gtk3

cd CustomizeLinux/adw-gtk3

# User install (~/.themes)
./install_theme.sh

# System install (/usr/share/themes)
sudo ./install_theme.sh

minegrub (GRUB theme — requires sudo)

cd CustomizeLinux/minegrub
# Follow README instructions, then:
sudo cp -r minegrub-theme /boot/grub/themes/
# Update /etc/default/grub: GRUB_THEME="/boot/grub/themes/minegrub-theme/theme.txt"
sudo grub-mkconfig -o /boot/grub/grub.cfg

posy-cursors

cd CustomizeLinux/posy-cursors

# User install
mkdir -p ~/.local/share/icons
cp -r posy-cursor* ~/.local/share/icons/

# System install
sudo cp -r posy-cursor* /usr/share/icons/

SpotX-Bash

cd CustomizeLinux/SpotX-Bash
bash spotx.sh

Tela-icon-theme

cd CustomizeLinux/Tela-icon-theme

# User install (~/.local/share/icons)
./install.sh

# System install (/usr/share/icons, requires sudo)
sudo ./install.sh

yay (AUR helper)

cd CustomizeLinux/yay
makepkg -si

Actively using programs

  • Shell: zsh with oh-my-zsh
  • Terminal: alacritty
  • WM: niri (Wayland, scrollable tiling)
    • Wallpaper: hyprpaper
    • Notification: mako
    • Lock: swaylock
    • Bar: waybar
    • Menu: wofi / wofi-emoji
  • Audio: wireplumber
  • Tools: tmux, neovim

Useful commands

Getting all locally installed packages:

pacman -Qs | grep "local/" | awk '{print $1}' | awk -F '/' '{print $2}' > allPackages.txt

Reinstalling all packages:

cat allPackages.txt | yay -S - --needed

Printing (CUPS)

Printer setup and driver documentation is available in:

  • cups-printer/README.md

Notes

  • Network interface is set to wlan0
  • Static IP 192.168.0.99/24 assigned to wlan0 via NetworkManager
    • Gateway: 192.168.0.1
    • To inspect: nmcli connection show
    • To reconfigure: nmcli connection modify <connection> ipv4.addresses 192.168.0.99/24 ipv4.gateway 192.168.0.1 ipv4.method manual && nmcli connection up <connection>
  • WPS Writer needs libtiff5 package for PDF export

License (CC0 1.0 Universal)

See LICENSE for the full text.

notkaramel/dotfiles by Antoine Phan (@notkaramel) is marked with CC0 1.0 Universal. To view a copy of this license, visit http://creativecommons.org/publicdomain/zero/1.0

Credit: Dreams of Autonomy and DevInsideYou for the GNU Stow workflow.