├── .gitignore ├── README.md ├── assets └── low-res.jpg ├── install.sh ├── linux ├── .config │ └── neofetch │ │ └── config.conf ├── backup.sh ├── config.conf ├── configs │ ├── .alacritty.toml │ ├── .gitconfig │ ├── .vimrc │ ├── .zshrc │ └── fastfetch │ │ ├── alt.png │ │ └── config.jsonc ├── flatpak.sh ├── home.conf ├── main.sh ├── restore.sh └── zsh.sh ├── macos ├── MacReadme.md ├── brew │ ├── apps.sh │ ├── nvm.sh │ └── rust.sh ├── configs │ ├── .gitconfig │ └── .zshrc ├── main.sh ├── manual-config │ └── terminal-colors │ │ ├── iterm │ │ ├── One Dark.itermcolors │ │ └── One Light.itermcolors │ │ └── terminal │ │ ├── One Dark.terminal │ │ └── One Light.terminal └── zsh.sh └── scripts ├── brew.sh └── install-arch.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /assets/low-res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/assets/low-res.jpg -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /linux/.config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/.config/neofetch/config.conf -------------------------------------------------------------------------------- /linux/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/backup.sh -------------------------------------------------------------------------------- /linux/config.conf: -------------------------------------------------------------------------------- 1 | alacritty 2 | conky 3 | gwe 4 | neofetch 5 | -------------------------------------------------------------------------------- /linux/configs/.alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/configs/.alacritty.toml -------------------------------------------------------------------------------- /linux/configs/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/configs/.gitconfig -------------------------------------------------------------------------------- /linux/configs/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/configs/.vimrc -------------------------------------------------------------------------------- /linux/configs/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/configs/.zshrc -------------------------------------------------------------------------------- /linux/configs/fastfetch/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/configs/fastfetch/alt.png -------------------------------------------------------------------------------- /linux/configs/fastfetch/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/configs/fastfetch/config.jsonc -------------------------------------------------------------------------------- /linux/flatpak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/flatpak.sh -------------------------------------------------------------------------------- /linux/home.conf: -------------------------------------------------------------------------------- 1 | .zshrc 2 | .gitconfig 3 | -------------------------------------------------------------------------------- /linux/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/main.sh -------------------------------------------------------------------------------- /linux/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/restore.sh -------------------------------------------------------------------------------- /linux/zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/linux/zsh.sh -------------------------------------------------------------------------------- /macos/MacReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/MacReadme.md -------------------------------------------------------------------------------- /macos/brew/apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/brew/apps.sh -------------------------------------------------------------------------------- /macos/brew/nvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/brew/nvm.sh -------------------------------------------------------------------------------- /macos/brew/rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/brew/rust.sh -------------------------------------------------------------------------------- /macos/configs/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/configs/.gitconfig -------------------------------------------------------------------------------- /macos/configs/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/configs/.zshrc -------------------------------------------------------------------------------- /macos/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/main.sh -------------------------------------------------------------------------------- /macos/manual-config/terminal-colors/iterm/One Dark.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/manual-config/terminal-colors/iterm/One Dark.itermcolors -------------------------------------------------------------------------------- /macos/manual-config/terminal-colors/iterm/One Light.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/manual-config/terminal-colors/iterm/One Light.itermcolors -------------------------------------------------------------------------------- /macos/manual-config/terminal-colors/terminal/One Dark.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/manual-config/terminal-colors/terminal/One Dark.terminal -------------------------------------------------------------------------------- /macos/manual-config/terminal-colors/terminal/One Light.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/manual-config/terminal-colors/terminal/One Light.terminal -------------------------------------------------------------------------------- /macos/zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/macos/zsh.sh -------------------------------------------------------------------------------- /scripts/brew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/scripts/brew.sh -------------------------------------------------------------------------------- /scripts/install-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/dotfiles/HEAD/scripts/install-arch.sh --------------------------------------------------------------------------------