Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cirrusUK/9067237 to your computer and use it in GitHub Desktop.
Save cirrusUK/9067237 to your computer and use it in GitHub Desktop.
~/.i3/config
# 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 somewhen, 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!
#mod4=super,mod1=alt
set $mod Mod4
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below. ISO 10646 = Unicode
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, if you need a lot of unicode glyphs or
# right-to-left text rendering, you should instead use pango for rendering and
# chose a FreeType font, such as:
# font pango:DejaVu Sans Mono 10
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# start a terminal
#bindsym $mod+Return exec i3-sensible-terminal -e tmux
bindsym $mod+Return exec lxterminal -e tmux
# kill focused window
bindsym $mod+q kill
#floating window size
floating_minimum_size 75 x 50
floating_maximum_size -1 x -1
# take screenshot
# bindsym --release $mod+x exec --no-startup-id xdotool key --clearmodifiers ctrl+v
# bindsym --release $mod+z exec --no-startup-id import /tmp/latest-screenshot.png
# start dmenu (a program launcher)
bindsym $mod+d exec ~/i3dmenu.sh
# There also is the (new) i3-dmenu-desktop which only displays applications
# shipping a .desktop file. It is a wrapper around dmenu, so you need that
# installed.
# 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
# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
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
# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# split in horizontal orientation
bindsym $mod+h split h
# split in vertical orientation
bindsym $mod+v split v
# enter fullscreen mode for the focused container
bindsym $mod+f fullscreen
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle
# focus the parent container
bindsym $mod+a focus parent
# focus the child container
#bindsym $mod+d focus child
# Workspace names
workspace "1:Web" output DVI-I-2
workspace "2:IRC" output DVI-I-3
workspace "3:Mail" output DVI-I-3
workspace "4:Mail" output DVI-I-3
workspace "5:Media" output DVI-I-3
workspace "6:Scratch" output DVI-I-3
# switch to workspace
bindsym $mod+1 workspace 1:Web
bindsym $mod+2 workspace 2:IRC
bindsym $mod+3 workspace 3:Shell
bindsym $mod+4 workspace 4:Mail
bindsym $mod+5 workspace 5:Media
bindsym $mod+6 workspace 6:Scratch
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1:Web
bindsym $mod+Shift+2 move container to workspace 2:IRC
bindsym $mod+Shift+3 move container to workspace 3:Shell
bindsym $mod+Shift+4 move container to workspace 4:Mail
bindsym $mod+Shift+5 move container to workspace 5:Media
bindsym $mod+Shift+6 move container to workspace 6:Scratch
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
#scratchpad
# Make the currently focused window a scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the first scratchpad window
bindsym $mod+minus scratchpad show
# starting a specially named term automatically
exec --no-startup-id urxvt -name scratchpad -e /usr/bin/nano
# move this to scratchpad, if active
for_window [class="URxvt" instance="scratchpad"] move scratchpad
# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e 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'"
# resize window (you can also use the mouse for that)
mode "resize" {
# These bindings trigger as soon as you enter the resize mode
# Pressing left will shrink the window’s width.
# Pressing right will grow the window’s width.
# Pressing up will shrink the window’s height.
# Pressing down will grow the window’s height.
bindsym j resize shrink width 10 px or 10 ppt
bindsym k resize grow height 10 px or 10 ppt
bindsym l resize shrink height 10 px or 10 ppt
bindsym semicolon resize grow width 10 px or 10 ppt
# same bindings, but for the arrow keys
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
# back to normal: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
output DVI-I-2
status_command i3status
colors {
background #000000
statusline #4c7899
separator #9BC0CA
focused_workspace #7DD427 #4094BF #ffffff
active_workspace #4094BF #5f676a #ffffff
inactive_workspace #7DD427 #222222 #888888
urgent_workspace #2f343a #900000 #ffffff
}
}
bar {
output DVI-I-3
status_command $HOME/.config/i3/startup_conky
colors {
background #000000
statusline #497BF7
separator #9BC0CA
focused_workspace #7DD427 #4094BF #ffffff
active_workspace #4094BF #5f676a #ffffff
inactive_workspace #7DD427 #222222 #888888
urgent_workspace #2f343a #900000 #ffffff
}
}
# window border colours
# class border backgr. text indicator
client.focused #7DD427 #002833 #54ffbc #2e9ef4
client.focused_inactive #7DD427 #002B36 #5AC91E #CCCCCC
client.unfocused #F97E2A #002B36 #5AC91E #ffa500
client.urgent #2f343a #900000 #ffffff #900000
# default applications
set $editor leafpad
set $browser firefox
set $player mpv
set $email mutt
set $mp3 mpg123
# float the following
for_window [class="Pcmanfm"] floating enable; focus mode toggle
for_window [class="Lxterminal"] floating enable; focus mode toggle
for_window [class="Gimp"] floating enable
for_window [class="Mpv"] floating enable; border none
for_window [class="Mplayer"] floating enable; border none
for_window [class="Firefox"] focus mode_toggle;
for_window [class="Guake"] floating enable
for_window [class="Sxiv"] floating enable; focus mode_toggle;
for_window [class="Audacious"] floating enable; focus mode_toggle; border none
for_window [class="Spacefm" instance="Dialog"] floating enable; focus mode_toggle
for_window [class="Xfce4-notifyd"] floating enable; border none; focus mode_toggle
for_window [class="Torrent-search"] floating enable; border none; focus mode_toggle
for_window [class="Transmission"] floating enable; focus mode_toggle
#for_window [class="Conky"] floating enable; border none; focus mode_toggle
# Assignment to a named workspace
assign [class="Firefox"] 1:Web
assign [class="Chromium"] 1:Web
assign [class="Termite"] 2:IRC
assign [class="Tilda"] 5:Media
assign [class="Terminator"] 4:Mail
assign [class="Sakura"] 3:Shell
#autostarts
exec --no-startup-id nitrogen --restore
exec --no-startup-id compton --config ~/.compton.conf
exec --no-startup-id rm -rf ~/.config/mpdnotify/pid
exec --no-startup-id xset s noblank
#exec --no-startup-id conky -c ~/.conkybarrc
exec --no-startup-id setterm -blank 0 -powerdown 0
exec --no-startup-id xset -dpms; xset s off
exec --no-startup-id notify-send -i ~/.icons/arch48.png "Archlinux i686 ONLINE"
exec --no-startup-id (sleep 20 && notify-send -i ~/.icons/arch48.png "OS- Archlinux i686" "Installed on Fri Feb 1 2013 at 19:36:52")
exec --no-startup-id firefox
exec --no-startup-id termite -e tmux
exec --no-startup-id sakura
exec --no-startup-id sudo noip2
exec --no-startup-id terminator -e mutt
exec --no-startup-id tilda
exec --no-startup-id volumeicon
exec --no-startup-id gmail-notify
exec --no-startup-id conky -c ~/.conkyrcbar
# custom keybinds
bindsym Mod4+F11 exec pcmanfm
bindsym Mod1+l exec leafpad
bindsym Mod4+F12 exec lxterminal -e ranger
bindsym Mod4+F10 exec tea
bindsym Mod4+F9 exec i3-sensible-terminal -e finch
bindsym Mod4+F8 exec lxterminal -e pms
bindsym Mod4+F7 exec lxterminal -e pmsyt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment