co = checkout
s = status
ci = commit
+ lol = log --graph --decorate --pretty=oneline --abbrev-commit --all
[core]
excludesfile = /home/ian/.gitignore_global
[github]
[gitreview]
username = iank
+ remote = origin
# this is for newer git version. Doesn't work for ubuntu 12.04's version
#[push]
# default = simple
[color]
ui = auto
+ status = auto
+ branch = auto
+ interactive = auto
+ diff = auto
# for hooks. http://stackoverflow.com/questions/2293498/git-commit-hooks-global-settings
[init]
templatedir = ~/.git_template
[difftool]
tool = meld
prompt = false
+[format]
+# for format-patch, use --base=auto. This means we need to do
+# git branch --set-upstream-to
+ useAutoBase = true
+[branch]
+# sets local branches to have the same remote tracking branch.
+# This allows the useAutoBase setting to work without having to
+# setup the branch specially with
+# git branch --set-upstream-to origin/my_branch
+# or git checkout -b my-branch origin/whatever
+ autoSetupMerge = always
+ # git pull always does rebase by default
+ autoSetupRebase = always
--- /dev/null
+# This file has been auto-generated by i3-config-wizard(1).
+# It will not be overwritten, so edit it as you like.
+#
+# Should you change your keyboard layout some time, delete
+# this file and re-run i3-config-wizard(1).
+#
+
+# i3 config file (v4)
+#
+# Please see http://i3wm.org/docs/userguide.html for a complete reference!
+
+set $mod Mod4
+
+
+# exit i3 (logs you out of your X session)
+bindsym $mod+q exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
+
+bindsym $mod+2 exec "pavucontrol"
+bindsym $mod+3 exec "firefox"
+bindsym $mod+4 exec "input-setup"
+bindsym $mod+w exec "/a/bin/redshift.sh 2"
+bindsym $mod+e exec "/a/bin/redshift.sh 1"
+bindsym $mod+r exec "/a/bin/redshift.sh 0"
+# todo, add mod+t for cycle layout
+bindsym $mod+t layout toggle split
+# move focused window
+bindsym $mod+Delete move left
+bindsym $mod+parenright move right
+# todo, some other binds in here and beyond.
+# reload the configuration file. change to restart if needed.
+bindsym $mod+p restart
+# start a terminal
+bindsym $mod+k exec i3-sensible-terminal
+# start dmenu (a program launcher)
+bindsym $mod+l exec dmenu_run
+# kill focused window
+bindsym $mod+c kill
+
+# Use Mouse+$mod to drag floating windows to their wanted position
+floating_modifier $mod
+
+bindsym F8 focus down
+
+bindsym $mod+b layout stacking
+
+# todo, other workspaces
+# switch to workspace
+bindsym $mod+f workspace 1
+bindsym $mod+d workspace 2
+bindsym $mod+s workspace 3
+bindsym $mod+a workspace 4
+bindsym $mod+7 workspace 5
+bindsym $mod+0 workspace 6
+
+# move focused container to workspace
+bindsym $mod+Shift+f move container to workspace 1
+bindsym $mod+Shift+d move container to workspace 2
+bindsym $mod+Shift+s move container to workspace 3
+bindsym $mod+Shift+a move container to workspace 4
+bindsym $mod+Shift+7 move container to workspace 5
+bindsym $mod+Shift+0 move container to workspace 6
+
+
+# Font for window titles. Will also be used by the bar unless a different font
+# is used in the bar {} block below.
+font pango:monospace 8
+
+# This font is widely installed, provides lots of unicode glyphs, right-to-left
+# text rendering and scalability on retina/hidpi displays (thanks to pango).
+#font pango:DejaVu Sans Mono 8
+
+# Before i3 v4.8, we used to recommend this one as the default:
+# font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
+# The font above is very space-efficient, that is, it looks good, sharp and
+# clear in small sizes. However, its unicode glyph coverage is limited, the old
+# X core fonts rendering does not support right-to-left and this being a bitmap
+# font, it doesn’t scale on retina/hidpi displays.
, ((modm, xK_2), spawn "pavucontrol")
, ((modm, xK_3), spawn "firefox")
- , ((modm, xK_4), spawn "input-setup.sh")
+ , ((modm, xK_4), spawn "input-setup")
-- we would really want to keep track of which workspace is darkened,
-- and change things depending on where that workspace is
- -- open workspace, and send to workspace with same key plus control
+ -- open workspace, and send to workspace with same key plus shift
[((m .|. modm, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) [xK_f, xK_d, xK_s, xK_a, xK_z, xK_grave, xK_7, xK_0]
, (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]