├── .config ├── alacritty │ └── alacritty.toml ├── bat │ └── config ├── hypr │ ├── hypridle.conf │ ├── hyprland.conf │ └── hyprlock.conf ├── lazygit │ └── config.yml ├── ranger │ └── rc.conf ├── starship.toml ├── swaync │ ├── config.json │ └── style.css ├── tmux │ └── tmux.conf ├── waybar │ ├── config │ └── style.css └── zathura │ └── zathurarc ├── .gitignore ├── .stow-local-ignore ├── .zshrc ├── README.md ├── install.sh ├── screenshot.png └── wp.png /.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/alacritty/alacritty.toml -------------------------------------------------------------------------------- /.config/bat/config: -------------------------------------------------------------------------------- 1 | --theme="gruvbox-dark" 2 | -------------------------------------------------------------------------------- /.config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/hypr/hypridle.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /.config/lazygit/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/lazygit/config.yml -------------------------------------------------------------------------------- /.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/ranger/rc.conf -------------------------------------------------------------------------------- /.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/starship.toml -------------------------------------------------------------------------------- /.config/swaync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/swaync/config.json -------------------------------------------------------------------------------- /.config/swaync/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/swaync/style.css -------------------------------------------------------------------------------- /.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/waybar/config -------------------------------------------------------------------------------- /.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/waybar/style.css -------------------------------------------------------------------------------- /.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.config/zathura/zathurarc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # .stow-local-ignore 2 | .config/tmux/plugins 3 | -------------------------------------------------------------------------------- /.stow-local-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.stow-local-ignore -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/screenshot.png -------------------------------------------------------------------------------- /wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/arch-dotfiles/HEAD/wp.png --------------------------------------------------------------------------------