X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=x%2F.xinitrc;h=2822f4160547b94f9e197c21e52103c20563ec7a;hb=e8069e414c455a89967622e0709d96e07200ccf0;hp=763a2b5b38a20e0c5dea47f680c7eacc5e29a5cf;hpb=98ef8dd720b8a4c6a3a19be3d5b4972188951967;p=dotfiles.git diff --git a/x/.xinitrc b/x/.xinitrc index 763a2b5..2822f41 100755 --- a/x/.xinitrc +++ b/x/.xinitrc @@ -1,17 +1,31 @@ #!/bin/bash -PATH=$PATH:~/.local/bin -xautolock -locker ~/.local/bin/lock.sh & +#To fix java applications in tiling (e.g. arduino) +export _JAVA_AWT_WM_NONREPARENTING=1 + +# notifications dunst & +# gpg agent eval "$(gpg-agent --daemon)" + +# XResources xrdb -merge ~/.Xresources -if [ -d /etc/X11/xinit/xinitrc.d ] ; then - for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do +# auto locking but only on laptop +if [ $(hostname) != ygdrassil ]; then + xautolock -locker slock -time 10 & +fi + +# Other system wide xinit files +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 +# status bar while true; do xsetroot -name "$(bar)"; sleep 1m; done & -while true; do dwm >dwm.log 2>&1; done + +#xrandr --setmonitor Presentation 3840/1040x1080/640+0+0 eDP1,HDMI1 +#xrandr --output eDP1 --mode 1920x1080 --output HDMI1 --mode 1920x1080 --right-of=eDP1 +while true; do dwm 1>/tmp/dwm.log 2>&1; done