├── README.md ├── eww ├── bar.scss ├── bar.yuck ├── controlpanel.yuck ├── eww.scss ├── eww.yuck └── scripts │ ├── battery.sh │ ├── change-active-workspace.sh │ ├── charging_anim.txt │ ├── get-active-workspace.sh │ └── get-workspaces.sh ├── hypr ├── hyprland.conf └── hyprpaper.conf ├── nvim ├── init.lua └── lua │ └── plugins.lua ├── rice.png ├── rofi ├── config.rasi └── themes │ └── forest.rasi ├── wall.jpg └── zsh └── my_theme.zsh-theme /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/README.md -------------------------------------------------------------------------------- /eww/bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/bar.scss -------------------------------------------------------------------------------- /eww/bar.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/bar.yuck -------------------------------------------------------------------------------- /eww/controlpanel.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/controlpanel.yuck -------------------------------------------------------------------------------- /eww/eww.scss: -------------------------------------------------------------------------------- 1 | @import "./bar.scss"; 2 | 3 | * { 4 | font-family: "Ubuntu Nerd Font"; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/eww.yuck -------------------------------------------------------------------------------- /eww/scripts/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/scripts/battery.sh -------------------------------------------------------------------------------- /eww/scripts/change-active-workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/scripts/change-active-workspace.sh -------------------------------------------------------------------------------- /eww/scripts/charging_anim.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /eww/scripts/get-active-workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/scripts/get-active-workspace.sh -------------------------------------------------------------------------------- /eww/scripts/get-workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/eww/scripts/get-workspaces.sh -------------------------------------------------------------------------------- /hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/hypr/hyprland.conf -------------------------------------------------------------------------------- /hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lua/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/nvim/lua/plugins.lua -------------------------------------------------------------------------------- /rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/rice.png -------------------------------------------------------------------------------- /rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/rofi/config.rasi -------------------------------------------------------------------------------- /rofi/themes/forest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/rofi/themes/forest.rasi -------------------------------------------------------------------------------- /wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/wall.jpg -------------------------------------------------------------------------------- /zsh/my_theme.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlppz/Everforest-Hyprland/HEAD/zsh/my_theme.zsh-theme --------------------------------------------------------------------------------