├── INSTALL.txt ├── LICENSE ├── README.md ├── chrome-flags.conf ├── code-flags.conf ├── hypr └── hyprland.conf ├── kitty ├── kitty-theme.conf └── kitty.conf ├── nvim └── init.lua ├── settings.json └── waybar ├── Waybar-3.0 ├── border.css ├── config ├── config.json ├── configs │ └── custom_modules │ │ ├── modules │ │ └── privacy_container ├── kartorias1 Hyprland-dotfiles main waybar.zip ├── scripts │ ├── checkupdates │ ├── custom │ │ └── privacy-test.sh │ ├── pacman-update-icon.sh │ ├── rofi-wifi-menu.sh │ ├── title │ │ └── icon_check.sh │ └── window-name.sh ├── style-og.css ├── style-tokyo.css ├── style.css ├── style.css.map ├── style.css.tokyonight └── style.scss ├── scripts ├── mediaplayer.py ├── play-pause.sh ├── power-menu │ ├── powermenu.sh │ ├── shared │ │ ├── colors.rasi │ │ ├── colors │ │ │ ├── adapta.rasi │ │ │ ├── arc.rasi │ │ │ ├── black.rasi │ │ │ ├── catppuccin.rasi │ │ │ ├── cyberpunk.rasi │ │ │ ├── dracula.rasi │ │ │ ├── everforest.rasi │ │ │ ├── gruvbox.rasi │ │ │ ├── lovelace.rasi │ │ │ ├── navy.rasi │ │ │ ├── nord.rasi │ │ │ ├── onedark.rasi │ │ │ ├── paper.rasi │ │ │ ├── solarized.rasi │ │ │ ├── tokyonight.rasi │ │ │ └── yousai.rasi │ │ └── fonts.rasi │ ├── style-1.rasi │ ├── style-2.rasi │ ├── style-3.rasi │ ├── style-4.rasi │ └── style-5.rasi ├── rofi-bluetooth ├── rofi-wifi-menu.sh ├── sound │ ├── expand │ ├── expand_soundbar │ ├── flick0 hyprland-print 47238bbedc75bee69d03b960933e4b92868b2cb8 dark-waybar_sound.zip │ └── soundbar_state ├── spotify.sh ├── waybar-wttr.py └── weather.py ├── tokyoconfig └── tokyostyle.css /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/README.md -------------------------------------------------------------------------------- /chrome-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/chrome-flags.conf -------------------------------------------------------------------------------- /code-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/code-flags.conf -------------------------------------------------------------------------------- /hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/hypr/hyprland.conf -------------------------------------------------------------------------------- /kitty/kitty-theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/kitty/kitty-theme.conf -------------------------------------------------------------------------------- /kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/kitty/kitty.conf -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/settings.json -------------------------------------------------------------------------------- /waybar/Waybar-3.0/border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/border.css -------------------------------------------------------------------------------- /waybar/Waybar-3.0/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/config -------------------------------------------------------------------------------- /waybar/Waybar-3.0/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/config.json -------------------------------------------------------------------------------- /waybar/Waybar-3.0/configs/custom_modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/configs/custom_modules/modules -------------------------------------------------------------------------------- /waybar/Waybar-3.0/configs/custom_modules/privacy_container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/configs/custom_modules/privacy_container -------------------------------------------------------------------------------- /waybar/Waybar-3.0/kartorias1 Hyprland-dotfiles main waybar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/kartorias1 Hyprland-dotfiles main waybar.zip -------------------------------------------------------------------------------- /waybar/Waybar-3.0/scripts/checkupdates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/scripts/checkupdates -------------------------------------------------------------------------------- /waybar/Waybar-3.0/scripts/custom/privacy-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/scripts/custom/privacy-test.sh -------------------------------------------------------------------------------- /waybar/Waybar-3.0/scripts/pacman-update-icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/scripts/pacman-update-icon.sh -------------------------------------------------------------------------------- /waybar/Waybar-3.0/scripts/rofi-wifi-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/scripts/rofi-wifi-menu.sh -------------------------------------------------------------------------------- /waybar/Waybar-3.0/scripts/title/icon_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/scripts/title/icon_check.sh -------------------------------------------------------------------------------- /waybar/Waybar-3.0/scripts/window-name.sh: -------------------------------------------------------------------------------- 1 | #!/bin/env bash 2 | 3 | hyprctl activewindow | grep -oP 'class: \K[^\s]+' 4 | -------------------------------------------------------------------------------- /waybar/Waybar-3.0/style-og.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/style-og.css -------------------------------------------------------------------------------- /waybar/Waybar-3.0/style-tokyo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/style-tokyo.css -------------------------------------------------------------------------------- /waybar/Waybar-3.0/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/style.css -------------------------------------------------------------------------------- /waybar/Waybar-3.0/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/style.css.map -------------------------------------------------------------------------------- /waybar/Waybar-3.0/style.css.tokyonight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/style.css.tokyonight -------------------------------------------------------------------------------- /waybar/Waybar-3.0/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/Waybar-3.0/style.scss -------------------------------------------------------------------------------- /waybar/scripts/mediaplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/mediaplayer.py -------------------------------------------------------------------------------- /waybar/scripts/play-pause.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/play-pause.sh -------------------------------------------------------------------------------- /waybar/scripts/power-menu/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/powermenu.sh -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/adapta.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/adapta.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/arc.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/arc.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/black.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/black.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/catppuccin.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/cyberpunk.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/cyberpunk.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/dracula.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/dracula.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/everforest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/everforest.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/gruvbox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/gruvbox.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/lovelace.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/lovelace.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/navy.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/navy.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/nord.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/onedark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/onedark.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/paper.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/paper.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/solarized.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/solarized.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/tokyonight.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/tokyonight.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/colors/yousai.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/colors/yousai.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/shared/fonts.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/style-1.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/style-2.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/style-3.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/style-4.rasi -------------------------------------------------------------------------------- /waybar/scripts/power-menu/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/power-menu/style-5.rasi -------------------------------------------------------------------------------- /waybar/scripts/rofi-bluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/rofi-bluetooth -------------------------------------------------------------------------------- /waybar/scripts/rofi-wifi-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/rofi-wifi-menu.sh -------------------------------------------------------------------------------- /waybar/scripts/sound/expand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/sound/expand -------------------------------------------------------------------------------- /waybar/scripts/sound/expand_soundbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/sound/expand_soundbar -------------------------------------------------------------------------------- /waybar/scripts/sound/flick0 hyprland-print 47238bbedc75bee69d03b960933e4b92868b2cb8 dark-waybar_sound.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/sound/flick0 hyprland-print 47238bbedc75bee69d03b960933e4b92868b2cb8 dark-waybar_sound.zip -------------------------------------------------------------------------------- /waybar/scripts/sound/soundbar_state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/sound/soundbar_state -------------------------------------------------------------------------------- /waybar/scripts/spotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/spotify.sh -------------------------------------------------------------------------------- /waybar/scripts/waybar-wttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/waybar-wttr.py -------------------------------------------------------------------------------- /waybar/scripts/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/scripts/weather.py -------------------------------------------------------------------------------- /waybar/tokyoconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/tokyoconfig -------------------------------------------------------------------------------- /waybar/tokyostyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeaoYe/config/HEAD/waybar/tokyostyle.css --------------------------------------------------------------------------------