diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-24T16·13+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-24T16·13+0000 |
commit | e1d42452b5fa8fd966c67ca2753579543284916d (patch) | |
tree | e70b5bbd055d1ca048639b75160506b741d7d50f /configs/shared | |
parent | 06bf69085ec76713ea8171a2f8968d9e5bfe8f1b (diff) |
Resupport mod+Shift+{3,4} KBDs in i3
I originally dropped support for these because I wanted to imitate OSX's screenshot KBDs, which were mod+Shift+{3,4}. I'm not sure I want to imitate OSX now that I don't have any Apple hardware besides my iPhone. I'm getting more forgetting those KBDs. At the moment, however, I cannot find a better KBD for my snip_it function. Stay tuned...
Diffstat (limited to 'configs/shared')
-rw-r--r-- | configs/shared/misc/.config/i3/config.shared | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/configs/shared/misc/.config/i3/config.shared b/configs/shared/misc/.config/i3/config.shared index 6e2c96ae0931..ca9598861666 100644 --- a/configs/shared/misc/.config/i3/config.shared +++ b/configs/shared/misc/.config/i3/config.shared @@ -75,14 +75,11 @@ bindsym $mod+t exec --no-startup-id ~/.config/i3/dmenu_timer.sh ~/.local/share/s bindsym $mod+n exec st -e lf # Screenshot -bindsym $mod+Shift+4 exec zsh -i -c snipit +# TODO: find a better KBD for this +# bindsym $mod+Shift+4 exec zsh -i -c snipit bindsym Ctrl+Print exec scrot ~/Pictures/screenshots/%b-%d-%Y_%T.png # Windows style -bindsym $mod+Shift+3 exec scrot ~/Pictures/screenshots/%b-%d-%Y_%T.png # OSX style # TODO: debug # bindsym $mod+Print exec scrot --focused ~/Pictures/screenshots/%b-%d-%Y_%T.png # Windows style -# TODO: debug -# bindsym $mod+Shift+4 exec scrot --select ~/Pictures/screenshots/%b-%d-%Y_%T.png # OSX style -# Integration with Google's screenshot hosting server # online documentation bindsym $mod+Shift+slash exec google-chrome https://i3wm.org/docs/userguide.html @@ -173,8 +170,8 @@ bindsym $mod+0 workspace $ws10 # move and follow focused container to workspace bindsym $mod+Shift+1 move container to workspace $ws1; workspace $ws1 bindsym $mod+Shift+2 move container to workspace $ws2; workspace $ws2 -# bindsym $mod+Shift+3 move container to workspace $ws3; workspace $ws3 # commented out to support screenshot KBD -# bindsym $mod+Shift+4 move container to workspace $ws4; workspace $ws4 # commented out to support screenshot KBD +bindsym $mod+Shift+3 move container to workspace $ws3; workspace $ws3 +bindsym $mod+Shift+4 move container to workspace $ws4; workspace $ws4 bindsym $mod+Shift+5 move container to workspace $ws5; workspace $ws5 bindsym $mod+Shift+6 move container to workspace $ws6; workspace $ws6 bindsym $mod+Shift+7 move container to workspace $ws7; workspace $ws7 |