From aa0ab324847564732dbc4b0bed22b7dce470a975 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sat, 30 Sep 2023 09:04:08 +0100 Subject: Adds xinitrc used to boot i3 and syncthing in artix --- xinitrc_artix | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 xinitrc_artix (limited to 'xinitrc_artix') diff --git a/xinitrc_artix b/xinitrc_artix new file mode 100644 index 0000000..89639c8 --- /dev/null +++ b/xinitrc_artix @@ -0,0 +1,57 @@ +#!/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 some nice programs + +if [ -d /etc/X11/xinit/xinitrc.d ] ; then + for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do + [ -x "$f" ] && . "$f" + done + unset f +fi + +#twm & +#xclock -geometry 50x50-1+1 & +#xterm -geometry 80x50+494+51 & +#xterm -geometry 80x20+494-0 & +#exec xterm -geometry 80x66+0+0 -name login +syncthing & +exec i3 -- cgit v1.2.3