'core.excludesfile': '/home/' + grains['user'] + '/.gitignore',
'merge.tool': 'diffuse',
'merge.ff': 'false',
- 'pull.rebase': 'false',
+ 'pull.rebase': 'true',
+ 'pull.ff': 'true',
'push.default': 'simple',
'alias.lg': 'log --graph --pretty=format:\'%Cred%h%Creset %G? %ad %s %C(bold blue)<%an>%Creset %C(yellow)%d%Creset\' --date=short',
'alias.hist': 'log --graph --full-history --all --pretty=format:\'%Cred%h%Creset %G? %ad %s %C(bold blue)<%an>%Creset %C(yellow)%d%Creset\' --date=short',
#!/bin/sh
-if [[ $XDG_SESSION_TYPE == "wayland" ]]; then
+if [ $XDG_SESSION_TYPE == "wayland" ]; then
wl-copy < /dev/stdin > /dev/null
else
xclip -selection clipboard -i < /dev/stdin > /dev/null
#!/bin/sh
-if [[ XDG_SESSION_TYPE == "wayland" ]]; then
+if [ $XDG_SESSION_TYPE == "wayland" ]; then
wl-paste
else
xclip -selection clipboard -o
if [[ $XDG_SESSION_TYPE == "wayland" ]]; then
export QT_QPA_PLATFORM=wayland-egl
+ export MOZ_ENABLE_WAYLAND=1
fi
# make less more friendly for non-text input files, see lesspipe(1)