Dotfiles for an i3-based Linux desktop environment, managed with GNU Stow.
- Multi configuration support for laptop and desktop environments
- Custom configurations for:
- i3 window manager with distinct laptop/desktop profiles
- i3blocks status bar
- Automatic Pywal color schemes
- Firefox theming
- Rofi and dmenu
Ensure you have the following packages installed:
# Arch btw
pacman -S i3-wm i3blocks vim kitty picom python-pywal16 firefox dmenu rofi stow
Paru:
paru -S python-pywalfox
Yay:
yay -S python-pywalfox
GNU Stow is a symlink farm manager that was originally designed to manage software installations (e.g., keeping different versions of software in /usr/local/stow/package-1.0/
and /usr/local/stow/package-2.0/
). However, it's particularly convenient for managing dotfiles because:
-
By default, Stow looks for target directories relative to the parent of your stow directory. When run from
~/.dotfiles
, it automatically targets your home directory (~
), which is exactly what we want for dotfiles! -
We can manage all of our config files in a single git repository.
-
The name of your folder in
.dotfiles
can be anything you want - it doesn't need to match the package name. What matters is the internal directory structure. For example:
~/.dotfiles/my-terminal/ # Folder name could be anything, not just "kitty"
└── .config/
└── kitty/ # This must match the actual config location
└── kitty.conf
When stowed, becomes:
~/
└── .config/
└── kitty/
└── kitty.conf -> ~/.dotfiles/my-terminal/.config/kitty/kitty.conf
- TLDR: The key is to mirror the exact path structure from your home directory inside each package directory, regardless of what you name the package folder itself. This makes it easy to organize your configs logically (e.g., grouping related configs together) while maintaining the correct symlinks in your home directory.
- Clone this repository:
git clone https://github.com/beluzzi/dotfiles.git
cd ~/.dotfiles
- Choose your installation profile:
# For base configuration
make i3
make all
# For laptop configuration
make laptop
# For desktop configuration
make desktop
Here's how to add a new configuration to the dotfiles:
- Create the package directory in
.dotfiles
:
mkdir ~/.dotfiles/new-package
- Mirror the home directory structure:
# If the config normally lives in ~/.config/new-package
mkdir -p ~/.dotfiles/new-package/.config/new-package
- Move your existing config:
# Move the existing config
mv ~/.config/new-package/config.conf ~/.dotfiles/new-package/.config/new-package/
# Or copy if you want to test first
cp ~/.config/new-package/config.conf ~/.dotfiles/new-package/.config/new-package/
- Stow the new package:
stow new-package
- Add to Makefile (optional):
# Add to DOTFILES_DIRS variable
DOTFILES_DIRS := doom keepass kitty rofi i3blocks xinit new-package
This setup uses Pywal16 to generate color schemes based on your wallpaper. The themes are automatically applied to:
Terminal
- via wal cachei3
- via Xresourcesdmenu
- via i3 configFirefox
- via pywalfox~/.dotfiles/scripts/theme.sh
- triggers pywalfox and walcord on i3 reload
make all
- Stow base configurationmake i3
- Stow main i3 configurationmake laptop
- Stow laptop-specific configurationmake desktop
- Stow desktop-specific configurationmake clean
- Remove all stowed symlinksmake help
- Display help message
- The i3 configurations share a common base configuration while allowing for device-specific customizations
- Wallpapers are seperate folders in .dotfiles but all link to ~/.config/.wallpapers
Feel free to fork this repository and customize it to your needs. Pull requests for improvements are welcome!
This project is FOSS.