├── .Xresources ├── .config ├── alacritty │ └── alacritty.toml ├── dconf │ └── user ├── fish │ ├── config.fish │ └── fish_variables ├── hypr │ ├── autostart.conf │ ├── hypridle.conf │ ├── hyprland.conf │ ├── hyprlock.conf │ ├── hyprpaper.conf │ ├── hyprsunset.conf │ ├── scripts │ │ ├── alacritty_theme.sh │ │ ├── cropscreenshot.sh │ │ ├── hyprland_theme.sh │ │ ├── hyprpicker.sh │ │ ├── nvim_theme.sh │ │ ├── reload.sh │ │ ├── rofi_theme.sh │ │ ├── screenshot.sh │ │ ├── swaync_theme.sh │ │ ├── theme_change.sh │ │ ├── themes_rofi_list.sh │ │ ├── update_system.sh │ │ ├── wallpaper_change.sh │ │ ├── waybar_theme.sh │ │ └── wlogout_theme.sh │ ├── settings │ │ ├── environment.conf │ │ ├── input.conf │ │ ├── keybindings.conf │ │ ├── look.conf │ │ ├── monitors.conf │ │ ├── permissions.conf │ │ └── rules.conf │ └── themes │ │ ├── catppuccin-mocha │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── doom-one │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── dracula │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── everforest-light │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── everforest │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── gruvbox-light │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── gruvbox │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── kanagawa-dragon │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── kanagawa-light │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── kanagawa-wave │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── monokai │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── nordic │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── oasis-light │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── oasis │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── onedark │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ ├── theme.sh │ │ └── waybar.css │ │ ├── rose-pine-light │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── rose-pine │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── solarized-light │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── solarized-osaka │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ ├── tokyodark │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh │ │ └── vercel │ │ ├── alacritty.toml │ │ ├── hyprland.conf │ │ └── theme.sh ├── mimeapps.list ├── 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 │ │ │ ├── colorscheme.lua │ │ │ ├── editor.lua │ │ │ ├── themes.lua │ │ │ └── ui.lua │ └── stylua.toml ├── qt5ct │ └── qt5ct.conf ├── qt6ct │ └── qt6ct.conf ├── rofi │ ├── colors.rasi │ └── config.rasi ├── spotify-flags.conf ├── starship.toml ├── swaync │ ├── config.json │ └── style.css ├── uwsm │ └── env ├── waybar │ ├── config.jsonc │ └── style.css ├── wlogout │ ├── icons │ │ ├── hibernate.png │ │ ├── lock.png │ │ ├── logout.png │ │ ├── reboot.png │ │ ├── shutdown.png │ │ └── suspend.png │ ├── layout │ └── style.css └── xfce4 │ └── xfconf │ └── xfce-perchannel-xml │ ├── xfce4-notifyd.xml │ ├── xfce4-power-manager.xml │ ├── xfce4-screensaver.xml │ └── xfce4-session.xml ├── .local └── share │ └── applications │ └── nvim.desktop └── README.md /.Xresources: -------------------------------------------------------------------------------- 1 | Xft.dpi: 144 2 | -------------------------------------------------------------------------------- /.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/alacritty/alacritty.toml -------------------------------------------------------------------------------- /.config/dconf/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/dconf/user -------------------------------------------------------------------------------- /.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/fish/config.fish -------------------------------------------------------------------------------- /.config/fish/fish_variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/fish/fish_variables -------------------------------------------------------------------------------- /.config/hypr/autostart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/autostart.conf -------------------------------------------------------------------------------- /.config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/hypridle.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /.config/hypr/hyprsunset.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/hyprsunset.conf -------------------------------------------------------------------------------- /.config/hypr/scripts/alacritty_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/alacritty_theme.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/cropscreenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/cropscreenshot.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/hyprland_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/hyprland_theme.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/hyprpicker.sh: -------------------------------------------------------------------------------- 1 | hyprpicker -a -f hex 2 | -------------------------------------------------------------------------------- /.config/hypr/scripts/nvim_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/nvim_theme.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/reload.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/rofi_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/rofi_theme.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/screenshot.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/swaync_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/swaync_theme.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/theme_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/theme_change.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/themes_rofi_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/themes_rofi_list.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/update_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/update_system.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/wallpaper_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/wallpaper_change.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/waybar_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/waybar_theme.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/wlogout_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/scripts/wlogout_theme.sh -------------------------------------------------------------------------------- /.config/hypr/settings/environment.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/settings/environment.conf -------------------------------------------------------------------------------- /.config/hypr/settings/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/settings/input.conf -------------------------------------------------------------------------------- /.config/hypr/settings/keybindings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/settings/keybindings.conf -------------------------------------------------------------------------------- /.config/hypr/settings/look.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/settings/look.conf -------------------------------------------------------------------------------- /.config/hypr/settings/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/settings/monitors.conf -------------------------------------------------------------------------------- /.config/hypr/settings/permissions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/settings/permissions.conf -------------------------------------------------------------------------------- /.config/hypr/settings/rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/settings/rules.conf -------------------------------------------------------------------------------- /.config/hypr/themes/catppuccin-mocha/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/catppuccin-mocha/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/catppuccin-mocha/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/catppuccin-mocha/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/catppuccin-mocha/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/catppuccin-mocha/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/doom-one/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/doom-one/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/doom-one/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/doom-one/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/doom-one/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/doom-one/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/dracula/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/dracula/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/dracula/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/dracula/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/dracula/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/dracula/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/everforest-light/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/everforest-light/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/everforest-light/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/everforest-light/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/everforest-light/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/everforest-light/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/everforest/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/everforest/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/everforest/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/everforest/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/everforest/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/everforest/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/gruvbox-light/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/gruvbox-light/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/gruvbox-light/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/gruvbox-light/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/gruvbox-light/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/gruvbox-light/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/gruvbox/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/gruvbox/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/gruvbox/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/gruvbox/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/gruvbox/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/gruvbox/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-dragon/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-dragon/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-dragon/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-dragon/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-dragon/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-dragon/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-light/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-light/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-light/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-light/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-light/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-light/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-wave/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-wave/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-wave/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-wave/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/kanagawa-wave/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/kanagawa-wave/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/monokai/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/monokai/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/monokai/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/monokai/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/monokai/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/monokai/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/nordic/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/nordic/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/nordic/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/nordic/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/nordic/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/nordic/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/oasis-light/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/oasis-light/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/oasis-light/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/oasis-light/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/oasis-light/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/oasis-light/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/oasis/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/oasis/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/oasis/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/oasis/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/oasis/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/oasis/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/onedark/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/onedark/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/onedark/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/onedark/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/onedark/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/onedark/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/onedark/waybar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/onedark/waybar.css -------------------------------------------------------------------------------- /.config/hypr/themes/rose-pine-light/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/rose-pine-light/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/rose-pine-light/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/rose-pine-light/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/rose-pine-light/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/rose-pine-light/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/rose-pine/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/rose-pine/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/rose-pine/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/rose-pine/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/rose-pine/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/rose-pine/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/solarized-light/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/solarized-light/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/solarized-light/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/solarized-light/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/solarized-light/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/solarized-light/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/solarized-osaka/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/solarized-osaka/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/solarized-osaka/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/solarized-osaka/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/solarized-osaka/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/solarized-osaka/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/tokyodark/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/tokyodark/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/tokyodark/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/tokyodark/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/tokyodark/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/tokyodark/theme.sh -------------------------------------------------------------------------------- /.config/hypr/themes/vercel/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/vercel/alacritty.toml -------------------------------------------------------------------------------- /.config/hypr/themes/vercel/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/vercel/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/themes/vercel/theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/hypr/themes/vercel/theme.sh -------------------------------------------------------------------------------- /.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/mimeapps.list -------------------------------------------------------------------------------- /.config/nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/.gitignore -------------------------------------------------------------------------------- /.config/nvim/.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/.neoconf.json -------------------------------------------------------------------------------- /.config/nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/LICENSE -------------------------------------------------------------------------------- /.config/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/README.md -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /.config/nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lazyvim.json -------------------------------------------------------------------------------- /.config/nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /.config/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /.config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /.config/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/plugins/colorscheme.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/plugins/editor.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/themes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/plugins/themes.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/lua/plugins/ui.lua -------------------------------------------------------------------------------- /.config/nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/nvim/stylua.toml -------------------------------------------------------------------------------- /.config/qt5ct/qt5ct.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/qt5ct/qt5ct.conf -------------------------------------------------------------------------------- /.config/qt6ct/qt6ct.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/qt6ct/qt6ct.conf -------------------------------------------------------------------------------- /.config/rofi/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/rofi/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/rofi/config.rasi -------------------------------------------------------------------------------- /.config/spotify-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/spotify-flags.conf -------------------------------------------------------------------------------- /.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/starship.toml -------------------------------------------------------------------------------- /.config/swaync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/swaync/config.json -------------------------------------------------------------------------------- /.config/swaync/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/swaync/style.css -------------------------------------------------------------------------------- /.config/uwsm/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/uwsm/env -------------------------------------------------------------------------------- /.config/waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/waybar/config.jsonc -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/wlogout/icons/hibernate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/icons/hibernate.png -------------------------------------------------------------------------------- /.config/wlogout/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/icons/lock.png -------------------------------------------------------------------------------- /.config/wlogout/icons/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/icons/logout.png -------------------------------------------------------------------------------- /.config/wlogout/icons/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/icons/reboot.png -------------------------------------------------------------------------------- /.config/wlogout/icons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/icons/shutdown.png -------------------------------------------------------------------------------- /.config/wlogout/icons/suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/icons/suspend.png -------------------------------------------------------------------------------- /.config/wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/layout -------------------------------------------------------------------------------- /.config/wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/wlogout/style.css -------------------------------------------------------------------------------- /.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml -------------------------------------------------------------------------------- /.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml -------------------------------------------------------------------------------- /.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml -------------------------------------------------------------------------------- /.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml -------------------------------------------------------------------------------- /.local/share/applications/nvim.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/.local/share/applications/nvim.desktop -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dilanrojas/dotfiles/HEAD/README.md --------------------------------------------------------------------------------