├── .bin └── executables │ ├── randomPaper.sh │ └── toggleBar.sh ├── .config ├── alacritty │ ├── alacritty.toml │ └── themes │ │ ├── catppuccin-mocha.toml │ │ └── rose-pine.toml ├── dunst │ └── dunstrc ├── ghostty │ └── config ├── hypr │ ├── hypridle.conf │ ├── hyprland.conf │ ├── hyprland │ │ ├── env.conf │ │ ├── execs.conf │ │ ├── general.conf │ │ ├── keybinds.conf │ │ └── rules.conf │ ├── hyprlock.conf │ ├── hyprpaper.conf │ ├── hyprshot.conf │ ├── monitors.conf │ ├── scripts │ │ ├── brightness.sh │ │ └── volume.sh │ └── workspaces.conf ├── kitty │ └── kitty.conf ├── nvim │ ├── init.lua │ ├── lazy-lock.json │ └── lua │ │ ├── .luarc.json │ │ └── faizan │ │ ├── core │ │ ├── init.lua │ │ ├── keymaps.lua │ │ └── options.lua │ │ ├── lazy.lua │ │ └── plugins │ │ ├── barbecue.lua │ │ ├── bufferline.lua │ │ ├── colors.lua │ │ ├── comment.lua │ │ ├── dressing.lua │ │ ├── fidget.lua │ │ ├── formatting.lua │ │ ├── git-blame.lua │ │ ├── git.lua │ │ ├── harpoon.lua │ │ ├── indent-backline.lua │ │ ├── linting.lua │ │ ├── lsp │ │ ├── blink-cmp.lua │ │ ├── lazydev.lua │ │ ├── lspconfig.lua │ │ ├── mason.lua │ │ └── nvim-cmp.lua │ │ ├── lualine.lua │ │ ├── markdown.lua │ │ ├── mini.lua │ │ ├── nvim-highlight-colors.lua │ │ ├── nvim-tree.lua │ │ ├── nvim-ts-autotag.lua │ │ ├── oil.lua │ │ ├── snacks.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ ├── trouble.lua │ │ ├── undotree.lua │ │ ├── vim-tmux-navigator.lua │ │ └── which-key.lua ├── nwg-bar │ ├── bar.json │ └── style.css ├── rofi │ ├── applets │ │ ├── bin │ │ │ ├── appasroot.sh │ │ │ ├── apps.sh │ │ │ ├── battery.sh │ │ │ ├── brightness.sh │ │ │ ├── mpd.sh │ │ │ ├── powermenu.sh │ │ │ ├── quicklinks.sh │ │ │ ├── screenshot.sh │ │ │ └── volume.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ ├── fonts.rasi │ │ │ └── theme.bash │ │ ├── type-1 │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ └── style-3.rasi │ │ ├── type-2 │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ └── style-3.rasi │ │ ├── type-3 │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ └── style-3.rasi │ │ ├── type-4 │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ └── style-3.rasi │ │ └── type-5 │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ └── style-3.rasi │ ├── colors │ │ ├── adapta.rasi │ │ ├── arc.rasi │ │ ├── black.rasi │ │ ├── catppuccin.rasi │ │ ├── cyberpunk.rasi │ │ ├── dracula.rasi │ │ ├── everforest.rasi │ │ ├── gruvbox.rasi │ │ ├── lovelace.rasi │ │ ├── navy.rasi │ │ ├── nord.rasi │ │ ├── onedark.rasi │ │ ├── paper.rasi │ │ ├── solarized.rasi │ │ ├── tokyonight.rasi │ │ └── yousai.rasi │ ├── config.rasi │ ├── images │ │ ├── a.png │ │ ├── b.png │ │ ├── c.png │ │ ├── d.png │ │ ├── e.jpg │ │ ├── f.png │ │ ├── flowers-1.png │ │ ├── flowers-2.png │ │ ├── flowers-3.png │ │ ├── g.png │ │ ├── gradient.png │ │ ├── h.jpg │ │ ├── i.jpg │ │ ├── j.jpg │ │ ├── paper.png │ │ └── user.jpeg │ ├── launchers │ │ ├── type-1 │ │ │ ├── launcher.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-11.rasi │ │ │ ├── style-12.rasi │ │ │ ├── style-13.rasi │ │ │ ├── style-14.rasi │ │ │ ├── style-15.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ ├── type-2 │ │ │ ├── launcher.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-11.rasi │ │ │ ├── style-12.rasi │ │ │ ├── style-13.rasi │ │ │ ├── style-14.rasi │ │ │ ├── style-15.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ ├── type-3 │ │ │ ├── launcher.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ ├── type-4 │ │ │ ├── launcher.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ ├── type-5 │ │ │ ├── launcher.sh │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ ├── type-6 │ │ │ ├── launcher.sh │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ └── type-7 │ │ │ ├── launcher.sh │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ ├── powermenu │ │ ├── type-1 │ │ │ ├── powermenu.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ ├── type-2 │ │ │ ├── powermenu.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-10.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ ├── style-5.rasi │ │ │ ├── style-6.rasi │ │ │ ├── style-7.rasi │ │ │ ├── style-8.rasi │ │ │ └── style-9.rasi │ │ ├── type-3 │ │ │ ├── powermenu.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ ├── confirm.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ ├── type-4 │ │ │ ├── powermenu.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ ├── confirm.rasi │ │ │ │ └── fonts.rasi │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ ├── type-5 │ │ │ ├── powermenu.sh │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ │ └── type-6 │ │ │ ├── powermenu.sh │ │ │ ├── style-1.rasi │ │ │ ├── style-2.rasi │ │ │ ├── style-3.rasi │ │ │ ├── style-4.rasi │ │ │ └── style-5.rasi │ └── scripts │ │ ├── launcher_t1 │ │ ├── launcher_t2 │ │ ├── launcher_t3 │ │ ├── launcher_t4 │ │ ├── launcher_t5 │ │ ├── launcher_t6 │ │ ├── launcher_t7 │ │ ├── powermenu_t1 │ │ ├── powermenu_t2 │ │ ├── powermenu_t3 │ │ ├── powermenu_t4 │ │ ├── powermenu_t5 │ │ └── powermenu_t6 ├── starship.toml ├── waybar │ ├── config.jsonc │ └── style.css └── wofi │ └── style.css ├── .gitignore ├── .tmux.conf ├── .zshrc └── README.md /.bin/executables/randomPaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.bin/executables/randomPaper.sh -------------------------------------------------------------------------------- /.bin/executables/toggleBar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.bin/executables/toggleBar.sh -------------------------------------------------------------------------------- /.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/alacritty/alacritty.toml -------------------------------------------------------------------------------- /.config/alacritty/themes/catppuccin-mocha.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/alacritty/themes/catppuccin-mocha.toml -------------------------------------------------------------------------------- /.config/alacritty/themes/rose-pine.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/alacritty/themes/rose-pine.toml -------------------------------------------------------------------------------- /.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/dunst/dunstrc -------------------------------------------------------------------------------- /.config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/ghostty/config -------------------------------------------------------------------------------- /.config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hypridle.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/env.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprland/env.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/execs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprland/execs.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/general.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprland/general.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/keybinds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprland/keybinds.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland/rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprland/rules.conf -------------------------------------------------------------------------------- /.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /.config/hypr/hyprshot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/hyprshot.conf -------------------------------------------------------------------------------- /.config/hypr/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/monitors.conf -------------------------------------------------------------------------------- /.config/hypr/scripts/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/scripts/brightness.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/scripts/volume.sh -------------------------------------------------------------------------------- /.config/hypr/workspaces.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/hypr/workspaces.conf -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /.config/nvim/lua/.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/.luarc.json -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/core/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/core/init.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/core/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/core/keymaps.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/core/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/core/options.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/lazy.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/barbecue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/barbecue.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/bufferline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/bufferline.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/colors.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/comment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/comment.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/dressing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/dressing.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/fidget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/fidget.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/formatting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/formatting.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/git-blame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/git-blame.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/git.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/harpoon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/harpoon.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/indent-backline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/indent-backline.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/linting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/linting.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/lsp/blink-cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/lsp/blink-cmp.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/lsp/lazydev.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/lsp/lazydev.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/lsp/lspconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/lsp/lspconfig.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/lsp/mason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/lsp/mason.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/lsp/nvim-cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/lsp/nvim-cmp.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/lualine.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/markdown.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/mini.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/mini.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/nvim-highlight-colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/nvim-highlight-colors.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/nvim-tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/nvim-tree.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/nvim-ts-autotag.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/nvim-ts-autotag.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/oil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/oil.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/snacks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/snacks.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/telescope.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/treesitter.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/trouble.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/trouble.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/undotree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/undotree.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/vim-tmux-navigator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/vim-tmux-navigator.lua -------------------------------------------------------------------------------- /.config/nvim/lua/faizan/plugins/which-key.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nvim/lua/faizan/plugins/which-key.lua -------------------------------------------------------------------------------- /.config/nwg-bar/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nwg-bar/bar.json -------------------------------------------------------------------------------- /.config/nwg-bar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/nwg-bar/style.css -------------------------------------------------------------------------------- /.config/rofi/applets/bin/appasroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/appasroot.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/apps.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/battery.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/brightness.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/mpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/mpd.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/quicklinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/quicklinks.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/screenshot.sh -------------------------------------------------------------------------------- /.config/rofi/applets/bin/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/bin/volume.sh -------------------------------------------------------------------------------- /.config/rofi/applets/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/shared/theme.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/shared/theme.bash -------------------------------------------------------------------------------- /.config/rofi/applets/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-1/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-1/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-1/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-2/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-2/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-2/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-3/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-3/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-3/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-4/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-4/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-4/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-5/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-5/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/applets/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/applets/type-5/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/adapta.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/adapta.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/arc.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/arc.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/black.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/black.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/catppuccin.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/cyberpunk.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/cyberpunk.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/dracula.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/dracula.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/everforest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/everforest.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/gruvbox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/gruvbox.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/lovelace.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/lovelace.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/navy.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/navy.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/nord.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/onedark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/onedark.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/paper.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/paper.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/solarized.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/solarized.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/tokyonight.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/tokyonight.rasi -------------------------------------------------------------------------------- /.config/rofi/colors/yousai.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/colors/yousai.rasi -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/config.rasi -------------------------------------------------------------------------------- /.config/rofi/images/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/a.png -------------------------------------------------------------------------------- /.config/rofi/images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/b.png -------------------------------------------------------------------------------- /.config/rofi/images/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/c.png -------------------------------------------------------------------------------- /.config/rofi/images/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/d.png -------------------------------------------------------------------------------- /.config/rofi/images/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/e.jpg -------------------------------------------------------------------------------- /.config/rofi/images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/f.png -------------------------------------------------------------------------------- /.config/rofi/images/flowers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/flowers-1.png -------------------------------------------------------------------------------- /.config/rofi/images/flowers-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/flowers-2.png -------------------------------------------------------------------------------- /.config/rofi/images/flowers-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/flowers-3.png -------------------------------------------------------------------------------- /.config/rofi/images/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/g.png -------------------------------------------------------------------------------- /.config/rofi/images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/gradient.png -------------------------------------------------------------------------------- /.config/rofi/images/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/h.jpg -------------------------------------------------------------------------------- /.config/rofi/images/i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/i.jpg -------------------------------------------------------------------------------- /.config/rofi/images/j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/j.jpg -------------------------------------------------------------------------------- /.config/rofi/images/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/paper.png -------------------------------------------------------------------------------- /.config/rofi/images/user.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/images/user.jpeg -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-10.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-11.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-12.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-13.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-14.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-15.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-6.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-7.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-8.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-1/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-1/style-9.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-10.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-11.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-12.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-13.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-14.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-15.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-6.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-7.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-8.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-2/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-2/style-9.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-10.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-6.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-7.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-8.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-3/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-3/style-9.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-10.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-6.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-7.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-8.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-4/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-4/style-9.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-5/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-5/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/launchers/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-5/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-5/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-5/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-5/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-5/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-5/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-5/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-10.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-6.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-7.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-8.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-6/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-6/style-9.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-10.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-6.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-7.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-8.rasi -------------------------------------------------------------------------------- /.config/rofi/launchers/type-7/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/launchers/type-7/style-9.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-1/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-1/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-10.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-6.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-7.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-8.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-2/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-2/style-9.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/shared/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/shared/confirm.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-3/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-3/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/shared/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/shared/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/shared/confirm.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/shared/fonts.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-4/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-4/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-5/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-5/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-5/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-5/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-5/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-5/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-5/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-5/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-5/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-6/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-6/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-6/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-6/style-1.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-6/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-6/style-2.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-6/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-6/style-3.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-6/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-6/style-4.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu/type-6/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/rofi/powermenu/type-6/style-5.rasi -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher_t1: -------------------------------------------------------------------------------- 1 | ../launchers/type-1/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher_t2: -------------------------------------------------------------------------------- 1 | ../launchers/type-2/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher_t3: -------------------------------------------------------------------------------- 1 | ../launchers/type-3/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher_t4: -------------------------------------------------------------------------------- 1 | ../launchers/type-4/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher_t5: -------------------------------------------------------------------------------- 1 | ../launchers/type-5/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher_t6: -------------------------------------------------------------------------------- 1 | ../launchers/type-6/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/launcher_t7: -------------------------------------------------------------------------------- 1 | ../launchers/type-7/launcher.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/powermenu_t1: -------------------------------------------------------------------------------- 1 | ../powermenu/type-1/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/powermenu_t2: -------------------------------------------------------------------------------- 1 | ../powermenu/type-2/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/powermenu_t3: -------------------------------------------------------------------------------- 1 | ../powermenu/type-3/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/powermenu_t4: -------------------------------------------------------------------------------- 1 | ../powermenu/type-4/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/powermenu_t5: -------------------------------------------------------------------------------- 1 | ../powermenu/type-5/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/scripts/powermenu_t6: -------------------------------------------------------------------------------- 1 | ../powermenu/type-6/powermenu.sh -------------------------------------------------------------------------------- /.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/starship.toml -------------------------------------------------------------------------------- /.config/waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/waybar/config.jsonc -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/wofi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.config/wofi/style.css -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ./.config/tmux/plugins/ 2 | -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faizan-20/.dotfiles/HEAD/README.md --------------------------------------------------------------------------------