Quick Start
Tsumiki is a modular status bar for Hyprland built on the Fabric widget system.
Prerequisites
Section titled “Prerequisites”Before starting, ensure you have:
- Hyprland — a working Hyprland installation
- JetBrains Nerd Font —
sudo pacman -S ttf-jetbrains-mono-nerd - Python 3.12+ —
python --versionshould show 3.12 or higher
Quick Install
Section titled “Quick Install”git clone https://github.com/rubiin/tsumiki.git ~/.config/tsumikicd ~/.config/tsumiki./init.sh -setup./init.sh -startThe -setup flag installs all required system packages and Python dependencies. You may be prompted for your password during setup.
For alternative install methods (bootstrap script, manual setup), see the full installation guide.
Autostart
Section titled “Autostart”Add this line to ~/.config/hypr/hyprland.conf:
exec-once = sleep 5; ~/.config/tsumiki/init.sh -startMinimal Config
Section titled “Minimal Config”Here is a minimal config.toml to get started:
"$schema" = "./tsumiki.schema.json"
[general]debug = falseauto_restart = true
[layout]left_section = ["workspaces", "window_title"]middle_section = ["date_time"]right_section = ["volume", "battery", "system_tray"]
[modules.bar]layer = "top"location = "top"
[widgets.workspaces]count = 10hide_unoccupied = true
[widgets.volume]tooltip = true
[widgets.battery]tooltip = trueAfter saving, restart the bar:
pkill tsumiki./init.sh -startNext Steps
Section titled “Next Steps”Read guide →
Read docs →
View rules →
Get help →