Which bindsym keyboard shortcut do you use to swaylock your system on #Sway? :) The L key appears to be reserved for $right in the stock #AlpineLinux ~/.config/sway/config

@crft I do not use i, j, k or l for moving. So I binded l key for lock via a menu:
set $lock swaylock -f -i <Path To Lockscreen Wallpaper>
exec swayidle -w \
timeout 300 '$lock' \
timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \
before-sleep '$lock'

#Lock menu

set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) Shutdown
mode "$mode_system" {
bindsym l exec $lock, mode "default"
bindsym e exec swaymsg exit
bindsym s exec $lock && systemctl suspend, mode "default"
bindsym h exec $lock && systemctl hibernate, mode "default"
bindsym r exec systemctl reboot
bindsym Shift+s exec systemctl poweroff

bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+l mode "$mode_system"

Hope it will help

@olibois that is pretty sweet! I need to figure out if it's possible to use arrow keys with bindsym. It seems like the #Sway defaults, at least on #AlpineLinux uses letter keys for directions, instead of the arrow keys.
@crft @olibois
Yes you can, I have it set up like that.
About swaylock, I use Alt+a to run a script that lock whatever compositor is running.
@crft
I removed all the bindsym with i, j, k and l and remplaced then with up, left, down and rigth.
You are the boss 💪You have full power on your #sway configuration even on #alpinelinux 😁