├── README.md ├── bin ├── Conky.sh ├── date.sh ├── get-lan.sh ├── kill_wallpaper_loop.sh ├── lswt ├── random-wallpaper.sh ├── thunar.sh ├── updates-notifier.sh ├── volume-pop.sh └── wallpapers_loop.sh ├── config ├── catnip │ ├── Archlogo1.png │ ├── Vampire-Anime-Girl.png │ ├── config.toml │ ├── config_fox.toml │ ├── cute1toobig.png │ ├── distros.toml │ └── fox_girl3.png ├── eww │ ├── eww.py │ ├── eww.scss │ ├── eww.yuck │ └── eww_nord.scss ├── foot │ ├── foot.ini │ └── tokyonight-storm ├── hypr │ ├── cleanup_after_start.sh │ ├── hyprland.conf │ ├── hyprpaper.conf │ └── portal.sh ├── ironbar │ ├── config.corn │ ├── scripts │ │ ├── cava │ │ ├── cava2 │ │ ├── pacman │ │ ├── ram_info │ │ ├── vol │ │ ├── volume │ │ ├── weather │ │ ├── wlogout │ │ ├── workspace │ │ └── yay.sh │ ├── states │ │ ├── clock │ │ │ └── state.sh │ │ ├── internet │ │ │ └── state.sh │ │ ├── soundbar │ │ │ ├── expand_soundbar │ │ │ └── soundbar_state │ │ └── title │ │ │ └── state.sh │ └── style.css ├── lite-xl │ ├── colors │ │ ├── catppuccin-mocha.lua │ │ ├── dracula.lua │ │ ├── duorand.lua │ │ ├── duotone.lua │ │ ├── everforest.lua │ │ ├── flexoki_dark.lua │ │ ├── focus.lua │ │ ├── jb-fleet.lua │ │ ├── liqube.lua │ │ ├── monokai-sublime.lua │ │ ├── nord.lua │ │ ├── onedark.lua │ │ ├── plasma.lua │ │ ├── predawn.lua │ │ ├── rose-pine.lua │ │ ├── synthwave.lua │ │ ├── tokyo-night.lua │ │ ├── vscode-dark.lua │ │ ├── winter.lua │ │ └── zenburn.lua │ ├── font_cache.lua │ ├── init.lua │ ├── ipc │ │ └── 176303.lua │ ├── plugins │ │ ├── bracketmatch.lua │ │ ├── colorpreview.lua │ │ ├── ipc.lua │ │ ├── language_conf.lua │ │ ├── language_corn.lua │ │ ├── language_ini.lua │ │ ├── language_log.lua │ │ ├── language_toml.lua │ │ ├── language_yaml.lua │ │ ├── linewrapping.lua │ │ ├── minimap.lua │ │ ├── restoretabs.lua │ │ └── settings.lua │ ├── session.lua │ └── user_settings.lua ├── mpd │ ├── mpd.conf │ ├── mpd.db │ ├── mpd.log │ └── mpdstate ├── mpv │ └── mpv.conf ├── ncmpcpp │ ├── config │ ├── error.log │ └── patterns.list ├── scripts │ ├── Weather.sh │ ├── cpu │ ├── disk │ ├── display.sh │ ├── eww-start3.sh │ ├── ironbar │ ├── logout.sh │ ├── mediacontrol │ ├── memory │ ├── swww-start.sh │ ├── tempe │ ├── tempe2 │ ├── updates.sh │ ├── uptime.sh │ ├── volume │ └── wezterm.sh ├── starship.toml ├── ulauncher │ ├── extensions.json │ ├── settings.json │ ├── shortcuts.json │ └── user-themes │ │ ├── Catpuccin-Macchiato-Blue │ │ ├── manifest.json │ │ ├── theme-gtk-3.20.css │ │ └── theme.css │ │ ├── Catpuccin-Macchiato-Lavender │ │ ├── generated.css │ │ ├── manifest.json │ │ ├── theme-gtk-3.20.css │ │ └── theme.css │ │ ├── WhiteSur-Nord-ulauncher │ │ ├── LICENSE │ │ ├── README.md │ │ ├── generated.css │ │ ├── manifest.json │ │ ├── theme-gtk-3.20.css │ │ └── theme.css │ │ └── ulauncher-nord │ │ ├── README.md │ │ ├── generated.css │ │ ├── manifest.json │ │ ├── screenshot.png │ │ ├── theme-gtk-3.20.css │ │ └── theme.css ├── waybar │ ├── config_hypr.ini │ ├── modules.json │ └── style_hypr_tokyo.css ├── wlogout │ ├── backup │ │ ├── layout │ │ └── style.css │ ├── icons │ │ ├── hibernate_black.png │ │ ├── hibernate_white.png │ │ ├── lock_black.png │ │ ├── lock_white.png │ │ ├── logout_black.png │ │ ├── logout_white.png │ │ ├── reboot_black.png │ │ ├── reboot_white.png │ │ ├── shutdown_black.png │ │ ├── shutdown_white.png │ │ ├── suspend_black.png │ │ └── suspend_white.png │ ├── layout │ ├── lock-hover.png │ ├── lock.png │ ├── logout-hover.png │ ├── logout.png │ ├── power-hover.png │ ├── power.png │ ├── restart-hover.png │ ├── restart.png │ ├── sleep-hover.png │ ├── sleep.png │ └── style.css ├── xava │ ├── config │ ├── config.ini │ ├── config_hypr │ └── gl │ │ └── module │ │ └── bars │ │ ├── fragment.glsl │ │ └── vertex.glsl └── zellij │ ├── config.kdl │ ├── layout.kdl │ ├── layoutnow1.kdl │ └── themes │ └── tokyo-night.kdl ├── conky └── grumimosa │ ├── Mimosa.conf │ ├── Mimosa_gnome.conf │ ├── Mimosa_nord.conf │ ├── res │ ├── Circle.png │ ├── bg.png │ └── logo.png │ ├── scripts │ ├── lua │ │ ├── mini_clock.lua │ │ ├── rings-v1.2.1.lua │ │ ├── rings-v1.2.1.lua.00 │ │ ├── rings-v1.2.1_Nord.lua │ │ └── rings-v1.2.1_nord.lua │ ├── ssid │ ├── weather-text-icon │ ├── weather-text-icon.old │ └── weather.sh │ ├── source.txt │ └── start.sh └── starship.toml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/README.md -------------------------------------------------------------------------------- /bin/Conky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/Conky.sh -------------------------------------------------------------------------------- /bin/date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/date.sh -------------------------------------------------------------------------------- /bin/get-lan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/get-lan.sh -------------------------------------------------------------------------------- /bin/kill_wallpaper_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/kill_wallpaper_loop.sh -------------------------------------------------------------------------------- /bin/lswt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/lswt -------------------------------------------------------------------------------- /bin/random-wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/random-wallpaper.sh -------------------------------------------------------------------------------- /bin/thunar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/thunar.sh -------------------------------------------------------------------------------- /bin/updates-notifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/updates-notifier.sh -------------------------------------------------------------------------------- /bin/volume-pop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/volume-pop.sh -------------------------------------------------------------------------------- /bin/wallpapers_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/bin/wallpapers_loop.sh -------------------------------------------------------------------------------- /config/catnip/Archlogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/catnip/Archlogo1.png -------------------------------------------------------------------------------- /config/catnip/Vampire-Anime-Girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/catnip/Vampire-Anime-Girl.png -------------------------------------------------------------------------------- /config/catnip/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/catnip/config.toml -------------------------------------------------------------------------------- /config/catnip/config_fox.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/catnip/config_fox.toml -------------------------------------------------------------------------------- /config/catnip/cute1toobig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/catnip/cute1toobig.png -------------------------------------------------------------------------------- /config/catnip/distros.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/catnip/distros.toml -------------------------------------------------------------------------------- /config/catnip/fox_girl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/catnip/fox_girl3.png -------------------------------------------------------------------------------- /config/eww/eww.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/eww/eww.py -------------------------------------------------------------------------------- /config/eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/eww/eww.scss -------------------------------------------------------------------------------- /config/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/eww/eww.yuck -------------------------------------------------------------------------------- /config/eww/eww_nord.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/eww/eww_nord.scss -------------------------------------------------------------------------------- /config/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/foot/foot.ini -------------------------------------------------------------------------------- /config/foot/tokyonight-storm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/foot/tokyonight-storm -------------------------------------------------------------------------------- /config/hypr/cleanup_after_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/hypr/cleanup_after_start.sh -------------------------------------------------------------------------------- /config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/hypr/hyprland.conf -------------------------------------------------------------------------------- /config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /config/hypr/portal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/hypr/portal.sh -------------------------------------------------------------------------------- /config/ironbar/config.corn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/config.corn -------------------------------------------------------------------------------- /config/ironbar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/cava -------------------------------------------------------------------------------- /config/ironbar/scripts/cava2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/cava2 -------------------------------------------------------------------------------- /config/ironbar/scripts/pacman: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | checkupdates | wc -l 4 | -------------------------------------------------------------------------------- /config/ironbar/scripts/ram_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/ram_info -------------------------------------------------------------------------------- /config/ironbar/scripts/vol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/vol -------------------------------------------------------------------------------- /config/ironbar/scripts/volume: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print $2*100}' 4 | -------------------------------------------------------------------------------- /config/ironbar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/weather -------------------------------------------------------------------------------- /config/ironbar/scripts/wlogout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/wlogout -------------------------------------------------------------------------------- /config/ironbar/scripts/workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/workspace -------------------------------------------------------------------------------- /config/ironbar/scripts/yay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/scripts/yay.sh -------------------------------------------------------------------------------- /config/ironbar/states/clock/state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/states/clock/state.sh -------------------------------------------------------------------------------- /config/ironbar/states/internet/state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/states/internet/state.sh -------------------------------------------------------------------------------- /config/ironbar/states/soundbar/expand_soundbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/states/soundbar/expand_soundbar -------------------------------------------------------------------------------- /config/ironbar/states/soundbar/soundbar_state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/states/soundbar/soundbar_state -------------------------------------------------------------------------------- /config/ironbar/states/title/state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/states/title/state.sh -------------------------------------------------------------------------------- /config/ironbar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ironbar/style.css -------------------------------------------------------------------------------- /config/lite-xl/colors/catppuccin-mocha.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/catppuccin-mocha.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/dracula.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/dracula.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/duorand.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/duorand.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/duotone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/duotone.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/everforest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/everforest.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/flexoki_dark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/flexoki_dark.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/focus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/focus.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/jb-fleet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/jb-fleet.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/liqube.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/liqube.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/monokai-sublime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/monokai-sublime.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/nord.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/nord.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/onedark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/onedark.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/plasma.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/plasma.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/predawn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/predawn.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/rose-pine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/rose-pine.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/synthwave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/synthwave.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/tokyo-night.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/tokyo-night.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/vscode-dark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/vscode-dark.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/winter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/winter.lua -------------------------------------------------------------------------------- /config/lite-xl/colors/zenburn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/colors/zenburn.lua -------------------------------------------------------------------------------- /config/lite-xl/font_cache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/font_cache.lua -------------------------------------------------------------------------------- /config/lite-xl/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/init.lua -------------------------------------------------------------------------------- /config/lite-xl/ipc/176303.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/ipc/176303.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/bracketmatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/bracketmatch.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/colorpreview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/colorpreview.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/ipc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/ipc.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/language_conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/language_conf.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/language_corn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/language_corn.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/language_ini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/language_ini.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/language_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/language_log.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/language_toml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/language_toml.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/language_yaml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/language_yaml.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/linewrapping.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/linewrapping.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/minimap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/minimap.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/restoretabs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/restoretabs.lua -------------------------------------------------------------------------------- /config/lite-xl/plugins/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/plugins/settings.lua -------------------------------------------------------------------------------- /config/lite-xl/session.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/session.lua -------------------------------------------------------------------------------- /config/lite-xl/user_settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/lite-xl/user_settings.lua -------------------------------------------------------------------------------- /config/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/mpd/mpd.conf -------------------------------------------------------------------------------- /config/mpd/mpd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/mpd/mpd.db -------------------------------------------------------------------------------- /config/mpd/mpd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/mpd/mpd.log -------------------------------------------------------------------------------- /config/mpd/mpdstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/mpd/mpdstate -------------------------------------------------------------------------------- /config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/mpv/mpv.conf -------------------------------------------------------------------------------- /config/ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ncmpcpp/config -------------------------------------------------------------------------------- /config/ncmpcpp/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/ncmpcpp/patterns.list: -------------------------------------------------------------------------------- 1 | %n - %t 2 | -------------------------------------------------------------------------------- /config/scripts/Weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/Weather.sh -------------------------------------------------------------------------------- /config/scripts/cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/cpu -------------------------------------------------------------------------------- /config/scripts/disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/disk -------------------------------------------------------------------------------- /config/scripts/display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/display.sh -------------------------------------------------------------------------------- /config/scripts/eww-start3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/eww-start3.sh -------------------------------------------------------------------------------- /config/scripts/ironbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/ironbar -------------------------------------------------------------------------------- /config/scripts/logout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/logout.sh -------------------------------------------------------------------------------- /config/scripts/mediacontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/mediacontrol -------------------------------------------------------------------------------- /config/scripts/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/memory -------------------------------------------------------------------------------- /config/scripts/swww-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/swww-start.sh -------------------------------------------------------------------------------- /config/scripts/tempe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/tempe -------------------------------------------------------------------------------- /config/scripts/tempe2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/tempe2 -------------------------------------------------------------------------------- /config/scripts/updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/updates.sh -------------------------------------------------------------------------------- /config/scripts/uptime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/uptime.sh -------------------------------------------------------------------------------- /config/scripts/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/volume -------------------------------------------------------------------------------- /config/scripts/wezterm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/scripts/wezterm.sh -------------------------------------------------------------------------------- /config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/starship.toml -------------------------------------------------------------------------------- /config/ulauncher/extensions.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /config/ulauncher/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/settings.json -------------------------------------------------------------------------------- /config/ulauncher/shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/shortcuts.json -------------------------------------------------------------------------------- /config/ulauncher/user-themes/Catpuccin-Macchiato-Blue/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/Catpuccin-Macchiato-Blue/manifest.json -------------------------------------------------------------------------------- /config/ulauncher/user-themes/Catpuccin-Macchiato-Blue/theme-gtk-3.20.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/Catpuccin-Macchiato-Blue/theme-gtk-3.20.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/Catpuccin-Macchiato-Blue/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/Catpuccin-Macchiato-Blue/theme.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/generated.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/generated.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/manifest.json -------------------------------------------------------------------------------- /config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/theme-gtk-3.20.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/theme-gtk-3.20.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/Catpuccin-Macchiato-Lavender/theme.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/LICENSE -------------------------------------------------------------------------------- /config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/README.md -------------------------------------------------------------------------------- /config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/generated.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/generated.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/manifest.json -------------------------------------------------------------------------------- /config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/theme-gtk-3.20.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/theme-gtk-3.20.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/WhiteSur-Nord-ulauncher/theme.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/ulauncher-nord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/ulauncher-nord/README.md -------------------------------------------------------------------------------- /config/ulauncher/user-themes/ulauncher-nord/generated.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/ulauncher-nord/generated.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/ulauncher-nord/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/ulauncher-nord/manifest.json -------------------------------------------------------------------------------- /config/ulauncher/user-themes/ulauncher-nord/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/ulauncher-nord/screenshot.png -------------------------------------------------------------------------------- /config/ulauncher/user-themes/ulauncher-nord/theme-gtk-3.20.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/ulauncher-nord/theme-gtk-3.20.css -------------------------------------------------------------------------------- /config/ulauncher/user-themes/ulauncher-nord/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/ulauncher/user-themes/ulauncher-nord/theme.css -------------------------------------------------------------------------------- /config/waybar/config_hypr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/waybar/config_hypr.ini -------------------------------------------------------------------------------- /config/waybar/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/waybar/modules.json -------------------------------------------------------------------------------- /config/waybar/style_hypr_tokyo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/waybar/style_hypr_tokyo.css -------------------------------------------------------------------------------- /config/wlogout/backup/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/backup/layout -------------------------------------------------------------------------------- /config/wlogout/backup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/backup/style.css -------------------------------------------------------------------------------- /config/wlogout/icons/hibernate_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/hibernate_black.png -------------------------------------------------------------------------------- /config/wlogout/icons/hibernate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/hibernate_white.png -------------------------------------------------------------------------------- /config/wlogout/icons/lock_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/lock_black.png -------------------------------------------------------------------------------- /config/wlogout/icons/lock_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/lock_white.png -------------------------------------------------------------------------------- /config/wlogout/icons/logout_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/logout_black.png -------------------------------------------------------------------------------- /config/wlogout/icons/logout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/logout_white.png -------------------------------------------------------------------------------- /config/wlogout/icons/reboot_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/reboot_black.png -------------------------------------------------------------------------------- /config/wlogout/icons/reboot_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/reboot_white.png -------------------------------------------------------------------------------- /config/wlogout/icons/shutdown_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/shutdown_black.png -------------------------------------------------------------------------------- /config/wlogout/icons/shutdown_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/shutdown_white.png -------------------------------------------------------------------------------- /config/wlogout/icons/suspend_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/suspend_black.png -------------------------------------------------------------------------------- /config/wlogout/icons/suspend_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/icons/suspend_white.png -------------------------------------------------------------------------------- /config/wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/layout -------------------------------------------------------------------------------- /config/wlogout/lock-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/lock-hover.png -------------------------------------------------------------------------------- /config/wlogout/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/lock.png -------------------------------------------------------------------------------- /config/wlogout/logout-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/logout-hover.png -------------------------------------------------------------------------------- /config/wlogout/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/logout.png -------------------------------------------------------------------------------- /config/wlogout/power-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/power-hover.png -------------------------------------------------------------------------------- /config/wlogout/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/power.png -------------------------------------------------------------------------------- /config/wlogout/restart-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/restart-hover.png -------------------------------------------------------------------------------- /config/wlogout/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/restart.png -------------------------------------------------------------------------------- /config/wlogout/sleep-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/sleep-hover.png -------------------------------------------------------------------------------- /config/wlogout/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/sleep.png -------------------------------------------------------------------------------- /config/wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/wlogout/style.css -------------------------------------------------------------------------------- /config/xava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/xava/config -------------------------------------------------------------------------------- /config/xava/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/xava/config.ini -------------------------------------------------------------------------------- /config/xava/config_hypr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/xava/config_hypr -------------------------------------------------------------------------------- /config/xava/gl/module/bars/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/xava/gl/module/bars/fragment.glsl -------------------------------------------------------------------------------- /config/xava/gl/module/bars/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/xava/gl/module/bars/vertex.glsl -------------------------------------------------------------------------------- /config/zellij/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/zellij/config.kdl -------------------------------------------------------------------------------- /config/zellij/layout.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/zellij/layout.kdl -------------------------------------------------------------------------------- /config/zellij/layoutnow1.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/zellij/layoutnow1.kdl -------------------------------------------------------------------------------- /config/zellij/themes/tokyo-night.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/config/zellij/themes/tokyo-night.kdl -------------------------------------------------------------------------------- /conky/grumimosa/Mimosa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/Mimosa.conf -------------------------------------------------------------------------------- /conky/grumimosa/Mimosa_gnome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/Mimosa_gnome.conf -------------------------------------------------------------------------------- /conky/grumimosa/Mimosa_nord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/Mimosa_nord.conf -------------------------------------------------------------------------------- /conky/grumimosa/res/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/res/Circle.png -------------------------------------------------------------------------------- /conky/grumimosa/res/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/res/bg.png -------------------------------------------------------------------------------- /conky/grumimosa/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/res/logo.png -------------------------------------------------------------------------------- /conky/grumimosa/scripts/lua/mini_clock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/lua/mini_clock.lua -------------------------------------------------------------------------------- /conky/grumimosa/scripts/lua/rings-v1.2.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/lua/rings-v1.2.1.lua -------------------------------------------------------------------------------- /conky/grumimosa/scripts/lua/rings-v1.2.1.lua.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/lua/rings-v1.2.1.lua.00 -------------------------------------------------------------------------------- /conky/grumimosa/scripts/lua/rings-v1.2.1_Nord.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/lua/rings-v1.2.1_Nord.lua -------------------------------------------------------------------------------- /conky/grumimosa/scripts/lua/rings-v1.2.1_nord.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/lua/rings-v1.2.1_nord.lua -------------------------------------------------------------------------------- /conky/grumimosa/scripts/ssid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/ssid -------------------------------------------------------------------------------- /conky/grumimosa/scripts/weather-text-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/weather-text-icon -------------------------------------------------------------------------------- /conky/grumimosa/scripts/weather-text-icon.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/weather-text-icon.old -------------------------------------------------------------------------------- /conky/grumimosa/scripts/weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/scripts/weather.sh -------------------------------------------------------------------------------- /conky/grumimosa/source.txt: -------------------------------------------------------------------------------- 1 | https://github.com/closebox73/Draco.git 2 | -------------------------------------------------------------------------------- /conky/grumimosa/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/conky/grumimosa/start.sh -------------------------------------------------------------------------------- /starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluebyt/hyprland-dots/HEAD/starship.toml --------------------------------------------------------------------------------