From 000222dcbaebd3770a174a4e176c546f36a8abc4 Mon Sep 17 00:00:00 2001 From: Quentin Duchemin Date: Wed, 13 Mar 2019 16:18:54 +0100 Subject: [PATCH] Small adjustements (lightdm KL, subl font size) --- .config/lightdm/lightdm.conf | 4 ++-- .../Packages/User/Preferences.sublime-settings | 2 +- README.md | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.config/lightdm/lightdm.conf b/.config/lightdm/lightdm.conf index 5212cd2..2efc8d9 100644 --- a/.config/lightdm/lightdm.conf +++ b/.config/lightdm/lightdm.conf @@ -1,4 +1,4 @@ -# + # General configuration # # start-default-seat = True to always start one seat if none are defined in the configuration @@ -117,7 +117,7 @@ xserver-command=X -ardelay 300 -arinterval 30 session-wrapper=/etc/lightdm/Xsession #greeter-wrapper= #guest-wrapper= -#display-setup-script= +display-setup-script=/usr/bin/setxkbmap fr #display-stopped-script= #greeter-setup-script= #session-setup-script= diff --git a/.config/sublime-text-3/Packages/User/Preferences.sublime-settings b/.config/sublime-text-3/Packages/User/Preferences.sublime-settings index 755b160..b9686c6 100644 --- a/.config/sublime-text-3/Packages/User/Preferences.sublime-settings +++ b/.config/sublime-text-3/Packages/User/Preferences.sublime-settings @@ -1,6 +1,6 @@ { "color_scheme": "Packages/Monokai - Spacegray/Monokai - Spacegray.tmTheme", - "font_size": 11, + "font_size": 16, "ignored_packages": [ "Markdown", diff --git a/README.md b/README.md index e543d2d..fb5f905 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ - [Bare repository trick](#bare-repository-trick) - [Divergence betwteen laptop and desktop](#divergence-betwteen-laptop-and-desktop) - [Configuration outside XDG_CONFIG_HOME, e.g. /etc](#configuration-outside-xdg_config_home-eg-etc) + - [Git Hook](#git-hook) @@ -109,7 +110,7 @@ Example : see `~/.config/lightdm` directory. ### Git Hook -You may want to add a file named `post-merge` in `~/.cfg/hooks` with contains something like : +You may want to add a file named `post-merge` **and** `pre-push` in `~/.cfg/hooks` with contains something like : ```bash #!/bin/sh @@ -117,7 +118,7 @@ You may want to add a file named `post-merge` in `~/.cfg/hooks` with contains so exec ~/.init_config.sh ``` -And then `chmod +x ~/.cfg/hooks/post-merge`. +And then `chmod +x ~/.cfg/hooks/{post-merge,pre-push}`. When you pull, changes are applied automagically. Note this is a quick and quite dirty solution.