├── .config ├── hypr │ ├── categories │ │ ├── animations │ │ │ ├── animations.conf │ │ │ ├── dynamic_animations.conf │ │ │ ├── moving_animations.conf │ │ │ ├── my_animations.conf │ │ │ └── no_animations.conf │ │ ├── autostart.conf │ │ ├── environment_variables.conf │ │ ├── input.conf │ │ ├── keybinds.conf │ │ ├── look_and_feel.conf │ │ ├── monitors.conf │ │ ├── permissions.conf │ │ └── windows_and_workspaces.conf │ ├── hypridle.conf │ ├── hyprland.conf │ ├── hyprlock.conf │ └── hyprpaper.conf ├── kitty │ └── kitty.conf ├── nvim │ ├── .gitignore │ ├── .neoconf.json │ ├── LICENSE │ ├── README.md │ ├── init.lua │ ├── lazy-lock.json │ ├── lazyvim.json │ ├── lua │ │ ├── config │ │ │ ├── autocmds.lua │ │ │ ├── keymaps.lua │ │ │ ├── lazy.lua │ │ │ └── options.lua │ │ └── plugins │ │ │ └── example.lua │ ├── nvim │ │ ├── .gitignore │ │ ├── .neoconf.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── init.lua │ │ ├── lazy-lock.json │ │ ├── lazyvim.json │ │ ├── lua │ │ │ ├── config │ │ │ │ ├── autocmds.lua │ │ │ │ ├── keymaps.lua │ │ │ │ ├── lazy.lua │ │ │ │ └── options.lua │ │ │ └── plugins │ │ │ │ └── example.lua │ │ └── stylua.toml │ └── stylua.toml ├── rofi │ └── config.rasi ├── tofi │ ├── config │ └── configFullscreen ├── wal │ └── templates │ │ └── colors-hyprland.conf ├── waybar │ ├── config.jsonc │ └── style.css ├── waypaper │ └── config.ini └── wlogout │ ├── layout │ └── style.css ├── .gitignore ├── Documents └── scripts │ ├── clean_system.sh │ └── reload_waybar.sh ├── LICENSE ├── README.md └── install.sh /.config/hypr/categories/animations/animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/animations/animations.conf -------------------------------------------------------------------------------- /.config/hypr/categories/animations/dynamic_animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/animations/dynamic_animations.conf -------------------------------------------------------------------------------- /.config/hypr/categories/animations/moving_animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/animations/moving_animations.conf -------------------------------------------------------------------------------- /.config/hypr/categories/animations/my_animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/animations/my_animations.conf -------------------------------------------------------------------------------- /.config/hypr/categories/animations/no_animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/animations/no_animations.conf -------------------------------------------------------------------------------- /.config/hypr/categories/autostart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/autostart.conf -------------------------------------------------------------------------------- /.config/hypr/categories/environment_variables.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/environment_variables.conf -------------------------------------------------------------------------------- /.config/hypr/categories/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/input.conf -------------------------------------------------------------------------------- /.config/hypr/categories/keybinds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/keybinds.conf -------------------------------------------------------------------------------- /.config/hypr/categories/look_and_feel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/look_and_feel.conf -------------------------------------------------------------------------------- /.config/hypr/categories/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/monitors.conf -------------------------------------------------------------------------------- /.config/hypr/categories/permissions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/permissions.conf -------------------------------------------------------------------------------- /.config/hypr/categories/windows_and_workspaces.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/categories/windows_and_workspaces.conf -------------------------------------------------------------------------------- /.config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/hypridle.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/.gitignore -------------------------------------------------------------------------------- /.config/nvim/.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/.neoconf.json -------------------------------------------------------------------------------- /.config/nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/LICENSE -------------------------------------------------------------------------------- /.config/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/README.md -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /.config/nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/lazyvim.json -------------------------------------------------------------------------------- /.config/nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /.config/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /.config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /.config/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/lua/plugins/example.lua -------------------------------------------------------------------------------- /.config/nvim/nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/.gitignore -------------------------------------------------------------------------------- /.config/nvim/nvim/.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/.neoconf.json -------------------------------------------------------------------------------- /.config/nvim/nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/LICENSE -------------------------------------------------------------------------------- /.config/nvim/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/README.md -------------------------------------------------------------------------------- /.config/nvim/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/lazy-lock.json -------------------------------------------------------------------------------- /.config/nvim/nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/lazyvim.json -------------------------------------------------------------------------------- /.config/nvim/nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /.config/nvim/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /.config/nvim/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /.config/nvim/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /.config/nvim/nvim/lua/plugins/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/lua/plugins/example.lua -------------------------------------------------------------------------------- /.config/nvim/nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/nvim/stylua.toml -------------------------------------------------------------------------------- /.config/nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/nvim/stylua.toml -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/rofi/config.rasi -------------------------------------------------------------------------------- /.config/tofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/tofi/config -------------------------------------------------------------------------------- /.config/tofi/configFullscreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/tofi/configFullscreen -------------------------------------------------------------------------------- /.config/wal/templates/colors-hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/wal/templates/colors-hyprland.conf -------------------------------------------------------------------------------- /.config/waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/waybar/config.jsonc -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/waypaper/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/waypaper/config.ini -------------------------------------------------------------------------------- /.config/wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/wlogout/layout -------------------------------------------------------------------------------- /.config/wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.config/wlogout/style.css -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/scripts/clean_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/Documents/scripts/clean_system.sh -------------------------------------------------------------------------------- /Documents/scripts/reload_waybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/Documents/scripts/reload_waybar.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeniorMatt/matthew-s-dotfiles/HEAD/install.sh --------------------------------------------------------------------------------