]> git.friedersdorff.com Git - max/saltfiles.git/blobdiff - states/i3/files/xprofile.jinja
Create dirs
[max/saltfiles.git] / states / i3 / files / xprofile.jinja
index 6774ffacb6018f6a3bbc8f41b0cbe22830a6c836..4850825e90bf2e557ec2abb1f967bcd9f07cd0d8 100755 (executable)
@@ -1,17 +1,14 @@
 #!/bin/sh
 # Load .Xresources
 xrdb -merge ~/.Xresources &> /dev/null
-if [ -f ~/.Xresources.$HOSTNAME ]; then
-  xrdb -merge ~/.Xresources.$HOSTNAME &> /dev/null
-fi
 
 # Set keyboard layout
 case $HOSTNAME in
   barium)
-    layout-colemak_us
+    layout-qwerty_gb
     ;;
   dubnium)
-    layout-colemak_us
+    layout-qwerty_gb
     ;;
   *)
     layout-colemak_gb
@@ -21,13 +18,18 @@ esac
 # Set screen layout
 case $HOSTNAME in
   barium)
-    xrandr --output DP-1 --mode 1920x1080 --pos 0x540
-    xrandr --output HDMI-1 --mode 3840x2160 --pos 1920x0
-    xrandr --output eDP-1 --mode 1920x1080 --pos 0x540
+    xrandr --output DP-2 --mode 3840x2160 --pos 2560x0 --rate 30
+    xrandr --output DP-1 --mode 2560x1440 --pos 0x360
+    #xrandr --output eDP-1 --off
+    ;;
+  baryte)
+    xrandr --output DP-3 --mode 2560x1440 --pos 0x360
+    xrandr --output HDMI-1 --mode 3840x2160 --pos 2560x0 --rate 60
+    xrandr --output eDP-1 --off
     ;;
   dubnium)
-    xrandr --output DVI-D-0 --mode 1920x1080 --pos 0x540
-    xrandr --output DP-2 --mode 3840x2160 --pos 1920x0
+    xrandr --output DP-2 --mode 2560x1440 --pos 0x0
+    xrandr --output DP-0 --mode 3840x2160 --pos 2560x0
     xrandr --output DP-2 --primary
     ;;
   *)
@@ -37,10 +39,12 @@ esac
 # Set java font option
 export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on"
 
-feh --bg-scale ~/Pictures/background_1080_1.png&
+nitrogen --restore &
 
 xset -b
 
 export QT_QPA_PLATFORM="xcb"
 
+export TERMINAL="kitty"
+
 # vim: set expandtab tabstop=2 smarttab: