├── .assets ├── SETUP.md ├── dotfiles.png ├── misc │ ├── kvm.sh │ ├── nvidia.sh │ ├── printer.sh │ ├── spotify.sh │ ├── time.sh │ └── wine.sh ├── pkg_lists │ ├── aur_pkg_list │ └── pkg_list ├── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png └── wallpapers │ ├── archlinux.png │ ├── bright_mountains.jpg │ ├── city.jpg │ ├── cycle_anime.jpeg │ ├── cycle_nord.jpg │ ├── ign_beyondHillAndDale.jpg │ ├── kimi_no_nawa.jpg │ ├── minimal_nord.png │ ├── nord_mountains.png │ ├── pacman.png │ ├── paint_nord.jpg │ ├── pixar_logo_nord.jpg │ ├── spiderman-falling.png │ ├── underwater_cabin.png │ ├── warrior_nord.jpg │ ├── watchtower_nord.png │ └── wild_nord.png ├── .config ├── alacritty │ └── alacritty.yml ├── btop │ └── btop.conf ├── foot │ └── foot.ini ├── gtk-3.0 │ └── settings.ini ├── mako │ └── config ├── neofetch │ └── config.conf ├── nvim │ ├── init.lua │ ├── lsp.sh │ └── lua │ │ ├── plugins │ │ ├── init.lua │ │ └── settings │ │ │ ├── autopairs.lua │ │ │ ├── ibl.lua │ │ │ ├── init.lua │ │ │ ├── lualine.lua │ │ │ ├── nvimtree.lua │ │ │ ├── others.lua │ │ │ ├── presence.lua │ │ │ └── treesitter.lua │ │ └── rv178 │ │ ├── binds.lua │ │ ├── init.lua │ │ ├── lsp.lua │ │ ├── options.lua │ │ └── packer.lua ├── ranger │ ├── colorschemes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.opt-1.pyc │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ ├── default.cpython-310.opt-1.pyc │ │ │ └── default.cpython-39.opt-1.pyc │ │ └── default.py │ ├── commands.py │ ├── plugins │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-310.opt-1.pyc │ │ │ └── __init__.cpython-39.opt-1.pyc │ ├── rc.conf │ ├── rifle.conf │ └── scope.sh ├── river │ ├── init │ ├── process.sh │ └── scripts │ │ ├── ss │ │ └── yt ├── rofi │ ├── config.rasi │ └── themes │ │ ├── nord.rasi │ │ ├── rounded-common.rasi │ │ ├── rounded-gray-dark.rasi │ │ └── rounded-red-dark.rasi ├── scripts │ ├── colors │ │ ├── alpha │ │ ├── arch │ │ ├── bars │ │ ├── blocks1 │ │ ├── blocks2 │ │ ├── bloks │ │ ├── colorbars │ │ ├── colortest │ │ ├── colortest-slim │ │ ├── colorview │ │ ├── colorwheel │ │ ├── crunch │ │ ├── crunchbang │ │ ├── crunchbang-mini │ │ ├── darthvader │ │ ├── dna │ │ ├── dotx │ │ ├── elfman │ │ ├── faces │ │ ├── fade │ │ ├── ghosts │ │ ├── guns │ │ ├── hex │ │ ├── hex-block │ │ ├── illumina │ │ ├── jangofett │ │ ├── monster │ │ ├── mouseface │ │ ├── mouseface2 │ │ ├── pacman │ │ ├── panes │ │ ├── pinguco │ │ ├── pukeskull │ │ ├── rails │ │ ├── rally-x │ │ ├── rupees │ │ ├── space-invaders │ │ ├── spectrum │ │ ├── square │ │ ├── tanks │ │ ├── thebat │ │ ├── thebat2 │ │ ├── tiefighter1 │ │ ├── tiefighter1-no-invo │ │ ├── tiefighter1row │ │ ├── tiefighter2 │ │ └── zwaves │ └── updates.sh ├── swappy │ └── config ├── swaylock │ └── config ├── tmux │ └── tmux.conf └── waybar │ ├── config │ ├── modules │ ├── cpu.sh │ ├── datetime.sh │ └── powermenu.sh │ ├── style-old.css │ └── style.css ├── .gitignore ├── .home ├── .bin │ ├── latest │ ├── mp4togif │ ├── op │ └── woomer ├── .gitmessage ├── .zprofile └── .zshrc ├── 01-setup-arch.sh ├── 02-configs.sh └── README.md /.assets/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/SETUP.md -------------------------------------------------------------------------------- /.assets/dotfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/dotfiles.png -------------------------------------------------------------------------------- /.assets/misc/kvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/misc/kvm.sh -------------------------------------------------------------------------------- /.assets/misc/nvidia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/misc/nvidia.sh -------------------------------------------------------------------------------- /.assets/misc/printer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/misc/printer.sh -------------------------------------------------------------------------------- /.assets/misc/spotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/misc/spotify.sh -------------------------------------------------------------------------------- /.assets/misc/time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/misc/time.sh -------------------------------------------------------------------------------- /.assets/misc/wine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/misc/wine.sh -------------------------------------------------------------------------------- /.assets/pkg_lists/aur_pkg_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/pkg_lists/aur_pkg_list -------------------------------------------------------------------------------- /.assets/pkg_lists/pkg_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/pkg_lists/pkg_list -------------------------------------------------------------------------------- /.assets/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/screenshots/1.png -------------------------------------------------------------------------------- /.assets/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/screenshots/2.png -------------------------------------------------------------------------------- /.assets/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/screenshots/3.png -------------------------------------------------------------------------------- /.assets/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/screenshots/4.png -------------------------------------------------------------------------------- /.assets/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/screenshots/5.png -------------------------------------------------------------------------------- /.assets/wallpapers/archlinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/archlinux.png -------------------------------------------------------------------------------- /.assets/wallpapers/bright_mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/bright_mountains.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/city.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/cycle_anime.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/cycle_anime.jpeg -------------------------------------------------------------------------------- /.assets/wallpapers/cycle_nord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/cycle_nord.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/ign_beyondHillAndDale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/ign_beyondHillAndDale.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/kimi_no_nawa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/kimi_no_nawa.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/minimal_nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/minimal_nord.png -------------------------------------------------------------------------------- /.assets/wallpapers/nord_mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/nord_mountains.png -------------------------------------------------------------------------------- /.assets/wallpapers/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/pacman.png -------------------------------------------------------------------------------- /.assets/wallpapers/paint_nord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/paint_nord.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/pixar_logo_nord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/pixar_logo_nord.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/spiderman-falling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/spiderman-falling.png -------------------------------------------------------------------------------- /.assets/wallpapers/underwater_cabin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/underwater_cabin.png -------------------------------------------------------------------------------- /.assets/wallpapers/warrior_nord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/warrior_nord.jpg -------------------------------------------------------------------------------- /.assets/wallpapers/watchtower_nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/watchtower_nord.png -------------------------------------------------------------------------------- /.assets/wallpapers/wild_nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.assets/wallpapers/wild_nord.png -------------------------------------------------------------------------------- /.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /.config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/btop/btop.conf -------------------------------------------------------------------------------- /.config/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/foot/foot.ini -------------------------------------------------------------------------------- /.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /.config/mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/mako/config -------------------------------------------------------------------------------- /.config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/neofetch/config.conf -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/lsp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lsp.sh -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/plugins/init.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/autopairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/plugins/settings/autopairs.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/ibl.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/init.lua: -------------------------------------------------------------------------------- 1 | require("plugins.settings.others") 2 | -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/plugins/settings/lualine.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/nvimtree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/plugins/settings/nvimtree.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/others.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/plugins/settings/others.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/presence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/plugins/settings/presence.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins/settings/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/plugins/settings/treesitter.lua -------------------------------------------------------------------------------- /.config/nvim/lua/rv178/binds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/rv178/binds.lua -------------------------------------------------------------------------------- /.config/nvim/lua/rv178/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/rv178/init.lua -------------------------------------------------------------------------------- /.config/nvim/lua/rv178/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/rv178/lsp.lua -------------------------------------------------------------------------------- /.config/nvim/lua/rv178/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/rv178/options.lua -------------------------------------------------------------------------------- /.config/nvim/lua/rv178/packer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/nvim/lua/rv178/packer.lua -------------------------------------------------------------------------------- /.config/ranger/colorschemes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/ranger/colorschemes/__pycache__/__init__.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/colorschemes/__pycache__/__init__.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/colorschemes/__pycache__/__init__.cpython-39.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/colorschemes/__pycache__/__init__.cpython-39.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/colorschemes/__pycache__/default.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/colorschemes/__pycache__/default.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/colorschemes/__pycache__/default.cpython-39.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/colorschemes/__pycache__/default.cpython-39.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/colorschemes/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/colorschemes/default.py -------------------------------------------------------------------------------- /.config/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/commands.py -------------------------------------------------------------------------------- /.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/plugins/__pycache__/__init__.cpython-39.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/plugins/__pycache__/__init__.cpython-39.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/rc.conf -------------------------------------------------------------------------------- /.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/ranger/scope.sh -------------------------------------------------------------------------------- /.config/river/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/river/init -------------------------------------------------------------------------------- /.config/river/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/river/process.sh -------------------------------------------------------------------------------- /.config/river/scripts/ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/river/scripts/ss -------------------------------------------------------------------------------- /.config/river/scripts/yt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/river/scripts/yt -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/rofi/config.rasi -------------------------------------------------------------------------------- /.config/rofi/themes/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/rofi/themes/nord.rasi -------------------------------------------------------------------------------- /.config/rofi/themes/rounded-common.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/rofi/themes/rounded-common.rasi -------------------------------------------------------------------------------- /.config/rofi/themes/rounded-gray-dark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/rofi/themes/rounded-gray-dark.rasi -------------------------------------------------------------------------------- /.config/rofi/themes/rounded-red-dark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/rofi/themes/rounded-red-dark.rasi -------------------------------------------------------------------------------- /.config/scripts/colors/alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/alpha -------------------------------------------------------------------------------- /.config/scripts/colors/arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/arch -------------------------------------------------------------------------------- /.config/scripts/colors/bars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/bars -------------------------------------------------------------------------------- /.config/scripts/colors/blocks1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/blocks1 -------------------------------------------------------------------------------- /.config/scripts/colors/blocks2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/blocks2 -------------------------------------------------------------------------------- /.config/scripts/colors/bloks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/bloks -------------------------------------------------------------------------------- /.config/scripts/colors/colorbars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/colorbars -------------------------------------------------------------------------------- /.config/scripts/colors/colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/colortest -------------------------------------------------------------------------------- /.config/scripts/colors/colortest-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/colortest-slim -------------------------------------------------------------------------------- /.config/scripts/colors/colorview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/colorview -------------------------------------------------------------------------------- /.config/scripts/colors/colorwheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/colorwheel -------------------------------------------------------------------------------- /.config/scripts/colors/crunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/crunch -------------------------------------------------------------------------------- /.config/scripts/colors/crunchbang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/crunchbang -------------------------------------------------------------------------------- /.config/scripts/colors/crunchbang-mini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/crunchbang-mini -------------------------------------------------------------------------------- /.config/scripts/colors/darthvader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/darthvader -------------------------------------------------------------------------------- /.config/scripts/colors/dna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/dna -------------------------------------------------------------------------------- /.config/scripts/colors/dotx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/dotx -------------------------------------------------------------------------------- /.config/scripts/colors/elfman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/elfman -------------------------------------------------------------------------------- /.config/scripts/colors/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/faces -------------------------------------------------------------------------------- /.config/scripts/colors/fade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/fade -------------------------------------------------------------------------------- /.config/scripts/colors/ghosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/ghosts -------------------------------------------------------------------------------- /.config/scripts/colors/guns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/guns -------------------------------------------------------------------------------- /.config/scripts/colors/hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/hex -------------------------------------------------------------------------------- /.config/scripts/colors/hex-block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/hex-block -------------------------------------------------------------------------------- /.config/scripts/colors/illumina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/illumina -------------------------------------------------------------------------------- /.config/scripts/colors/jangofett: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/jangofett -------------------------------------------------------------------------------- /.config/scripts/colors/monster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/monster -------------------------------------------------------------------------------- /.config/scripts/colors/mouseface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/mouseface -------------------------------------------------------------------------------- /.config/scripts/colors/mouseface2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/mouseface2 -------------------------------------------------------------------------------- /.config/scripts/colors/pacman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/pacman -------------------------------------------------------------------------------- /.config/scripts/colors/panes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/panes -------------------------------------------------------------------------------- /.config/scripts/colors/pinguco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/pinguco -------------------------------------------------------------------------------- /.config/scripts/colors/pukeskull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/pukeskull -------------------------------------------------------------------------------- /.config/scripts/colors/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/rails -------------------------------------------------------------------------------- /.config/scripts/colors/rally-x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/rally-x -------------------------------------------------------------------------------- /.config/scripts/colors/rupees: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/rupees -------------------------------------------------------------------------------- /.config/scripts/colors/space-invaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/space-invaders -------------------------------------------------------------------------------- /.config/scripts/colors/spectrum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/spectrum -------------------------------------------------------------------------------- /.config/scripts/colors/square: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/square -------------------------------------------------------------------------------- /.config/scripts/colors/tanks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/tanks -------------------------------------------------------------------------------- /.config/scripts/colors/thebat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/thebat -------------------------------------------------------------------------------- /.config/scripts/colors/thebat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/thebat2 -------------------------------------------------------------------------------- /.config/scripts/colors/tiefighter1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/tiefighter1 -------------------------------------------------------------------------------- /.config/scripts/colors/tiefighter1-no-invo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/tiefighter1-no-invo -------------------------------------------------------------------------------- /.config/scripts/colors/tiefighter1row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/tiefighter1row -------------------------------------------------------------------------------- /.config/scripts/colors/tiefighter2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/tiefighter2 -------------------------------------------------------------------------------- /.config/scripts/colors/zwaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/colors/zwaves -------------------------------------------------------------------------------- /.config/scripts/updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/scripts/updates.sh -------------------------------------------------------------------------------- /.config/swappy/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/swappy/config -------------------------------------------------------------------------------- /.config/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/swaylock/config -------------------------------------------------------------------------------- /.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/waybar/config -------------------------------------------------------------------------------- /.config/waybar/modules/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/waybar/modules/cpu.sh -------------------------------------------------------------------------------- /.config/waybar/modules/datetime.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo " $(date '+%H:%M')" 3 | -------------------------------------------------------------------------------- /.config/waybar/modules/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/waybar/modules/powermenu.sh -------------------------------------------------------------------------------- /.config/waybar/style-old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/waybar/style-old.css -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.home/.bin/latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.home/.bin/latest -------------------------------------------------------------------------------- /.home/.bin/mp4togif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.home/.bin/mp4togif -------------------------------------------------------------------------------- /.home/.bin/op: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.home/.bin/op -------------------------------------------------------------------------------- /.home/.bin/woomer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.home/.bin/woomer -------------------------------------------------------------------------------- /.home/.gitmessage: -------------------------------------------------------------------------------- 1 | [chore] 2 | -------------------------------------------------------------------------------- /.home/.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.home/.zprofile -------------------------------------------------------------------------------- /.home/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/.home/.zshrc -------------------------------------------------------------------------------- /01-setup-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/01-setup-arch.sh -------------------------------------------------------------------------------- /02-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/02-configs.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rv178/.dotfiles/HEAD/README.md --------------------------------------------------------------------------------