From b93d71335f47520c53b07352dbc8b6e4a8b57f36 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Tue, 28 May 2019 16:43:58 +0100 Subject: [PATCH] Move keyboard layout logic into sway config --- bash/.profile | 12 ------------ sway/.config/sway/config.magnesium | 7 +++++-- sway/.config/sway/config.platinum | 6 ++++++ 3 files changed, 11 insertions(+), 14 deletions(-) diff --git a/bash/.profile b/bash/.profile index f4e15bd..43fbef4 100644 --- a/bash/.profile +++ b/bash/.profile @@ -32,18 +32,6 @@ if [ -f ~/.config/termite/config.base ]; then fi -if [ $HOSTNAME = "magnesium" ]; then - export XKB_DEFAULT_LAYOUT=us - export XKB_DEFAULT_VARIANT=colemak - export XKB_DEFAULT_OPTIONS=ctrl:nocaps -fi - -if [ $HOSTNAME = "platinum" ]; then - export XKB_DEFAULT_LAYOUT=gb - export XKB_DEFAULT_VARIANT=colemak - export XKB_DEFAULT_OPTIONS=ctrl:nocaps -fi - # make less more friendly for non-text input files, see lesspipe(1) if [ -x /usr/bin/lesspipe ]; then export LESSOPEN="|lesspipe %s" diff --git a/sway/.config/sway/config.magnesium b/sway/.config/sway/config.magnesium index 3abeacb..b23304a 100644 --- a/sway/.config/sway/config.magnesium +++ b/sway/.config/sway/config.magnesium @@ -49,5 +49,8 @@ output HDMI-A-3 { font pango:Liberation Mono 8 -exec xhost +si:localuser:spotify -exec no_glock +si:localuser:spotify +input 1241:36:HOLDCHIP_USB_Keyboard { + xkb_layout us + xkb_variant colemak + xkb_options ctrl:nocaps +} diff --git a/sway/.config/sway/config.platinum b/sway/.config/sway/config.platinum index d4831c1..7c79c20 100644 --- a/sway/.config/sway/config.platinum +++ b/sway/.config/sway/config.platinum @@ -21,3 +21,9 @@ output eDP-1 { scale 2 background ~/Pictures/background.png fit } + +input * { + xkb_layout gb + xkb_variant colemak + xkb_options ctrl:nocaps +} -- 2.45.2