Small fixes
This commit is contained in:
parent
120945a313
commit
835a3403be
3 changed files with 101 additions and 102 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# ~/.config/sway/autostart.sh
|
# ~/.config/sway/autostart.sh
|
||||||
# List of applications to autostart
|
# List of applications to autostart
|
||||||
|
|
|
@ -23,7 +23,7 @@ bindsym {
|
||||||
$flag+Up focus up
|
$flag+Up focus up
|
||||||
$flag+Right focus right
|
$flag+Right focus right
|
||||||
|
|
||||||
$flag+m focus mode_toggle
|
$flag+semicolon focus mode_toggle
|
||||||
$flag+p focus parent
|
$flag+p focus parent
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,7 +40,9 @@ bindsym {
|
||||||
$flag+Shift+Right move right
|
$flag+Shift+Right move right
|
||||||
|
|
||||||
$flag+Next move scratchpad
|
$flag+Next move scratchpad
|
||||||
|
$flag+KP_Next move scratchpad
|
||||||
$flag+Prior scratchpad show
|
$flag+Prior scratchpad show
|
||||||
|
$flag+KP_Prior scratchpad show
|
||||||
}
|
}
|
||||||
|
|
||||||
# Layouts
|
# Layouts
|
||||||
|
@ -54,7 +56,9 @@ bindsym {
|
||||||
$flag+Shift+f floating disable, border pixel 1
|
$flag+Shift+f floating disable, border pixel 1
|
||||||
|
|
||||||
$alt+Next border pixel 1 # Show window title
|
$alt+Next border pixel 1 # Show window title
|
||||||
|
$alt+KP_Next border pixel 1
|
||||||
$alt+Prior border normal 1 # Hide window title
|
$alt+Prior border normal 1 # Hide window title
|
||||||
|
$alt+KP_Prior border normal 1
|
||||||
|
|
||||||
$flag+s sticky toggle
|
$flag+s sticky toggle
|
||||||
}
|
}
|
||||||
|
@ -76,31 +80,31 @@ set {
|
||||||
}
|
}
|
||||||
|
|
||||||
bindsym {
|
bindsym {
|
||||||
$flag+ampersand workspace $ws1
|
$flag+1 workspace $ws1
|
||||||
$flag+eacute workspace $ws2
|
$flag+2 workspace $ws2
|
||||||
$flag+quotedbl workspace $ws3
|
$flag+3 workspace $ws3
|
||||||
$flag+apostrophe workspace $ws4
|
$flag+4 workspace $ws4
|
||||||
$flag+parenleft workspace $ws5
|
$flag+5 workspace $ws5
|
||||||
$flag+section workspace $ws6
|
$flag+6 workspace $ws6
|
||||||
$flag+egrave workspace $ws7
|
$flag+7 workspace $ws7
|
||||||
$flag+exclam workspace $ws8
|
$flag+8 workspace $ws8
|
||||||
$flag+ccedilla workspace $ws9
|
$flag+9 workspace $ws9
|
||||||
$flag+agrave workspace $ws10
|
$flag+0 workspace $ws10
|
||||||
$flag+parenright workspace $ws11
|
$flag+minus workspace $ws11
|
||||||
$flag+minus workspace $ws12
|
$flag+equal workspace $ws12
|
||||||
|
|
||||||
$flag+Shift+ampersand move container to workspace $ws1, workspace $ws1
|
$flag+Shift+1 move container to workspace $ws1, workspace $ws1
|
||||||
$flag+Shift+eacute move container to workspace $ws2, workspace $ws2
|
$flag+Shift+2 move container to workspace $ws2, workspace $ws2
|
||||||
$flag+Shift+quotedbl move container to workspace $ws3, workspace $ws3
|
$flag+Shift+3 move container to workspace $ws3, workspace $ws3
|
||||||
$flag+Shift+apostrophe move container to workspace $ws4, workspace $ws4
|
$flag+Shift+4 move container to workspace $ws4, workspace $ws4
|
||||||
$flag+Shift+parenleft move container to workspace $ws5, workspace $ws5
|
$flag+Shift+5 move container to workspace $ws5, workspace $ws5
|
||||||
$flag+Shift+section move container to workspace $ws6, workspace $ws6
|
$flag+Shift+6 move container to workspace $ws6, workspace $ws6
|
||||||
$flag+Shift+egrave move container to workspace $ws7, workspace $ws7
|
$flag+Shift+7 move container to workspace $ws7, workspace $ws7
|
||||||
$flag+Shift+exclam move container to workspace $ws8, workspace $ws8
|
$flag+Shift+8 move container to workspace $ws8, workspace $ws8
|
||||||
$flag+Shift+ccedilla move container to workspace $ws9, workspace $ws9
|
$flag+Shift+9 move container to workspace $ws9, workspace $ws9
|
||||||
$flag+Shift+agrave move container to workspace $ws10, workspace $ws10
|
$flag+Shift+0 move container to workspace $ws10, workspace $ws10
|
||||||
$flag+Shift+parenright move container to workspace $ws11, workspace $ws11
|
$flag+Shift+minus move container to workspace $ws11, workspace $ws11
|
||||||
$flag+Shift+minus move container to workspace $ws12, workspace $ws12
|
$flag+Shift+equal move container to workspace $ws12, workspace $ws12
|
||||||
|
|
||||||
$flag+Control+j focus output 'eDP-1'
|
$flag+Control+j focus output 'eDP-1'
|
||||||
$flag+Control+h workspace prev_on_output
|
$flag+Control+h workspace prev_on_output
|
||||||
|
@ -152,9 +156,9 @@ bindsym --locked {
|
||||||
# Special commands
|
# Special commands
|
||||||
set $fzf ~/.scripts/fzf-jump
|
set $fzf ~/.scripts/fzf-jump
|
||||||
bindsym {
|
bindsym {
|
||||||
# Reload sway
|
# Reload sway
|
||||||
$alt+Shift+r reload
|
$alt+Shift+r reload
|
||||||
# Dialog to exit sway
|
# Dialog to exit sway
|
||||||
$alt+Shift+e exec swaynag -t warning -m 'Do you really want to exit sway?' \
|
$alt+Shift+e exec swaynag -t warning -m 'Do you really want to exit sway?' \
|
||||||
-B 'Yes, exit sway' 'swaymsg exit'
|
-B 'Yes, exit sway' 'swaymsg exit'
|
||||||
|
|
||||||
|
|
|
@ -11,12 +11,7 @@ include {
|
||||||
style
|
style
|
||||||
}
|
}
|
||||||
|
|
||||||
# Input
|
input type:touchpad {
|
||||||
input type:keyboard {
|
|
||||||
xkb_layout "be"
|
|
||||||
}
|
|
||||||
|
|
||||||
input 2:7:SynPS/2_Synaptics_TouchPad {
|
|
||||||
natural_scroll enabled
|
natural_scroll enabled
|
||||||
scroll_factor 0.6
|
scroll_factor 0.6
|
||||||
middle_emulation enabled
|
middle_emulation enabled
|
||||||
|
|
Loading…
Reference in a new issue