├── .config ├── alacritty │ ├── alacritty.yml │ ├── colors.yml │ └── fonts.yml ├── cava │ ├── config │ └── shaders │ │ ├── bar_spectrum.frag │ │ ├── northern_lights.frag │ │ └── pass_through.vert ├── fontconfig │ └── fonts.conf ├── hypr │ ├── binds.conf │ ├── hyprland.conf │ └── hyprpaper.conf ├── lvim │ ├── config.lua │ └── lazy-lock.json ├── spicetify │ └── Themes │ │ └── Everforest │ │ ├── color.ini │ │ └── user.css └── waybar │ ├── config │ └── style.css ├── .p10k.zsh ├── .zprofile ├── .zshenv ├── .zshrc ├── LICENSE ├── README.md ├── assets └── screenshots │ ├── main.png │ └── plain.png ├── gruvbox_bg_17.jpg └── install_dotfiles.sh /.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /.config/alacritty/colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/alacritty/colors.yml -------------------------------------------------------------------------------- /.config/alacritty/fonts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/alacritty/fonts.yml -------------------------------------------------------------------------------- /.config/cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/cava/config -------------------------------------------------------------------------------- /.config/cava/shaders/bar_spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/cava/shaders/bar_spectrum.frag -------------------------------------------------------------------------------- /.config/cava/shaders/northern_lights.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/cava/shaders/northern_lights.frag -------------------------------------------------------------------------------- /.config/cava/shaders/pass_through.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/cava/shaders/pass_through.vert -------------------------------------------------------------------------------- /.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /.config/hypr/binds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/hypr/binds.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /.config/lvim/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/lvim/config.lua -------------------------------------------------------------------------------- /.config/lvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/lvim/lazy-lock.json -------------------------------------------------------------------------------- /.config/spicetify/Themes/Everforest/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/spicetify/Themes/Everforest/color.ini -------------------------------------------------------------------------------- /.config/spicetify/Themes/Everforest/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/spicetify/Themes/Everforest/user.css -------------------------------------------------------------------------------- /.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/waybar/config -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.p10k.zsh -------------------------------------------------------------------------------- /.zprofile: -------------------------------------------------------------------------------- 1 | if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" -eq 1 ]; then 2 | exec Hyprland >/dev/null 2>&1 3 | fi 4 | -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.zshenv -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/assets/screenshots/main.png -------------------------------------------------------------------------------- /assets/screenshots/plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/assets/screenshots/plain.png -------------------------------------------------------------------------------- /gruvbox_bg_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/gruvbox_bg_17.jpg -------------------------------------------------------------------------------- /install_dotfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneaspect/dotfiles/HEAD/install_dotfiles.sh --------------------------------------------------------------------------------