Move more configurations to .config
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
e2594c49f6
commit
e0e3ad0135
5 changed files with 15 additions and 8 deletions
12
README.md
12
README.md
|
@ -42,6 +42,12 @@ This folder contains my configuration for the [dunst](https://dunst-project.org)
|
||||||
### `.config/git`
|
### `.config/git`
|
||||||
This folder contains my git configuration.
|
This folder contains my git configuration.
|
||||||
|
|
||||||
|
### `.config/gtk-2.0`
|
||||||
|
This folder contains my GTK 2.0 configuration. I don't edit this configuration
|
||||||
|
directly but use
|
||||||
|
[LXAppearance](https://www.archlinux.org/packages/community/x86_64/lxappearance/)
|
||||||
|
for configuring.
|
||||||
|
|
||||||
### `.config/gtk-3.0`
|
### `.config/gtk-3.0`
|
||||||
This folder contains my GTK 3.0 configuration. I don't edit this configuration directly but use [LXAppearance](https://www.archlinux.org/packages/community/x86_64/lxappearance/) for configuring.
|
This folder contains my GTK 3.0 configuration. I don't edit this configuration directly but use [LXAppearance](https://www.archlinux.org/packages/community/x86_64/lxappearance/) for configuring.
|
||||||
|
|
||||||
|
@ -111,12 +117,6 @@ This file contains my used color scheme for `ls`.
|
||||||
### `.env`
|
### `.env`
|
||||||
This file contains my used environment variables.
|
This file contains my used environment variables.
|
||||||
|
|
||||||
### `.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`
|
### `.keyleds`
|
||||||
This file contains the configuration for my keyboard backlight.
|
This file contains the configuration for my keyboard backlight.
|
||||||
|
|
||||||
|
|
|
@ -31,4 +31,7 @@ alias pj="cd ~/Projects"
|
||||||
alias e="code"
|
alias e="code"
|
||||||
|
|
||||||
# Alias for wget to use XDG directories
|
# Alias for wget to use XDG directories
|
||||||
alias wget="wget --hsts-file=\"$XDG_CACHE_HOME/wget-hsts\""
|
alias wget="wget --hsts-file=\"${XDG_CACHE_HOME}/wget-hsts\""
|
||||||
|
|
||||||
|
# Alias for svn to use XDG directories
|
||||||
|
alias svn="svn --config-dir \"${XDG_CONFIG_HOME}/subversion\""
|
|
@ -1,7 +1,7 @@
|
||||||
# DO NOT EDIT! This file will be overwritten by LXAppearance.
|
# DO NOT EDIT! This file will be overwritten by LXAppearance.
|
||||||
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
|
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
|
||||||
|
|
||||||
include "/home/severin/.gtkrc-2.0.mine"
|
include "/home/severin/.config/gtk-2.0/gtkrc.mine"
|
||||||
gtk-theme-name="Adapta-Nokto"
|
gtk-theme-name="Adapta-Nokto"
|
||||||
gtk-icon-theme-name="Paper-Mono-Dark"
|
gtk-icon-theme-name="Paper-Mono-Dark"
|
||||||
gtk-font-name="Noto Sans 11"
|
gtk-font-name="Noto Sans 11"
|
|
@ -25,6 +25,10 @@ export WGETRC="${XDG_CONFIG_HOME}/wget/wgetrc"
|
||||||
export VIMINIT=":source ${XDG_CONFIG_HOME}/vim/vimrc"
|
export VIMINIT=":source ${XDG_CONFIG_HOME}/vim/vimrc"
|
||||||
export CARGO_HOME="${XDG_DATA_HOME}/cargo"
|
export CARGO_HOME="${XDG_DATA_HOME}/cargo"
|
||||||
export RUSTUP_HOME="${XDG_DATA_HOME}/rustup"
|
export RUSTUP_HOME="${XDG_DATA_HOME}/rustup"
|
||||||
|
export PYLINTHOME="${XDG_CACHE_HOME}/pylint"
|
||||||
|
export DOCKER_CONFIG="${XDG_CONFIG_HOME}/docker"
|
||||||
|
export GTK_RC_FILES="${XDG_CONFIG_HOME}/gtk-1.0/gtkrc"
|
||||||
|
export GTK2_RC_FILES="${XDG_CONFIG_HOME}/gtk-2.0/gtkrc"
|
||||||
|
|
||||||
# Bash
|
# Bash
|
||||||
export HISTCONTROL=ignoreboth
|
export HISTCONTROL=ignoreboth
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue