├── .bashrc ├── .config ├── alacritty │ └── alacritty.yml └── bashrc │ ├── .bashrc_prompt │ ├── .bashrc_shortcuts │ ├── .bashrc_startup │ └── LS_COLORS ├── LICENSE ├── README.md └── docs └── static ├── Fullscreen-Git.png ├── Just_Desktop.png ├── Ssh-Failed_Command.png └── Welcome-Splash_Screen.png /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/.bashrc -------------------------------------------------------------------------------- /.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /.config/bashrc/.bashrc_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/.config/bashrc/.bashrc_prompt -------------------------------------------------------------------------------- /.config/bashrc/.bashrc_shortcuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/.config/bashrc/.bashrc_shortcuts -------------------------------------------------------------------------------- /.config/bashrc/.bashrc_startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/.config/bashrc/.bashrc_startup -------------------------------------------------------------------------------- /.config/bashrc/LS_COLORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/.config/bashrc/LS_COLORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/README.md -------------------------------------------------------------------------------- /docs/static/Fullscreen-Git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/docs/static/Fullscreen-Git.png -------------------------------------------------------------------------------- /docs/static/Just_Desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/docs/static/Just_Desktop.png -------------------------------------------------------------------------------- /docs/static/Ssh-Failed_Command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/docs/static/Ssh-Failed_Command.png -------------------------------------------------------------------------------- /docs/static/Welcome-Splash_Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanimos/custom_bashrc/HEAD/docs/static/Welcome-Splash_Screen.png --------------------------------------------------------------------------------