Move dconf to .config

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2018-12-31 00:42:02 +01:00
parent d5cb44903c
commit edeb50e517
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
3 changed files with 7 additions and 5 deletions

View file

@ -16,7 +16,12 @@ The installation is pretty straightforward using a couple of installation script
## Contents ## Contents
The list of my used arch packages are found inside the files in `packages`. The files are numbered in the order they are installed, so packages inside `packages.list` are installed first and then packages in `packages2.list` are installed. The list of my used arch packages are found inside the files in `packages`. The files are numbered in the order they are installed, so packages inside `packages.list` are installed first and then packages in `packages2.list` are installed.
The main content of this repository can be found in the `system` folder. It contains all configurations files, directories and script that are get symlinked by my install script. The main content of this repository can be found in the `system` folder. It
contains all configurations files, directories and script that are get symlinked
by my install script.
### `.config/dconf`
This folder contains my configurations that are stored in dconf by applications. These are getting loaded on boot in `.bash_profile`.
### `.config/dunst` ### `.config/dunst`
This folder contains my configuration for the [dunst](https://dunst-project.org) notification daemon. This folder contains my configuration for the [dunst](https://dunst-project.org) notification daemon.
@ -54,9 +59,6 @@ This file contains my QT4 configuration.
### `bin` ### `bin`
This folder contains a bunch of scripts that I use. Some of them are used by Polybar or i3 and others are used directly and some like `utils.sh` contain functions that I use in other scripts. This folder contains a bunch of scripts that I use. Some of them are used by Polybar or i3 and others are used directly and some like `utils.sh` contain functions that I use in other scripts.
### `dconf`
This folder contains my configurations that are stored in dconf by applications. These are getting loaded on boot in `.bash_profile`.
### `.aliases` ### `.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`. 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`.

View file

@ -33,6 +33,7 @@ LINKED_FILES_HOME=(
".bash_profile" ".bash_profile"
".bashrc" ".bashrc"
".config/compton.conf" ".config/compton.conf"
".config/dconf"
".config/dunst" ".config/dunst"
".config/gtk-3.0" ".config/gtk-3.0"
".config/htop" ".config/htop"
@ -55,7 +56,6 @@ LINKED_FILES_HOME=(
".Xresources" ".Xresources"
".xsetup" ".xsetup"
"bin" "bin"
"dconf"
) )
# Array of systemd services which should be enabled # Array of systemd services which should be enabled