diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2014-06-02 08:36:25 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-06-02 08:36:25 +0700 |
commit | a1b0a38c4dc724c5ba47056349b15cea404f6946 (patch) | |
tree | e1569406dec0087016ec442771bb37c1e80806b0 /desktop/notion/xinitrc.notion | |
parent | e89bea7b52e30593197d9d9624ed55179684a920 (diff) |
desktop/notion: Updated for version 3_2014052800.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/notion/xinitrc.notion')
-rw-r--r-- | desktop/notion/xinitrc.notion | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/desktop/notion/xinitrc.notion b/desktop/notion/xinitrc.notion new file mode 100644 index 000000000000..f1d86ac1fb00 --- /dev/null +++ b/desktop/notion/xinitrc.notion @@ -0,0 +1,30 @@ +#!/bin/sh + +userresources=$HOME/.Xresources +usermodmap=$HOME/.Xmodmap +sysresources=/etc/X11/xinit/.Xresources +sysmodmap=/etc/X11/xinit/.Xmodmap + +# Merge in defaults and keymaps +if [ -f $sysresources ]; then + xrdb -merge $sysresources +fi + +if [ -f $sysmodmap ]; then + xmodmap $sysmodmap +fi + +if [ -f $userresources ]; then + xrdb -merge $userresources +fi + +if [ -f $usermodmap ]; then + xmodmap $usermodmap +fi + +# Start notion +if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then + exec ck-launch-session notion +else + exec notion +fi |