├── .gitattributes ├── .gitignore ├── README.md ├── eggs ├── alacritty │ └── alacritty.toml ├── bat │ └── config ├── eww-bar │ └── .config │ │ └── eww-bar │ │ ├── audio.sh │ │ ├── eww.scss │ │ ├── eww.yuck │ │ ├── showcase.png │ │ ├── swayspaces.py │ │ ├── update-workspaces.sh │ │ └── workspaces.sh ├── eww-laptop │ └── .config │ │ └── eww │ │ ├── eww.scss │ │ ├── eww.yuck │ │ └── scripts │ │ ├── change-active-workspace.sh │ │ ├── get-active-workspace │ │ └── get-workspaces ├── eww │ └── .config │ │ └── eww │ │ └── eww.yuck ├── foot │ └── foot.ini ├── git │ └── .gitconfig ├── gtk │ ├── .config │ │ └── gtk-3.0 │ │ │ ├── .gitignore │ │ │ └── settings.ini │ └── .gitignore ├── hyprland │ └── .config │ │ └── hypr │ │ ├── hyprland.conf │ │ └── hyprpaper.conf ├── hyprlock │ └── .config │ │ └── hypr │ │ └── hyprlock.conf ├── kakoune │ └── .config │ │ ├── kak-lsp │ │ └── kak-lsp.toml │ │ └── kak │ │ ├── .gitignore │ │ └── kakrc ├── kanata │ └── .config │ │ └── kanata │ │ └── kanata.kbd ├── kanshi │ └── config ├── karabiner │ └── .config │ │ └── karabiner │ │ ├── assets │ │ └── complex_modifications │ │ │ └── 1678276093.json │ │ ├── automatic_backups │ │ ├── karabiner_20221207.json │ │ ├── karabiner_20230308.json │ │ └── karabiner_20231005.json │ │ ├── config.yaml │ │ ├── karabiner.json │ │ ├── karabiner.json.old │ │ ├── karabiner.ts │ │ └── update.sh ├── niri │ ├── clipboardfix.sh │ └── config.kdl ├── nushell │ ├── .gitignore │ ├── config.nu │ ├── env.nu │ └── zoxide.nu ├── nvim-old │ ├── .gitignore │ ├── .nfnl.fnl │ ├── fnl │ │ ├── dots │ │ │ ├── colors.fnl │ │ │ ├── keybinds.fnl │ │ │ ├── plugins │ │ │ │ ├── bufferline.fnl │ │ │ │ ├── cmp.fnl │ │ │ │ ├── copilot.fnl │ │ │ │ ├── diffview.fnl │ │ │ │ ├── emmet.fnl │ │ │ │ ├── feline.fnl │ │ │ │ ├── flutter-tools.fnl │ │ │ │ ├── gitsigns.fnl │ │ │ │ ├── gruvbox8.fnl │ │ │ │ ├── lsp.fnl │ │ │ │ ├── ltex-ls.fnl │ │ │ │ ├── noice.fnl │ │ │ │ ├── nvim-colorizer.fnl │ │ │ │ ├── obsidian.fnl │ │ │ │ ├── plugins.fnl │ │ │ │ ├── telescope.fnl │ │ │ │ ├── todo-comments.fnl │ │ │ │ ├── treesitter.fnl │ │ │ │ ├── trouble.fnl │ │ │ │ └── vimtex.fnl │ │ │ ├── prelude.fnl │ │ │ └── utils.fnl │ │ ├── macros.fnl │ │ └── main.fnl │ ├── init.lua │ ├── lazy-lock.json │ └── lua │ │ ├── dots │ │ ├── basics.lua │ │ ├── colors.lua │ │ ├── help-thingy.lua │ │ ├── keybinds.lua │ │ ├── plugins │ │ │ ├── bufferline.lua │ │ │ ├── cmp.lua │ │ │ ├── copilot.lua │ │ │ ├── diffview.lua │ │ │ ├── emmet.lua │ │ │ ├── feline.lua │ │ │ ├── flutter-tools.lua │ │ │ ├── gitsigns.lua │ │ │ ├── gruvbox8.lua │ │ │ ├── lsp.lua │ │ │ ├── ltex-ls.lua │ │ │ ├── noice.lua │ │ │ ├── nvim-colorizer.lua │ │ │ ├── obsidian.lua │ │ │ ├── plugins.lua │ │ │ ├── telescope.lua │ │ │ ├── todo-comments.lua │ │ │ ├── treesitter.lua │ │ │ ├── trouble.lua │ │ │ └── vimtex.lua │ │ ├── prelude.lua │ │ ├── smart-compe-conjure.lua │ │ └── utils.lua │ │ └── main.lua ├── nvim │ ├── .gitignore │ ├── .neoconf.json │ ├── LICENSE │ ├── README.md │ ├── init.lua │ ├── lazy-lock.json │ ├── lazyvim.json │ ├── lua │ │ ├── config │ │ │ ├── autocmds.lua │ │ │ ├── keymaps.lua │ │ │ ├── lazy.lua │ │ │ └── options.lua │ │ └── plugins │ │ │ ├── colorscheme.lua │ │ │ ├── completion.lua │ │ │ ├── disabled.lua │ │ │ ├── lazyvim.lua │ │ │ ├── lsp.lua │ │ │ ├── lualine.lua │ │ │ ├── markdown.lua │ │ │ ├── mini-comment.lua │ │ │ ├── mini-surround.lua │ │ │ ├── move.lua │ │ │ ├── noice.lua │ │ │ ├── remote.lua │ │ │ ├── rust.lua │ │ │ ├── scrollbar.lua │ │ │ ├── telescope.lua │ │ │ ├── treesitter.lua │ │ │ └── typst.lua │ ├── stylua.toml │ └── syntax │ │ ├── jinja.vim │ │ └── kdl.vim ├── other-dotfiles-stuff │ └── other-dotfile-stuff │ │ ├── bazecor-raise-layers │ │ ├── github_gruvbox.css │ │ ├── github_gruvbox_simple.css │ │ └── gitlab_gruvbox.css ├── powershell │ └── Microsoft.PowerShell_profile.ps1 ├── profile │ └── .profile ├── 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 ├── scripts │ ├── 0x0.sh │ ├── THE_BEST_SCRIPT.sh │ ├── Theatron │ │ ├── .currently_playing │ │ ├── bId.txt │ │ ├── clipit │ │ ├── config │ │ ├── oauth │ │ ├── pollingservice │ │ └── simplewatch │ ├── audio-select.sh │ ├── autocompile │ │ └── plantuml.sh │ ├── autocompleteWords.sh │ ├── battery_indicator.sh │ ├── bazecor.sh │ ├── bookmarks │ │ ├── config_files │ │ ├── other │ │ ├── ssh │ │ └── websites │ ├── boshinyanyanyanfetch.sh │ ├── casefandeamon.py │ ├── cheat │ ├── company_distances │ │ ├── coordinates.json │ │ ├── distances.json │ │ ├── foo.sh │ │ ├── get_coords.sh │ │ ├── get_distances.sh │ │ ├── links_sorted │ │ └── sorted.json │ ├── conf │ ├── copy-pasta.sh │ ├── fetch-running-pipelines.sh │ ├── findWindowInfo.sh │ ├── fzfimg.sh │ ├── fzfselect.sh │ ├── gpuinfo.sh │ ├── hue.sh │ ├── kak-attatch-session │ ├── lemonbar │ │ ├── like_polybar.sh │ │ ├── right_side.sh │ │ └── xmonad_info.sh │ ├── makeHaskellProject.sh │ ├── memeaker │ ├── mkFFGH.sh │ ├── nix_stash │ ├── packageSizes.sh │ ├── picom │ ├── pinLocker-Desktop.jar │ ├── preview.sh │ ├── resizeGif.sh │ ├── rofi-open.sh │ ├── rofi-scripts │ │ ├── links.md │ │ └── open-git-project.sh │ ├── runXephyr.sh │ ├── screengif.sh │ ├── screenrecorder.sh │ ├── screenshot.sh │ ├── screenvideo.sh │ ├── scrotshadow.sh │ ├── swallow_app.sh │ ├── timer.sh │ ├── workspaces │ │ └── swlab.sh │ └── wpms.sh ├── sioyek │ └── .config │ │ └── sioyek │ │ ├── keys_user.config │ │ └── prefs_user.config ├── starship │ └── .config │ │ └── starship.toml ├── sway │ └── .config │ │ └── sway │ │ ├── config │ │ ├── config.d │ │ └── swaysome │ │ ├── import-gsettings │ │ └── swaysome.conf ├── tmux │ └── .config │ │ └── tmux │ │ ├── .gitignore │ │ └── tmux.conf ├── wallpapers │ ├── elk_gasstation_dark.jpg │ ├── elk_gasstation_lights.jpg │ ├── luxembourg-bridge.jpg │ └── luxembourg-villa.jpg ├── waybar │ └── .config │ │ └── waybar │ │ ├── config.jsonc │ │ └── style.css ├── zathura │ └── .config │ │ └── zathura │ │ └── zathurarc ├── zed │ ├── .gitignore │ ├── keymap.json │ ├── keymap_backup.json │ ├── settings.json │ ├── settings_backup.json │ ├── tasks.json │ └── themes │ │ └── phine.json └── zsh │ ├── .config │ └── zsh │ │ ├── .gitignore │ │ ├── .zlogin │ │ ├── .zprofile │ │ ├── .zshrc │ │ ├── abbreviations │ │ ├── fzf-tab.zsh │ │ ├── keybinds.zsh │ │ ├── prompt.zsh │ │ └── utils.zsh │ └── .zshenv └── yolk.rhai /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/README.md -------------------------------------------------------------------------------- /eggs/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/alacritty/alacritty.toml -------------------------------------------------------------------------------- /eggs/bat/config: -------------------------------------------------------------------------------- 1 | --theme=gruvbox-dark 2 | -------------------------------------------------------------------------------- /eggs/eww-bar/.config/eww-bar/audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-bar/.config/eww-bar/audio.sh -------------------------------------------------------------------------------- /eggs/eww-bar/.config/eww-bar/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-bar/.config/eww-bar/eww.scss -------------------------------------------------------------------------------- /eggs/eww-bar/.config/eww-bar/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-bar/.config/eww-bar/eww.yuck -------------------------------------------------------------------------------- /eggs/eww-bar/.config/eww-bar/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-bar/.config/eww-bar/showcase.png -------------------------------------------------------------------------------- /eggs/eww-bar/.config/eww-bar/swayspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-bar/.config/eww-bar/swayspaces.py -------------------------------------------------------------------------------- /eggs/eww-bar/.config/eww-bar/update-workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-bar/.config/eww-bar/update-workspaces.sh -------------------------------------------------------------------------------- /eggs/eww-bar/.config/eww-bar/workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-bar/.config/eww-bar/workspaces.sh -------------------------------------------------------------------------------- /eggs/eww-laptop/.config/eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-laptop/.config/eww/eww.scss -------------------------------------------------------------------------------- /eggs/eww-laptop/.config/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-laptop/.config/eww/eww.yuck -------------------------------------------------------------------------------- /eggs/eww-laptop/.config/eww/scripts/change-active-workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-laptop/.config/eww/scripts/change-active-workspace.sh -------------------------------------------------------------------------------- /eggs/eww-laptop/.config/eww/scripts/get-active-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-laptop/.config/eww/scripts/get-active-workspace -------------------------------------------------------------------------------- /eggs/eww-laptop/.config/eww/scripts/get-workspaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww-laptop/.config/eww/scripts/get-workspaces -------------------------------------------------------------------------------- /eggs/eww/.config/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/eww/.config/eww/eww.yuck -------------------------------------------------------------------------------- /eggs/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/foot/foot.ini -------------------------------------------------------------------------------- /eggs/git/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/git/.gitconfig -------------------------------------------------------------------------------- /eggs/gtk/.config/gtk-3.0/.gitignore: -------------------------------------------------------------------------------- 1 | ./bookmarks 2 | -------------------------------------------------------------------------------- /eggs/gtk/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/gtk/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /eggs/gtk/.gitignore: -------------------------------------------------------------------------------- 1 | **/bookmarks 2 | -------------------------------------------------------------------------------- /eggs/hyprland/.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/hyprland/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /eggs/hyprland/.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/hyprland/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /eggs/hyprlock/.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/hyprlock/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /eggs/kakoune/.config/kak-lsp/kak-lsp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/kakoune/.config/kak-lsp/kak-lsp.toml -------------------------------------------------------------------------------- /eggs/kakoune/.config/kak/.gitignore: -------------------------------------------------------------------------------- 1 | plugins 2 | -------------------------------------------------------------------------------- /eggs/kakoune/.config/kak/kakrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/kakoune/.config/kak/kakrc -------------------------------------------------------------------------------- /eggs/kanata/.config/kanata/kanata.kbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/kanata/.config/kanata/kanata.kbd -------------------------------------------------------------------------------- /eggs/kanshi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/kanshi/config -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/assets/complex_modifications/1678276093.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/assets/complex_modifications/1678276093.json -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/automatic_backups/karabiner_20221207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/automatic_backups/karabiner_20221207.json -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/automatic_backups/karabiner_20230308.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/automatic_backups/karabiner_20230308.json -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/automatic_backups/karabiner_20231005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/automatic_backups/karabiner_20231005.json -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/config.yaml -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/karabiner.json -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/karabiner.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/karabiner.json.old -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/karabiner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/karabiner.ts -------------------------------------------------------------------------------- /eggs/karabiner/.config/karabiner/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/karabiner/.config/karabiner/update.sh -------------------------------------------------------------------------------- /eggs/niri/clipboardfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/niri/clipboardfix.sh -------------------------------------------------------------------------------- /eggs/niri/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/niri/config.kdl -------------------------------------------------------------------------------- /eggs/nushell/.gitignore: -------------------------------------------------------------------------------- 1 | /history.txt 2 | -------------------------------------------------------------------------------- /eggs/nushell/config.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nushell/config.nu -------------------------------------------------------------------------------- /eggs/nushell/env.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nushell/env.nu -------------------------------------------------------------------------------- /eggs/nushell/zoxide.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nushell/zoxide.nu -------------------------------------------------------------------------------- /eggs/nvim-old/.gitignore: -------------------------------------------------------------------------------- 1 | plugin 2 | lua-old 3 | -------------------------------------------------------------------------------- /eggs/nvim-old/.nfnl.fnl: -------------------------------------------------------------------------------- 1 | {} 2 | 3 | -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/colors.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/colors.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/keybinds.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/keybinds.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/bufferline.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/bufferline.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/cmp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/cmp.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/copilot.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/copilot.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/diffview.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/diffview.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/emmet.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/emmet.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/feline.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/feline.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/flutter-tools.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/flutter-tools.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/gitsigns.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/gitsigns.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/gruvbox8.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/gruvbox8.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/lsp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/lsp.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/ltex-ls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/ltex-ls.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/noice.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/noice.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/nvim-colorizer.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/nvim-colorizer.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/obsidian.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/obsidian.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/plugins.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/plugins.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/telescope.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/telescope.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/todo-comments.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/todo-comments.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/treesitter.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/treesitter.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/trouble.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/trouble.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/plugins/vimtex.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/plugins/vimtex.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/prelude.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/prelude.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/dots/utils.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/dots/utils.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/macros.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/macros.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/fnl/main.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/fnl/main.fnl -------------------------------------------------------------------------------- /eggs/nvim-old/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/init.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lazy-lock.json -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/basics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/basics.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/colors.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/help-thingy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/help-thingy.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/keybinds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/keybinds.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/bufferline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/bufferline.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/cmp.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/copilot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/copilot.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/diffview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/diffview.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/emmet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/emmet.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/feline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/feline.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/flutter-tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/flutter-tools.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/gitsigns.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/gruvbox8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/gruvbox8.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/lsp.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/ltex-ls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/ltex-ls.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/noice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/noice.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/nvim-colorizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/nvim-colorizer.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/obsidian.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/obsidian.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/plugins.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/telescope.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/todo-comments.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/todo-comments.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/treesitter.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/trouble.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/trouble.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/plugins/vimtex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/plugins/vimtex.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/prelude.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/prelude.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/smart-compe-conjure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/smart-compe-conjure.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/dots/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/dots/utils.lua -------------------------------------------------------------------------------- /eggs/nvim-old/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim-old/lua/main.lua -------------------------------------------------------------------------------- /eggs/nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/.gitignore -------------------------------------------------------------------------------- /eggs/nvim/.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/.neoconf.json -------------------------------------------------------------------------------- /eggs/nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/LICENSE -------------------------------------------------------------------------------- /eggs/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/README.md -------------------------------------------------------------------------------- /eggs/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/init.lua -------------------------------------------------------------------------------- /eggs/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lazy-lock.json -------------------------------------------------------------------------------- /eggs/nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lazyvim.json -------------------------------------------------------------------------------- /eggs/nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/colorscheme.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/completion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/completion.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/disabled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/disabled.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/lazyvim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/lazyvim.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/lsp.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/lualine.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/markdown.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/mini-comment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/mini-comment.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/mini-surround.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/mini-surround.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/move.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/move.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/noice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/noice.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/remote.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/remote.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/rust.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/rust.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/scrollbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/scrollbar.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /eggs/nvim/lua/plugins/typst.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/lua/plugins/typst.lua -------------------------------------------------------------------------------- /eggs/nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/stylua.toml -------------------------------------------------------------------------------- /eggs/nvim/syntax/jinja.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/syntax/jinja.vim -------------------------------------------------------------------------------- /eggs/nvim/syntax/kdl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/nvim/syntax/kdl.vim -------------------------------------------------------------------------------- /eggs/other-dotfiles-stuff/other-dotfile-stuff/bazecor-raise-layers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/other-dotfiles-stuff/other-dotfile-stuff/bazecor-raise-layers -------------------------------------------------------------------------------- /eggs/other-dotfiles-stuff/other-dotfile-stuff/github_gruvbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/other-dotfiles-stuff/other-dotfile-stuff/github_gruvbox.css -------------------------------------------------------------------------------- /eggs/other-dotfiles-stuff/other-dotfile-stuff/github_gruvbox_simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/other-dotfiles-stuff/other-dotfile-stuff/github_gruvbox_simple.css -------------------------------------------------------------------------------- /eggs/other-dotfiles-stuff/other-dotfile-stuff/gitlab_gruvbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/other-dotfiles-stuff/other-dotfile-stuff/gitlab_gruvbox.css -------------------------------------------------------------------------------- /eggs/powershell/Microsoft.PowerShell_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/powershell/Microsoft.PowerShell_profile.ps1 -------------------------------------------------------------------------------- /eggs/profile/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/profile/.profile -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/appasroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/appasroot.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/apps.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/battery.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/brightness.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/mpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/mpd.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/quicklinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/quicklinks.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/screenshot.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/bin/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/bin/volume.sh -------------------------------------------------------------------------------- /eggs/rofi/applets/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/shared/theme.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/shared/theme.bash -------------------------------------------------------------------------------- /eggs/rofi/applets/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-1/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-1/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-1/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-2/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-2/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-2/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-3/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-3/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-3/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-4/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-4/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-4/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-5/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-5/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/applets/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/applets/type-5/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/adapta.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/adapta.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/arc.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/arc.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/black.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/black.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/catppuccin.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/cyberpunk.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/cyberpunk.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/dracula.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/dracula.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/everforest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/everforest.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/gruvbox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/gruvbox.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/lovelace.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/lovelace.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/navy.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/navy.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/nord.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/onedark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/onedark.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/paper.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/paper.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/solarized.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/solarized.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/tokyonight.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/tokyonight.rasi -------------------------------------------------------------------------------- /eggs/rofi/colors/yousai.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/colors/yousai.rasi -------------------------------------------------------------------------------- /eggs/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/config.rasi -------------------------------------------------------------------------------- /eggs/rofi/images/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/a.png -------------------------------------------------------------------------------- /eggs/rofi/images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/b.png -------------------------------------------------------------------------------- /eggs/rofi/images/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/c.png -------------------------------------------------------------------------------- /eggs/rofi/images/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/d.png -------------------------------------------------------------------------------- /eggs/rofi/images/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/e.jpg -------------------------------------------------------------------------------- /eggs/rofi/images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/f.png -------------------------------------------------------------------------------- /eggs/rofi/images/flowers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/flowers-1.png -------------------------------------------------------------------------------- /eggs/rofi/images/flowers-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/flowers-2.png -------------------------------------------------------------------------------- /eggs/rofi/images/flowers-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/flowers-3.png -------------------------------------------------------------------------------- /eggs/rofi/images/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/g.png -------------------------------------------------------------------------------- /eggs/rofi/images/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/gradient.png -------------------------------------------------------------------------------- /eggs/rofi/images/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/h.jpg -------------------------------------------------------------------------------- /eggs/rofi/images/i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/i.jpg -------------------------------------------------------------------------------- /eggs/rofi/images/j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/j.jpg -------------------------------------------------------------------------------- /eggs/rofi/images/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/paper.png -------------------------------------------------------------------------------- /eggs/rofi/images/user.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/images/user.jpeg -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-10.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-11.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-12.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-13.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-14.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-15.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-6.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-7.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-8.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-1/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-1/style-9.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-10.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-11.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-12.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-13.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-14.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-15.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-6.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-7.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-8.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-2/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-2/style-9.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-10.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-6.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-7.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-8.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-3/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-3/style-9.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-10.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-6.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-7.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-8.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-4/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-4/style-9.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-5/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-5/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-5/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-5/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-5/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-5/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-5/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-5/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-5/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-10.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-6.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-7.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-8.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-6/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-6/style-9.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-10.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-6.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-7.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-8.rasi -------------------------------------------------------------------------------- /eggs/rofi/launchers/type-7/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/launchers/type-7/style-9.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-1/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-1/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-10.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-6.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-7.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-8.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-2/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-2/style-9.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/shared/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/shared/confirm.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-3/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-3/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/shared/colors.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/shared/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/shared/confirm.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/shared/fonts.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-4/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-4/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-5/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-5/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-5/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-5/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-5/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-5/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-5/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-5/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-5/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-6/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-6/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-6/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-6/style-1.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-6/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-6/style-2.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-6/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-6/style-3.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-6/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-6/style-4.rasi -------------------------------------------------------------------------------- /eggs/rofi/powermenu/type-6/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/rofi/powermenu/type-6/style-5.rasi -------------------------------------------------------------------------------- /eggs/rofi/scripts/launcher_t1: -------------------------------------------------------------------------------- 1 | ../launchers/type-1/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/launcher_t2: -------------------------------------------------------------------------------- 1 | ../launchers/type-2/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/launcher_t3: -------------------------------------------------------------------------------- 1 | ../launchers/type-3/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/launcher_t4: -------------------------------------------------------------------------------- 1 | ../launchers/type-4/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/launcher_t5: -------------------------------------------------------------------------------- 1 | ../launchers/type-5/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/launcher_t6: -------------------------------------------------------------------------------- 1 | ../launchers/type-6/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/launcher_t7: -------------------------------------------------------------------------------- 1 | ../launchers/type-7/launcher.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/powermenu_t1: -------------------------------------------------------------------------------- 1 | ../powermenu/type-1/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/powermenu_t2: -------------------------------------------------------------------------------- 1 | ../powermenu/type-2/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/powermenu_t3: -------------------------------------------------------------------------------- 1 | ../powermenu/type-3/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/powermenu_t4: -------------------------------------------------------------------------------- 1 | ../powermenu/type-4/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/powermenu_t5: -------------------------------------------------------------------------------- 1 | ../powermenu/type-5/powermenu.sh -------------------------------------------------------------------------------- /eggs/rofi/scripts/powermenu_t6: -------------------------------------------------------------------------------- 1 | ../powermenu/type-6/powermenu.sh -------------------------------------------------------------------------------- /eggs/scripts/0x0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/0x0.sh -------------------------------------------------------------------------------- /eggs/scripts/THE_BEST_SCRIPT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/THE_BEST_SCRIPT.sh -------------------------------------------------------------------------------- /eggs/scripts/Theatron/.currently_playing: -------------------------------------------------------------------------------- 1 | 85484 2 | profaheil 3 | -------------------------------------------------------------------------------- /eggs/scripts/Theatron/bId.txt: -------------------------------------------------------------------------------- 1 | 136779932 2 | -------------------------------------------------------------------------------- /eggs/scripts/Theatron/clipit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/Theatron/clipit -------------------------------------------------------------------------------- /eggs/scripts/Theatron/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/Theatron/config -------------------------------------------------------------------------------- /eggs/scripts/Theatron/oauth: -------------------------------------------------------------------------------- 1 | zgwa0kdqqku8yowsgeneylvn9ia67z 2 | -------------------------------------------------------------------------------- /eggs/scripts/Theatron/pollingservice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/Theatron/pollingservice -------------------------------------------------------------------------------- /eggs/scripts/Theatron/simplewatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/Theatron/simplewatch -------------------------------------------------------------------------------- /eggs/scripts/audio-select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/audio-select.sh -------------------------------------------------------------------------------- /eggs/scripts/autocompile/plantuml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/autocompile/plantuml.sh -------------------------------------------------------------------------------- /eggs/scripts/autocompleteWords.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/autocompleteWords.sh -------------------------------------------------------------------------------- /eggs/scripts/battery_indicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/battery_indicator.sh -------------------------------------------------------------------------------- /eggs/scripts/bazecor.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo chmod 666 /dev/ttyACM0 4 | ~/Downloads/Bazecor-0.2.7.AppImage 5 | -------------------------------------------------------------------------------- /eggs/scripts/bookmarks/config_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/bookmarks/config_files -------------------------------------------------------------------------------- /eggs/scripts/bookmarks/other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/bookmarks/other -------------------------------------------------------------------------------- /eggs/scripts/bookmarks/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/bookmarks/ssh -------------------------------------------------------------------------------- /eggs/scripts/bookmarks/websites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/bookmarks/websites -------------------------------------------------------------------------------- /eggs/scripts/boshinyanyanyanfetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/boshinyanyanyanfetch.sh -------------------------------------------------------------------------------- /eggs/scripts/casefandeamon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/casefandeamon.py -------------------------------------------------------------------------------- /eggs/scripts/cheat: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | curl "cheat.sh/$*" 3 | -------------------------------------------------------------------------------- /eggs/scripts/company_distances/coordinates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/company_distances/coordinates.json -------------------------------------------------------------------------------- /eggs/scripts/company_distances/distances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/company_distances/distances.json -------------------------------------------------------------------------------- /eggs/scripts/company_distances/foo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/company_distances/foo.sh -------------------------------------------------------------------------------- /eggs/scripts/company_distances/get_coords.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/company_distances/get_coords.sh -------------------------------------------------------------------------------- /eggs/scripts/company_distances/get_distances.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/company_distances/get_distances.sh -------------------------------------------------------------------------------- /eggs/scripts/company_distances/links_sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/company_distances/links_sorted -------------------------------------------------------------------------------- /eggs/scripts/company_distances/sorted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/company_distances/sorted.json -------------------------------------------------------------------------------- /eggs/scripts/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/conf -------------------------------------------------------------------------------- /eggs/scripts/copy-pasta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/copy-pasta.sh -------------------------------------------------------------------------------- /eggs/scripts/fetch-running-pipelines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/fetch-running-pipelines.sh -------------------------------------------------------------------------------- /eggs/scripts/findWindowInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/findWindowInfo.sh -------------------------------------------------------------------------------- /eggs/scripts/fzfimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/fzfimg.sh -------------------------------------------------------------------------------- /eggs/scripts/fzfselect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/fzfselect.sh -------------------------------------------------------------------------------- /eggs/scripts/gpuinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/gpuinfo.sh -------------------------------------------------------------------------------- /eggs/scripts/hue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/hue.sh -------------------------------------------------------------------------------- /eggs/scripts/kak-attatch-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/kak-attatch-session -------------------------------------------------------------------------------- /eggs/scripts/lemonbar/like_polybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/lemonbar/like_polybar.sh -------------------------------------------------------------------------------- /eggs/scripts/lemonbar/right_side.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/lemonbar/right_side.sh -------------------------------------------------------------------------------- /eggs/scripts/lemonbar/xmonad_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/lemonbar/xmonad_info.sh -------------------------------------------------------------------------------- /eggs/scripts/makeHaskellProject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/makeHaskellProject.sh -------------------------------------------------------------------------------- /eggs/scripts/memeaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/memeaker -------------------------------------------------------------------------------- /eggs/scripts/mkFFGH.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/mkFFGH.sh -------------------------------------------------------------------------------- /eggs/scripts/nix_stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/nix_stash -------------------------------------------------------------------------------- /eggs/scripts/packageSizes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/packageSizes.sh -------------------------------------------------------------------------------- /eggs/scripts/picom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/picom -------------------------------------------------------------------------------- /eggs/scripts/pinLocker-Desktop.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/pinLocker-Desktop.jar -------------------------------------------------------------------------------- /eggs/scripts/preview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/preview.sh -------------------------------------------------------------------------------- /eggs/scripts/resizeGif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/resizeGif.sh -------------------------------------------------------------------------------- /eggs/scripts/rofi-open.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/rofi-open.sh -------------------------------------------------------------------------------- /eggs/scripts/rofi-scripts/links.md: -------------------------------------------------------------------------------- 1 | https://github.com/adi1090x/rofi 2 | -------------------------------------------------------------------------------- /eggs/scripts/rofi-scripts/open-git-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/rofi-scripts/open-git-project.sh -------------------------------------------------------------------------------- /eggs/scripts/runXephyr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/runXephyr.sh -------------------------------------------------------------------------------- /eggs/scripts/screengif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/screengif.sh -------------------------------------------------------------------------------- /eggs/scripts/screenrecorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/screenrecorder.sh -------------------------------------------------------------------------------- /eggs/scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/screenshot.sh -------------------------------------------------------------------------------- /eggs/scripts/screenvideo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/screenvideo.sh -------------------------------------------------------------------------------- /eggs/scripts/scrotshadow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/scrotshadow.sh -------------------------------------------------------------------------------- /eggs/scripts/swallow_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/swallow_app.sh -------------------------------------------------------------------------------- /eggs/scripts/timer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/timer.sh -------------------------------------------------------------------------------- /eggs/scripts/workspaces/swlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/workspaces/swlab.sh -------------------------------------------------------------------------------- /eggs/scripts/wpms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/scripts/wpms.sh -------------------------------------------------------------------------------- /eggs/sioyek/.config/sioyek/keys_user.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/sioyek/.config/sioyek/keys_user.config -------------------------------------------------------------------------------- /eggs/sioyek/.config/sioyek/prefs_user.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/sioyek/.config/sioyek/prefs_user.config -------------------------------------------------------------------------------- /eggs/starship/.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/starship/.config/starship.toml -------------------------------------------------------------------------------- /eggs/sway/.config/sway/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/sway/.config/sway/config -------------------------------------------------------------------------------- /eggs/sway/.config/sway/config.d/swaysome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/sway/.config/sway/config.d/swaysome -------------------------------------------------------------------------------- /eggs/sway/.config/sway/import-gsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/sway/.config/sway/import-gsettings -------------------------------------------------------------------------------- /eggs/sway/.config/sway/swaysome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/sway/.config/sway/swaysome.conf -------------------------------------------------------------------------------- /eggs/tmux/.config/tmux/.gitignore: -------------------------------------------------------------------------------- 1 | plugins 2 | -------------------------------------------------------------------------------- /eggs/tmux/.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/tmux/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /eggs/wallpapers/elk_gasstation_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/wallpapers/elk_gasstation_dark.jpg -------------------------------------------------------------------------------- /eggs/wallpapers/elk_gasstation_lights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/wallpapers/elk_gasstation_lights.jpg -------------------------------------------------------------------------------- /eggs/wallpapers/luxembourg-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/wallpapers/luxembourg-bridge.jpg -------------------------------------------------------------------------------- /eggs/wallpapers/luxembourg-villa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/wallpapers/luxembourg-villa.jpg -------------------------------------------------------------------------------- /eggs/waybar/.config/waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/waybar/.config/waybar/config.jsonc -------------------------------------------------------------------------------- /eggs/waybar/.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/waybar/.config/waybar/style.css -------------------------------------------------------------------------------- /eggs/zathura/.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zathura/.config/zathura/zathurarc -------------------------------------------------------------------------------- /eggs/zed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zed/.gitignore -------------------------------------------------------------------------------- /eggs/zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zed/keymap.json -------------------------------------------------------------------------------- /eggs/zed/keymap_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zed/keymap_backup.json -------------------------------------------------------------------------------- /eggs/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zed/settings.json -------------------------------------------------------------------------------- /eggs/zed/settings_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zed/settings_backup.json -------------------------------------------------------------------------------- /eggs/zed/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zed/tasks.json -------------------------------------------------------------------------------- /eggs/zed/themes/phine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zed/themes/phine.json -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/.gitignore -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/.zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/.zlogin -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/.zprofile -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/.zshrc -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/abbreviations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/abbreviations -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/fzf-tab.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/fzf-tab.zsh -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/keybinds.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/keybinds.zsh -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/prompt.zsh -------------------------------------------------------------------------------- /eggs/zsh/.config/zsh/utils.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.config/zsh/utils.zsh -------------------------------------------------------------------------------- /eggs/zsh/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/eggs/zsh/.zshenv -------------------------------------------------------------------------------- /yolk.rhai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkowar/dots-of-war/HEAD/yolk.rhai --------------------------------------------------------------------------------