about summary refs log blame commit diff
path: root/configs/linux/misc/.config/i3/config
blob: 33505dcbdaa1631665883abae5907639d1294fc3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                              





                                                                             

                                              
 
                  
                                                          




                                   
                                       




                           
                                                  

                                  
                                                                                                    
 














                                                             
              



                                                   








                               




                                                                  
























































                                                                                   

                                                                                                                                                                                 



                                                      






                                                      

                                        
                                           

 
                                  
 






                                                                           
set $mod Mod1

# 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

# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod

# gaps
gaps inner 20
gaps outer 0
smart_gaps on

# audio controls
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5%
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5%
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle

# screen brightness controls
bindsym XF86MonBrightnessUp   exec light -A 10
bindsym XF86MonBrightnessDown exec light -U 10

# ensure wallpaper
exec --no-startup-id feh --bg-scale ~/pictures/blurred.jpg

# start a terminal
bindsym $mod+Return exec terminator

# no title bars
for_window [class="^.*"] border pixel 3

# disable mouse hover focus
focus_follows_mouse no

# kill focused window
bindsym $mod+q exec ~/.config/i3/i3-and-emacs quit

# start dmenu (a program launcher)
bindsym Mod4+space exec --no-startup-id i3-dmenu-desktop --dmenu='rofi -i -dmenu -width 40 -lines 8'

# GTK Themes
exec --no-startup-id gnome-settings-daemon

# wireless selection mechanism
exec --no-startup-id nm-applet

# lock the screen
bindsym $mod+Shift+o exec "gnome-screensaver-command --lock "

# sound applet
exec --no-startup-id gnome-sound-applet

# polybar
exec_always --no-startup-id $HOME/.config/polybar/launch.sh

# change focus
bindsym $mod+h exec ~/.config/i3/i3-and-emacs left
bindsym $mod+j exec ~/.config/i3/i3-and-emacs down
bindsym $mod+k exec ~/.config/i3/i3-and-emacs up
bindsym $mod+l exec ~/.config/i3/i3-and-emacs right

# move focused window
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right

# split in vertical orientation
bindsym $mod+v split v
bindsym $mod+Shift+v split h

# enable duplicating the current window vertically or horizontally
# bindsym $mod+- split v exec terminator
# bindsym $mod+\ split h exec terminator

# enter fullscreen mode for the focused container
bindsym $mod+z fullscreen toggle

# 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

# Define names for default workspaces for which we configure key bindings later on.
# We use variables to avoid repeating the names in multiple places.
set $ws1 "1"
set $ws2 "2"
set $ws3 "3"
set $ws4 "4"
set $ws5 "5"
set $ws6 "6"
set $ws7 "7"
set $ws8 "8"
set $ws9 "9"
set $ws10 "10"

# switch to workspace
bindsym $mod+1 workspace $ws1
bindsym $mod+2 workspace $ws2
bindsym $mod+3 workspace $ws3
bindsym $mod+4 workspace $ws4
bindsym $mod+5 workspace $ws5
bindsym $mod+6 workspace $ws6
bindsym $mod+7 workspace $ws7
bindsym $mod+8 workspace $ws8
bindsym $mod+9 workspace $ws9
bindsym $mod+0 workspace $ws10

# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace $ws1
bindsym $mod+Shift+2 move container to workspace $ws2
bindsym $mod+Shift+3 move container to workspace $ws3
bindsym $mod+Shift+4 move container to workspace $ws4
bindsym $mod+Shift+5 move container to workspace $ws5
bindsym $mod+Shift+6 move container to workspace $ws6
bindsym $mod+Shift+7 move container to workspace $ws7
bindsym $mod+Shift+8 move container to workspace $ws8
bindsym $mod+Shift+9 move container to workspace $ws9
bindsym $mod+Shift+0 move container to workspace $ws10

# reload the configuration file
bindsym $mod+Shift+c reload
# 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'"
# lock screen
bindsym $mod+Control+BackSpace exec "i3lock -c 232423"
# implemented a sleeping KBD
# sudo pm-suspend

# resize window (you can also use the mouse for that)
mode "resize" {
        bindsym h resize shrink width 10 px or 10 ppt
        bindsym j resize shrink height 10 px or 10 ppt
        bindsym k resize grow height 10 px or 10 ppt
        bindsym l resize grow width 10 px or 10 ppt
        bindsym Return mode "default"
        bindsym Caps_Lock mode "default"
        bindsym $mod+Shift+r mode "default"
}

bindsym $mod+Shift+r mode "resize"

# Colors
set $foreground #e60053
set $background #dfdfdf

# window borders
# Format:      border      background  text        indicator   child_border
client.focused $foreground $background $foreground $foreground $foreground