Small adjustements (lightdm KL, subl font size)
parent
a46a0b2636
commit
000222dcba
|
@ -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=
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"color_scheme": "Packages/Monokai - Spacegray/Monokai - Spacegray.tmTheme",
|
||||
"font_size": 11,
|
||||
"font_size": 16,
|
||||
"ignored_packages":
|
||||
[
|
||||
"Markdown",
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue