Skip to content

Instantly share code, notes, and snippets.

@everplays
Last active December 1, 2015 07:46
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 everplays/4968d514910e49a14660 to your computer and use it in GitHub Desktop.
Save everplays/4968d514910e49a14660 to your computer and use it in GitHub Desktop.
i3 configuration
pointer = 1 2 3 5 4 7 6 8 9 10 11 12
#/bin/bash
X=$(synclient -l | grep TouchpadOff | egrep -o '[0-9]+')
if [ "$X" -eq "1" ]; then
synclient TouchpadOff=0
else
synclient TouchpadOff=1
fi
#!/bin/bash
# index of last opened tab
lastTabIndex=-1
function runGuake {
# run guake in another proccess
nohup guake > /dev/null &
# wait for guake
sleep 5
# rename default tab if we have a name for it
if [ "$1" ]; then
guake -r $1
fi
if [ "$2" ]; then
guake -e "$2"
fi
# increase index of lastTab
lastTabIndex=`echo $lastTabIndex+1 | bc`
}
function newGuakeTab {
# create new tab
guake -n $1
# rename tab
guake -r $1
# increase index of lastTab
lastTabIndex=`echo $lastTabIndex+1 | bc`
# switch to last tab (FIXME: do we need it?)
guake -s $lastTabIndex
# execute command in tab if anything passed
if [ "$2" ]; then
guake -e "$2"
fi
}
sleep 5
runGuake "alternate"
sleep 3
newGuakeTab "development"
newGuakeTab "local"
newGuakeTab "server" "tmux"
newGuakeTab "sudo" "sudo -s"
exit
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
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 an xft 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 termit
# kill focused window
bindsym $mod+Shift+q kill
# start dmenu (a program launcher)
bindsym $mod+space exec 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+colon 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
# border style
bindsym $mod+Shift+t border normal
bindsym $mod+Shift+y border 1pixel
bindsym $mod+Shift+u border none
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+Control+space focus mode_toggle
# focus the parent container
bindsym $mod+a focus parent
# focus the child container
#bindcode $mod+d focus child
# switch to workspace
bindsym $mod+1 workspace "1: development"
bindsym $mod+2 workspace "2: browsing"
bindsym $mod+3 workspace "3: communication"
bindsym $mod+4 workspace "4: others"
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
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: development"
bindsym $mod+Shift+2 move container to workspace "2: browsing"
bindsym $mod+Shift+3 move container to workspace "3: communication"
bindsym $mod+Shift+4 move container to workspace "4: others"
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
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
workspace "1: development" output HDMI1
# move between workspaces
bindsym Mod1+Control+Right workspace next
bindsym Mod1+Control+Left workspace prev
# 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 exit
# or a safer way:
#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 {
status_command /home/behrooz/bin/i3statusc
}
# execute guake in floating mode
exec /home/behrooz/bin/guake-start-up.sh
# activate custom table of X
exec xmodmap ~/.Xmodmap
# window configurations
for_window [class="Firefox"] border none
for_window [class="Firefox" instance="Toolkit"] floating disable
for_window [class="Termit"] border none
for_window [class="Zathura"] border none
for_window [class="Transmission-gtk"] border none
for_window [class="qemu-system-x86_64"] border none
for_window [class="Xfce4-notifyd"] floating enable
for_window [class="Xfce4-notifyd"] border none
for_window [class="chromium"] border none
for_window [class="Ltbin"] border none
for_window [class="jetbrains-android-studio"] border none
for_window [class="emulator64-arm"] border none
for_window [class="MonoDevelop"] border none
# press alt+ctrl+l to lock
bind Mod1+Control+46 exec /usr/bin/i3lock -c 000000
# press super+shift+ESC to suspend
bind Mod4+Shift+9 exec /home/behrooz/bin/suspend-and-lock
# or press fn+suspend
bind 213 exec /home/behrooz/bin/suspend-and-lock
exec pulseaudio --start
exec pasystray
#exec volumeicon
bind 121 exec pulseaudio-ctl mute
bind 122 exec amixer -D pulse sset Master 5%-
bind 123 exec amixer -D pulse sset Master 5%+
exec amixer set 'Beep' 0% mute
# increase brightness by 10
bind 233 exec xbacklight -inc 10
# decrease brightness by 10
bind 232 exec xbacklight -dec 10
# enable/disable touchpad
bind 199 exec ~/bin/disable-touchpad
bind 107 exec import -window root ~/Desktop/screenshot.png
#!/bin/bash
i3status | while :
do
read line
echo "$line | `jdate +'%Y-%m(%b)-%d'` | `TZ='Asia/Tehran' date +'Teh: %H:%M:%S'` | `date +'Ams: %H:%M:%S'`" || exit 1
done
#!/usr/bin/bash
i3lock && systemctl suspend
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment