Browse Source

Add new movement hotkeys for windows in i3

master
Taylor Bockman 9 years ago
parent
commit
d71868bb35
  1. 20
      dotfiles/config/i3/config
  2. 5
      scripts/sysinstall/install_packages.sh

20
dotfiles/config/i3/config

@ -48,10 +48,10 @@ bindsym $mod+d exec dmenu_run
# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
# change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon focus right
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
bindsym $mod+h focus left
# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
@ -60,10 +60,10 @@ bindsym $mod+Up focus up
bindsym $mod+Right focus right
# move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon move right
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
@ -72,10 +72,10 @@ bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# split in horizontal orientation
bindsym $mod+h split h
bindsym $mod+ctrl+h split h
# split in vertical orientation
bindsym $mod+v split v
bindsym $mod+ctrl+v split v
# enter fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle

5
scripts/sysinstall/install_packages.sh

@ -1,4 +1,4 @@
#!/bin/bash
Y#!/bin/bash
#
# An almost completely untested automated package install script for new installs.
#
@ -48,7 +48,7 @@ packages=("wget", "emacs", "gvim", "openssh", "steam", "zsh", "zsh-completions",
"xf86-video-fbdev", "xf86-video-intel", "xf86-video-vesa", "alsa-utils", "xorg",
"xorg-xinit", "dmenu", "ttf-inconsolata", "i3", "google-chrome", "clojure", "leiningen",
"xclip", "playerctl", "infinality-bundle", "lieningen-completions", "npm", "conky",
"feh", "networkmanager", "htop")
"feh", "networkmanager", "htop", "physlock")
# Reload the font cache
fc-cache -fv
@ -80,3 +80,4 @@ sudo locale-gen
# install dotfiles
# run dotfile installer script
# configure physlock

Loading…
Cancel
Save