-
-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
bitzzdev edited this page Aug 7, 2026
·
3 revisions
bitzdots supports Arch Linux, Fedora, Debian/Ubuntu, and NixOS.
git clone https://github.com/bitzzdev/bitzdots.git ~/.config/bitzdots
cd ~/.config/bitzdots
chmod +x install.sh
# Link configs only (no system packages):
./install.sh
# Link configs + install all system packages:
./install.sh --with-depsThe installer auto-detects your distro and:
- Installs required packages (repo + AUR via paru/yay where needed)
- Installs JetBrainsMono Nerd Font
- Creates screenshot/recording directories and wallpaper directories
- Links all configs into
~/.config/ - Sets up the runcat-text module (venv + font)
- Installs the
wallust-cache-daemonsystemd user service - Generates an initial theme from your default wallpaper
Choose your distro:
Arch Linux
# Official repos
sudo pacman -S waybar swaync rofi kitty cava hyprpicker wl-clipboard \
playerctl pavucontrol polkit-kde-agent grim slurp cliphist hyprlock \
ffmpeg btop pulsemixer wf-recorder python brightnessctl \
bluez bluez-utils libnotify networkmanager wireplumber \
pipewire-pulse curl jq imagemagick nautilus wofi \
papirus-icon-theme power-profiles-daemon breeze inotify-tools \
fish fastfetch qt5ct qt6ct
# AUR (using paru or yay)
paru -S wlogout wallust bluetui awww impala ttf-jetbrains-mono-nerdFedora
sudo dnf install waybar swaync wlogout rofi kitty cava awww hyprpicker \
wl-clipboard playerctl pavucontrol polkit-kde-agent grim slurp \
cliphist hyprlock ffmpeg inotify-tools ImageMagick fastfetch fish \
power-profiles-daemon btop pulsemixer wf-recorder python3 impala \
brightnessctl bluez libnotify NetworkManager wireplumber \
pipewire-pulseaudio curl jq nautilus wofi papirus-icon-theme \
qt5ct qt6ct
cargo install wallust bluetuiDebian/Ubuntu
sudo apt install waybar swaync wlogout rofi kitty cava awww hyprpicker \
wl-clipboard playerctl pavucontrol polkit-kde-agent grim slurp \
cliphist hyprlock ffmpeg inotify-tools imagemagick fastfetch fish \
btop pulsemixer wf-recorder python3 brightnessctl bluez bluez-utils \
libnotify-bin network-manager wireplumber pipewire-pulse curl jq \
nautilus wofi papirus-icon-theme qt5ct qt6ct
cargo install wallust bluetuiNixOS
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
waybar swaync wlogout rofi kitty cava hyprpicker
wl-clipboard playerctl pavucontrol polkit-kde-agent
grim slurp cliphist hyprlock ffmpeg btop
inotify-tools imagemagick fastfetch fish
wallust python3
];
}Run ./install.sh (links everything). Or link manually:
DOTFILES_DIR="$HOME/.config/bitzdots"
CONFIG_DIR="$HOME/.config"
# Hyprland
mkdir -p "$CONFIG_DIR/hypr"
for f in "$DOTFILES_DIR/hypr"/*.lua; do
ln -sf "$f" "$CONFIG_DIR/hypr/$(basename "$f")"
done
# Waybar
mkdir -p "$CONFIG_DIR/waybar/scripts" "$CONFIG_DIR/waybar/colors"
ln -sf "$DOTFILES_DIR/waybar/config.jsonc" "$CONFIG_DIR/waybar/config.jsonc"
ln -sf "$DOTFILES_DIR/waybar/style.css" "$CONFIG_DIR/waybar/style.css"
for s in "$DOTFILES_DIR/waybar/scripts"/*.sh; do
ln -sf "$s" "$CONFIG_DIR/waybar/scripts/$(basename "$s")"
done
# Rofi (config, themes, colors, launchers, scripts, icons)
for d in themes colors launchers scripts icons; do
mkdir -p "$CONFIG_DIR/rofi/$d"
for f in "$DOTFILES_DIR/rofi/$d"/*; do
[ -e "$f" ] && ln -sf "$f" "$CONFIG_DIR/rofi/$d/$(basename "$f")"
done
done
ln -sf "$DOTFILES_DIR/rofi/config.rasi" "$CONFIG_DIR/rofi/config.rasi"
# Icons (linked into rofi/icons)
mkdir -p "$CONFIG_DIR/rofi/icons"
for f in "$DOTFILES_DIR/icons"/*.svg; do
ln -sf "$f" "$CONFIG_DIR/rofi/icons/$(basename "$f")"
done
# SwayNC, kitty, cava, wlogout
ln -sf "$DOTFILES_DIR/swaync/config.json" "$CONFIG_DIR/swaync/config.json"
ln -sf "$DOTFILES_DIR/swaync/style.css" "$CONFIG_DIR/swaync/style.css"
ln -sf "$DOTFILES_DIR/kitty/kitty.conf" "$CONFIG_DIR/kitty/kitty.conf"
ln -sf "$DOTFILES_DIR/cava/config" "$CONFIG_DIR/cava/config"
ln -sf "$DOTFILES_DIR/wlogout/style.css" "$CONFIG_DIR/wlogout/style.css"
ln -sf "$DOTFILES_DIR/wlogout/layout" "$CONFIG_DIR/wlogout/layout"
# Wallust (config + templates + scripts)
mkdir -p "$CONFIG_DIR/wallust/templates"
ln -sf "$DOTFILES_DIR/wallust/wallust.toml" "$CONFIG_DIR/wallust/wallust.toml"
for t in "$DOTFILES_DIR/wallust/templates"/*; do
ln -sf "$t" "$CONFIG_DIR/wallust/templates/"
done
for s in "$DOTFILES_DIR/scripts"/*.sh; do
ln -sf "$s" "$CONFIG_DIR/wallust/$(basename "$s")"
done
# GTK / Qt / fish / fastfetch
ln -sf "$DOTFILES_DIR/gtk/gtk-3.0/settings.ini" "$CONFIG_DIR/gtk-3.0/settings.ini"
ln -sf "$DOTFILES_DIR/gtk/gtk-4.0/settings.ini" "$CONFIG_DIR/gtk-4.0/settings.ini"
ln -sf "$DOTFILES_DIR/environment.d/qt.conf" "$CONFIG_DIR/environment.d/qt.conf"
ln -sf "$DOTFILES_DIR/fish/config.fish" "$CONFIG_DIR/fish/config.fish"
ln -sf "$DOTFILES_DIR/fastfetch/config.jsonc" "$CONFIG_DIR/fastfetch/config.jsonc"
ln -sf "$DOTFILES_DIR/fastfetch/bitz.txt" "$CONFIG_DIR/fastfetch/bitz.txt"mkdir -p "$CONFIG_DIR/systemd/user"
cp "$DOTFILES_DIR/systemd/user/wallust-cache-daemon.service" \
"$CONFIG_DIR/systemd/user/wallust-cache-daemon.service"
systemctl --user daemon-reload
systemctl --user enable --now wallust-cache-daemon.service# Arch (AUR)
paru -S ttf-jetbrains-mono-nerd
# Or download manually from https://www.nerdfonts.com/wallust run ~/Pictures/Wallpapers/your-wallpaper.jpg \
--config-dir ~/.config/wallust- Waybar is visible at the top of the screen
-
SUPER + Topens kitty -
SUPER + Spaceopens rofi launcher -
Printsaves a screenshot -
SUPER + SHIFT + Wopens the wallpaper picker - Changing the wallpaper updates all colors
- Notifications appear; control center opens with
SUPER + N -
systemctl --user status wallust-cache-daemon.serviceshows running - All apps default to dark theme (GTK, Qt, kitty, etc.)
See the FAQ for common issues.