Update README.md

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2018-12-14 16:22:51 +01:00
parent cf0215f422
commit 5e08d969eb
8 changed files with 52 additions and 16 deletions

View file

@ -42,3 +42,47 @@ This folder contains a bunch of scripts that I use. Some of them are used by Pol
### `dconf`
This folder contains my configurations that are stored in dconf by applications. These are getting loaded on boot in `.bash_profile`.
### `.aliases`
This file contains my aliases that I use on a regular basis. I also use it to replace some standard commands wiht alternatives, like using `exa` instead of `ls`.
### `.bash_logout`
This file contains code that gets executed when the shell is existed.
### `.bash_profile`
This file contains code that gets executed when a login shell is started.
### `.bashrc`
This file contains code that gets executed when a new shell is started.
### `.dircolors`
This file contains my used color scheme for `ls`.
### `.env`
This file contains my used environment variables.
### `.gitconfig`
This file contains my git configuration.
### `.gtkrc-2.0`
This file contains the GTK 2 configuration. This file is created by LXAppearance just like the GTK 3 configuration. I don't edit things in this file directly.
### `.gtkrc-2.0.mine`
This file is used for my custom GTK 2 configuration. This file gets included in `.gtkrc-2.0`.
### `.keyleds`
This file contains the configuration for my keyboard backlight.
### `.vimrc`
This file contains my [vim](https://www.vim.org/) configuration.
### `.xinitrc`
This file is called when a new x-server is started manually. It loads the contents of `.xsetup` and then starts i3.
### `.xprofile`
This file is used by LightDM to load my normal `.bash_profile` file and `.xsetup`.
### `.Xresources`
This file currently contains my color configuration for [Rofi](https://github.com/DaveDavenport/rofi).
### `.xsetup`
This file contains code that I need on start. That's why it's sourced by both `.xinitrc` and `.xprofile`. This way I only need to write this code once.