From edeb50e517a97372c24d9129d01f38cf6652e208 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Mon, 31 Dec 2018 00:42:02 +0100 Subject: [PATCH] Move dconf to .config Signed-off-by: Severin Kaderli --- README.md | 10 ++++++---- install.sh | 2 +- system/{ => .config}/dconf/root.conf | 0 3 files changed, 7 insertions(+), 5 deletions(-) rename system/{ => .config}/dconf/root.conf (100%) diff --git a/README.md b/README.md index 13f7db7..182cc36 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,12 @@ The installation is pretty straightforward using a couple of installation script ## 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 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` 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` 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` 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`. diff --git a/install.sh b/install.sh index f622435..b1d87b9 100755 --- a/install.sh +++ b/install.sh @@ -33,6 +33,7 @@ LINKED_FILES_HOME=( ".bash_profile" ".bashrc" ".config/compton.conf" + ".config/dconf" ".config/dunst" ".config/gtk-3.0" ".config/htop" @@ -55,7 +56,6 @@ LINKED_FILES_HOME=( ".Xresources" ".xsetup" "bin" - "dconf" ) # Array of systemd services which should be enabled diff --git a/system/dconf/root.conf b/system/.config/dconf/root.conf similarity index 100% rename from system/dconf/root.conf rename to system/.config/dconf/root.conf