├── .config ├── alacritty │ └── alacritty.yml ├── bspwm │ └── bspwmrc ├── i3 │ └── config ├── neofetch │ └── README.md ├── nvim │ └── init.vim ├── polybar │ ├── colors.ini │ ├── config.ini │ ├── i3 │ │ ├── colors.ini │ │ ├── config.ini │ │ └── launch.sh │ └── launch.sh ├── sxhkd │ └── sxhkdrc └── zsh │ ├── alias │ └── p10k ├── .librewolf └── userChrome.css ├── .zshrc ├── README.md ├── etc └── pacman.d │ └── mirrorlist ├── extras └── cstimer_20220107_191408.txt └── install ├── aurlist └── installdots.sh /.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /.config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/bspwm/bspwmrc -------------------------------------------------------------------------------- /.config/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/i3/config -------------------------------------------------------------------------------- /.config/neofetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/neofetch/README.md -------------------------------------------------------------------------------- /.config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/nvim/init.vim -------------------------------------------------------------------------------- /.config/polybar/colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/polybar/colors.ini -------------------------------------------------------------------------------- /.config/polybar/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/polybar/config.ini -------------------------------------------------------------------------------- /.config/polybar/i3/colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/polybar/i3/colors.ini -------------------------------------------------------------------------------- /.config/polybar/i3/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/polybar/i3/config.ini -------------------------------------------------------------------------------- /.config/polybar/i3/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/polybar/i3/launch.sh -------------------------------------------------------------------------------- /.config/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/polybar/launch.sh -------------------------------------------------------------------------------- /.config/sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /.config/zsh/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/zsh/alias -------------------------------------------------------------------------------- /.config/zsh/p10k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.config/zsh/p10k -------------------------------------------------------------------------------- /.librewolf/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.librewolf/userChrome.css -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /etc/pacman.d/mirrorlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/etc/pacman.d/mirrorlist -------------------------------------------------------------------------------- /extras/cstimer_20220107_191408.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/extras/cstimer_20220107_191408.txt -------------------------------------------------------------------------------- /install/aurlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/install/aurlist -------------------------------------------------------------------------------- /install/installdots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chick2D/dotfiles/HEAD/install/installdots.sh --------------------------------------------------------------------------------