Add --no-startup-id
This commit is contained in:
parent
f82d9fdedc
commit
95126ac373
|
@ -29,10 +29,10 @@ bindsym $mod+Shift+r exec swaynag -t reboot -m 'Reboot?' -b 'Yes' 'doas reboot'
|
|||
bindsym $mod+Shift+q exec swaynag -t shutdown -m 'Shut down?' -b 'Yes' 'doas poweroff'
|
||||
|
||||
# Screenshotting
|
||||
bindsym Print exec grimshot --notify save output
|
||||
bindsym Shift+Print exec grimshot --notify save area
|
||||
bindsym Ctrl+Print exec grimshot --notify copy output
|
||||
bindsym Shift+Ctrl+Print exec grimshot --notify copy area
|
||||
bindsym Print exec --no-startup-id grimshot --notify save output
|
||||
bindsym Shift+Print exec --no-startup-id grimshot --notify save area
|
||||
bindsym Ctrl+Print exec --no-startup-id grimshot --notify copy output
|
||||
bindsym Shift+Ctrl+Print exec --no-startup-id grimshot --notify copy area
|
||||
|
||||
# Move focus to different container
|
||||
bindsym $mod+$left focus left
|
||||
|
@ -104,14 +104,14 @@ bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle
|
|||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute 0 toggle
|
||||
|
||||
# Media player controls
|
||||
bindsym XF86AudioPlay exec playerctl play-pause
|
||||
bindsym XF86AudioStop exec playerctl stop
|
||||
bindsym XF86AudioNext exec playerctl next
|
||||
bindsym XF86AudioPrev exec playerctl previous
|
||||
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
||||
bindsym XF86AudioStop exec --no-startup-id playerctl stop
|
||||
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
||||
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
|
||||
|
||||
# Sreen brightness controls
|
||||
bindsym XF86MonBrightnessUp exec light -A 5
|
||||
bindsym XF86MonBrightnessDown exec light -U 5
|
||||
bindsym XF86MonBrightnessUp exec --no-startup-id light -A 5
|
||||
bindsym XF86MonBrightnessDown exec --no-startup-id light -U 5
|
||||
|
||||
|
||||
### MODES ###
|
||||
|
|
|
@ -13,8 +13,9 @@ input type:touchpad {
|
|||
tap enabled
|
||||
}
|
||||
|
||||
# I hate mouse acceleration
|
||||
input type:pointer {
|
||||
accel_profile flat # I hate mouse acceleration
|
||||
accel_profile flat
|
||||
natural_scroll disabled
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue