Small adjustements (lightdm KL, subl font size)

master
Quentin Duchemin 2019-03-13 16:18:54 +01:00
parent a46a0b2636
commit 000222dcba
Signed by: Chosto
GPG Key ID: 0547178FEEDE7D6B
3 changed files with 6 additions and 5 deletions

View File

@ -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=

View File

@ -1,6 +1,6 @@
{
"color_scheme": "Packages/Monokai - Spacegray/Monokai - Spacegray.tmTheme",
"font_size": 11,
"font_size": 16,
"ignored_packages":
[
"Markdown",

View File

@ -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)
<!-- /MarkdownTOC -->
@ -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 <whatever you environment is>
```
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.