From 007ff825a7bdf58e51f146e2b68922b244746221 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Thu, 18 Apr 2019 23:45:02 -0400 Subject: [PATCH] sway: add launch mode --- .config/sway/config | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.config/sway/config b/.config/sway/config index dcf4bb9..ddd4d4e 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -36,10 +36,28 @@ exec swayidle \ # # Basics: # + +set $floating_term $term -name floating +for_window [class="URxvt" instance="floating"] floating enable + +set $mode_launch (⏎)urxvt, (e)macs, iceweasel (a)minb (c)hr (p)riv, ice(C)at +mode "$mode_launch" { + bindsym Return exec $floating_term, mode "default" + bindsym e exec emacs, mode "default" + bindsym a exec iceweasel -P aminb, mode "default" + bindsym c exec iceweasel -P chr, mode "default" + bindsym p exec iceweasel -P chr -private, mode "default" + bindsym Shift+c exec icecat, mode "default" + + # back to normal: Escape, or q + bindsym Escape mode "default" + bindsym q mode "default" +} + bindsym XF86Launch1 mode "$mode_launch" + # start a terminal bindsym $mod+Return exec $term - bindsym $mod+Shift+Return exec $term -name floating - for_window [class="URxvt" instance="floating"] floating enable + bindsym $mod+Shift+Return exec $floating_term # kill focused window bindsym $mod+Shift+q kill -- 2.20.1