[rc/sway] more input customizations
[~bandali/configs] / rc.org
diff --git a/rc.org b/rc.org
index 9c69f2b..3f39f97 100644 (file)
--- a/rc.org
+++ b/rc.org
@@ -3618,9 +3618,10 @@ insert_pass="Alt+n"
 #+begin_src conf
 exec xrdb .Xresources
 ### Variables
-#
-# Logo key. Use Mod1 for Alt.
+# super
 set $mod Mod4
+# alt
+set $mod2 Mod1
 set $left h
 set $down j
 set $up k
@@ -3660,11 +3661,14 @@ input "1739:31251:DLL07BE:01_06CB:7A13_Touchpad" {
     tap enabled
     natural_scroll enabled
     middle_emulation enabled
+    click_method clickfinger
 }
 
 input "1:1:AT_Translated_Set_2_keyboard" {
     repeat_delay 200
     repeat_rate 45
+    xkb_layout us,ir
+    xkb_options ctrl:nocaps,altwin:swap_alt_win,ctrl:rctrl_ralt,grp:shifts_toggle
 }
 
 
@@ -3698,11 +3702,17 @@ input "1:1:AT_Translated_Set_2_keyboard" {
     bindsym XF86MonBrightnessUp exec light -A 5    # increase screen brightness
     bindsym XF86MonBrightnessDown exec light -U 5  # decrease screen brightness
 
+    # bspwm-esque workspace switch and window move
     bindsym $mod+bracketleft exec sway-ws-util switch prev
     bindsym $mod+bracketright exec sway-ws-util switch next
-
     bindsym $mod+braceleft exec sway-ws-util move prev follow
     bindsym $mod+braceright exec sway-ws-util move next follow
+
+    # original sway workspace switch and window move
+    bindsym $mod2+bracketleft workspace prev
+    bindsym $mod2+bracketright workspace next
+    bindsym $mod2+braceleft move container to workspace prev
+    bindsym $mod2+braceright move container to workspace next
 #
 # Moving around:
 #
@@ -4833,7 +4843,6 @@ light -S $val
 :END:
 
 #+begin_src bash
-export XKB_DEFAULT_OPTIONS=ctrl:nocaps,altwin:swap_alt_win,ctrl:rctrl_ralt
 export _JAVA_AWT_WM_NONREPARENTING=1
 export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true'
 light -Scrs "intel_backlight" 2
@@ -4848,8 +4857,8 @@ sway
 
 #+begin_src bash
 curr_ws=$(swaymsg -t get_workspaces | jq -r '.[] | select(.focused==true).name')
-prev_ws=$((curr_ws-1))
-next_ws=$((curr_ws+1))
+[[ $curr_ws -eq 1 ]] && prev_ws=10 || prev_ws=$((curr_ws-1))
+[[ $curr_ws -eq 10 ]] && next_ws=1 || next_ws=$((curr_ws+1))
 dest_ws=-1
 op=-1
 
@@ -4860,7 +4869,7 @@ if [ "$1" = "switch" ] || [ "$1" = "move" ]; then
   elif [ "$2" = "next" ]; then
     dest_ws="$next_ws"
   else
-    echo "Usage: $0 $1 {prev|next}"
+    echo "Usage: $0 $1 {prev|next} [follow]"
     exit 1
   fi
 else