├── fastfetch ├── config.jsonc └── pngs │ ├── fastfetch.png │ └── fastfetch2.jpg ├── hypr ├── hypridle.conf ├── hyprland.conf └── hyprlock.conf ├── kitty ├── kitty.conf └── themes │ ├── catppuccin.conf │ ├── gruvbox.conf │ ├── kanagawa.conf │ ├── main.conf │ └── nord.conf ├── nvim ├── init.lua ├── lazy-lock.json ├── lazyvim.json └── lua │ ├── plugins │ ├── copilot-chat.lua │ ├── copilot.lua │ ├── dashboard.lua │ ├── disabled.lua │ ├── editor.lua │ ├── markdown.lua │ ├── navegate.lua │ ├── oil.lua │ ├── overrides.lua │ ├── rip.lua │ ├── ui.lua │ ├── webdev.lua │ └── which-key.lua │ └── vim-options.lua ├── spicetify ├── Themes │ └── roseblood │ │ ├── color.ini │ │ └── user.css └── config-xpui.ini ├── waybar ├── config.jsonc ├── scripts │ ├── bluetooth-menu.sh │ ├── brightness-control.sh │ ├── cpu-temp.sh │ ├── current-theme.sh │ ├── power-menu.sh │ ├── swwwallpaper.sh │ ├── system-update.sh │ ├── theme-switcher.sh │ ├── volume-control.sh │ └── wifi-status.sh ├── style.css ├── theme.css └── themes │ ├── css │ ├── catppuccin-frappe.css │ ├── catppuccin-latte.css │ ├── catppuccin-macchiato.css │ ├── catppuccin-mocha.css │ ├── gruvbox-dark.css │ └── gruvbox-light.css │ ├── current-theme │ └── jsonc │ ├── catppuccin-frappe.jsonc │ ├── catppuccin-latte.jsonc │ ├── catppuccin-macchiato.jsonc │ ├── catppuccin-mocha.jsonc │ ├── gruvbox-dark.jsonc │ └── gruvbox-light.jsonc ├── wlogout ├── 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 └── style.css └── zshrc /fastfetch/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/fastfetch/config.jsonc -------------------------------------------------------------------------------- /fastfetch/pngs/fastfetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/fastfetch/pngs/fastfetch.png -------------------------------------------------------------------------------- /fastfetch/pngs/fastfetch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/fastfetch/pngs/fastfetch2.jpg -------------------------------------------------------------------------------- /hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/hypr/hypridle.conf -------------------------------------------------------------------------------- /hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/hypr/hyprland.conf -------------------------------------------------------------------------------- /hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/hypr/hyprlock.conf -------------------------------------------------------------------------------- /kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/kitty/kitty.conf -------------------------------------------------------------------------------- /kitty/themes/catppuccin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/kitty/themes/catppuccin.conf -------------------------------------------------------------------------------- /kitty/themes/gruvbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/kitty/themes/gruvbox.conf -------------------------------------------------------------------------------- /kitty/themes/kanagawa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/kitty/themes/kanagawa.conf -------------------------------------------------------------------------------- /kitty/themes/main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/kitty/themes/main.conf -------------------------------------------------------------------------------- /kitty/themes/nord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/kitty/themes/nord.conf -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lazy-lock.json -------------------------------------------------------------------------------- /nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lazyvim.json -------------------------------------------------------------------------------- /nvim/lua/plugins/copilot-chat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/copilot-chat.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/copilot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/copilot.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/dashboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/dashboard.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/disabled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/disabled.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/editor.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/markdown.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/navegate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/navegate.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/oil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/oil.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/overrides.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/overrides.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/rip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/rip.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/ui.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/webdev.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/webdev.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/which-key.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/plugins/which-key.lua -------------------------------------------------------------------------------- /nvim/lua/vim-options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/nvim/lua/vim-options.lua -------------------------------------------------------------------------------- /spicetify/Themes/roseblood/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/spicetify/Themes/roseblood/color.ini -------------------------------------------------------------------------------- /spicetify/Themes/roseblood/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/spicetify/Themes/roseblood/user.css -------------------------------------------------------------------------------- /spicetify/config-xpui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/spicetify/config-xpui.ini -------------------------------------------------------------------------------- /waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/config.jsonc -------------------------------------------------------------------------------- /waybar/scripts/bluetooth-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/bluetooth-menu.sh -------------------------------------------------------------------------------- /waybar/scripts/brightness-control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/brightness-control.sh -------------------------------------------------------------------------------- /waybar/scripts/cpu-temp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/cpu-temp.sh -------------------------------------------------------------------------------- /waybar/scripts/current-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/current-theme.sh -------------------------------------------------------------------------------- /waybar/scripts/power-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/power-menu.sh -------------------------------------------------------------------------------- /waybar/scripts/swwwallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/swwwallpaper.sh -------------------------------------------------------------------------------- /waybar/scripts/system-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/system-update.sh -------------------------------------------------------------------------------- /waybar/scripts/theme-switcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/theme-switcher.sh -------------------------------------------------------------------------------- /waybar/scripts/volume-control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/volume-control.sh -------------------------------------------------------------------------------- /waybar/scripts/wifi-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/scripts/wifi-status.sh -------------------------------------------------------------------------------- /waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/style.css -------------------------------------------------------------------------------- /waybar/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/theme.css -------------------------------------------------------------------------------- /waybar/themes/css/catppuccin-frappe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/css/catppuccin-frappe.css -------------------------------------------------------------------------------- /waybar/themes/css/catppuccin-latte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/css/catppuccin-latte.css -------------------------------------------------------------------------------- /waybar/themes/css/catppuccin-macchiato.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/css/catppuccin-macchiato.css -------------------------------------------------------------------------------- /waybar/themes/css/catppuccin-mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/css/catppuccin-mocha.css -------------------------------------------------------------------------------- /waybar/themes/css/gruvbox-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/css/gruvbox-dark.css -------------------------------------------------------------------------------- /waybar/themes/css/gruvbox-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/css/gruvbox-light.css -------------------------------------------------------------------------------- /waybar/themes/current-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/current-theme -------------------------------------------------------------------------------- /waybar/themes/jsonc/catppuccin-frappe.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/jsonc/catppuccin-frappe.jsonc -------------------------------------------------------------------------------- /waybar/themes/jsonc/catppuccin-latte.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/jsonc/catppuccin-latte.jsonc -------------------------------------------------------------------------------- /waybar/themes/jsonc/catppuccin-macchiato.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/jsonc/catppuccin-macchiato.jsonc -------------------------------------------------------------------------------- /waybar/themes/jsonc/catppuccin-mocha.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/jsonc/catppuccin-mocha.jsonc -------------------------------------------------------------------------------- /waybar/themes/jsonc/gruvbox-dark.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/jsonc/gruvbox-dark.jsonc -------------------------------------------------------------------------------- /waybar/themes/jsonc/gruvbox-light.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/waybar/themes/jsonc/gruvbox-light.jsonc -------------------------------------------------------------------------------- /wlogout/icons/hibernate_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/hibernate_black.png -------------------------------------------------------------------------------- /wlogout/icons/hibernate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/hibernate_white.png -------------------------------------------------------------------------------- /wlogout/icons/lock_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/lock_black.png -------------------------------------------------------------------------------- /wlogout/icons/lock_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/lock_white.png -------------------------------------------------------------------------------- /wlogout/icons/logout_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/logout_black.png -------------------------------------------------------------------------------- /wlogout/icons/logout_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/logout_white.png -------------------------------------------------------------------------------- /wlogout/icons/reboot_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/reboot_black.png -------------------------------------------------------------------------------- /wlogout/icons/reboot_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/reboot_white.png -------------------------------------------------------------------------------- /wlogout/icons/shutdown_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/shutdown_black.png -------------------------------------------------------------------------------- /wlogout/icons/shutdown_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/shutdown_white.png -------------------------------------------------------------------------------- /wlogout/icons/suspend_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/suspend_black.png -------------------------------------------------------------------------------- /wlogout/icons/suspend_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/icons/suspend_white.png -------------------------------------------------------------------------------- /wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/layout -------------------------------------------------------------------------------- /wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/wlogout/style.css -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AslanLM/hypr-dotfiles/HEAD/zshrc --------------------------------------------------------------------------------