Integrated Hyprlust dotfiles waybar configuration while preserving custom functionality: Features Added: - 24 switchable layout options (top, bottom, split, side bars) - 30+ theme styles (Catppuccin, Wallust, Aurora, etc.) - Centralized module definitions system - Drawer/group expandable UI sections - Advanced modules: sliders, mpris, swaync, visualizer - Wallust dynamic theming support Preserved Custom Features: - Hardware-specific temperature monitoring (custom/temps module) - Original minimal aesthetic and layout - Pywal color system integration (dual support with Wallust) - JetBrainsMono Nerd Font preference (18px) - Custom scripts: temps.sh, battery.sh, waybar-wttr.py New Files: - configs/[TOP] Custom Minimal - New default minimal layout - style/[Pywal] Minimal.css - Pywal-integrated style variant - modules - Centralized module definitions - configs/ - 24 layout options from Hyprlust - style/ - 30+ theme styles from Hyprlust - wallust/ - Wallust color generation support Configuration: - Fixed broken Pywal symlink (case-sensitive path) - Created config symlink → configs/[TOP] Custom Minimal - Created style.css symlink → style/[Pywal] Minimal.css - Archived originals: [TOP] Original Minimal.jsonc, [Original] Minimal.css Usage: - Switch layouts: ln -sf "configs/[layout-name]" config - Switch themes: ln -sf "style/[theme-name].css" style.css - Supports both Pywal and Wallust color systems
86 lines
1.4 KiB
Plaintext
86 lines
1.4 KiB
Plaintext
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
|
// Sleek
|
|
|
|
{
|
|
"include": "~/.config/waybar/modules",
|
|
"layer": "top",
|
|
"position": "top",
|
|
"height": 14,
|
|
"margin-left": 10,
|
|
"margin-right": 10,
|
|
"margin-top": 2,
|
|
|
|
"modules-left": [
|
|
"custom/menu",
|
|
"custom/separator#dot-line",
|
|
"hyprland/workspaces#kanji",
|
|
"custom/separator#blank_1",
|
|
"custom/weather",
|
|
|
|
],
|
|
|
|
"modules-center": [
|
|
"hyprland/window"
|
|
],
|
|
|
|
"modules-right": [
|
|
"custom/padd",
|
|
"cpu",
|
|
"custom/separator#blank",
|
|
"temperature",
|
|
"custom/separator#blank",
|
|
"battery",
|
|
"custom/separator#blank",
|
|
"pulseaudio",
|
|
|
|
"custom/separator#blank_2",
|
|
"custom/swaync",
|
|
"tray",
|
|
"custom/separator#blank",
|
|
"mpris",
|
|
|
|
|
|
"custom/separator#blank_2",
|
|
"clock",
|
|
"custom/separator#dot-line",
|
|
"custom/power",
|
|
],
|
|
"modules-right": [
|
|
|
|
"cpu",
|
|
"custom/separator#blank",
|
|
"temperature",
|
|
"custom/separator#blank",
|
|
"battery",
|
|
"custom/separator#blank",
|
|
"pulseaudio",
|
|
|
|
"custom/separator#blank_2",
|
|
"custom/swaync",
|
|
"tray",
|
|
"custom/separator#blank",
|
|
"mpris",
|
|
|
|
|
|
"custom/separator#blank_2",
|
|
"clock",
|
|
"custom/separator#dot-line",
|
|
"custom/power",
|
|
],
|
|
|
|
|
|
// Additional format / customize modules
|
|
|
|
"custom/power": {
|
|
"format": " ",
|
|
"icon-size": 20,
|
|
"tooltip": false,
|
|
},
|
|
|
|
"clock": {
|
|
"format": "{:%I:%M %p - %d/%b}", //for AM/PM
|
|
//"format": "{:%H:%M - %d/%b}", // 24H
|
|
"tooltip": true
|
|
},
|
|
}
|