{% set ifdev = 'wlp2s0' %}
{% elif grains['host'] == 'barium' %}
{% set ifdev = 'enp3s0f1' %}
+{% elif grains['host'] == 'rhenium' %}
+ {% set ifdev = 'wlp2s0' %}
{% else %}
{% set ifdev = 'eth0' %}
{% endif %}
--- /dev/null
+# Start i3bar to display a workspace bar (plus the system information i3status
+# finds out, if available)
+bar {
+ id bar_left
+ status_command conky-i3bar
+ position top
+ font pango:Liberation Mono 12
+ colors {
+ background $black_super
+ focused_background $black
+ focused_workspace $black_super $yellow_super $black
+ active_workspace $black_super $blue_super $black
+ inactive_workspace $black_super $black_super $white_super
+ urgent_workspace $black $red_super $white
+ }
+}
+
+font pango:Liberation Mono 10
+
+output eDP-1 {
+ scale 2
+ position 0 0
+ background ~/Pictures/background_1800.png center
+}
+
+output HDMI-A-2 {
+ scale 1
+ position 3200 0
+ background ~/Pictures/background_1440.png fill
+}
+
+input * {
+ xkb_layout gb
+ xkb_variant colemak
+ xkb_options ctrl:nocaps
+}
+
+# Disable tap-to-click on touchpad to prevent jerkyness
+input type:touch tap disable
{% set font_size = 11 %}
{% endif %}
-{% if grains['host'] == 'barium' %}
+{% if grains['host'] == 'barium' or grains['host'] == 'rhenium' %}
{% set font_family = 'Source Code Pro' %}
{% else %}
{% set font_family = 'Source Code Pro for Powerline' %}