# i3 config file (v4) # # Please see http://i3wm.org/docs/userguide.html for a complete reference! # # This config file uses keycodes (bindsym) and was written for the QWERTY # layout. # # To get a config file with the same key positions, but for your current # layout, use the i3-config-wizard # # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. # 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. ### THEME ### set $FOCUS #989898 set $UNFOCUS #3c3b37 # Layout colors bord bg text indicator (split) client.focused $FOCUS $FOCUS $FOCUS $FOCUS client.focused_inactive $UNFOCUS $UNFOCUS $UNFOCUS $UNFOCUS client.unfocused $UNFOCUS $UNFOCUS $UNFOCUS $UNFOCUS client.urgent $FOCUS $FOCUS $FOCUS $FOCUS client.background $UNFOCUS ### Borders ### new_window pixel 4 new_float pixel 4 focus_follows_mouse no ### Gaps ### set $default_gaps_inner 12 set $default_gaps_outer 0 gaps inner $default_gaps_inner gaps outer $default_gaps_outer set $ws1 I set $ws2 II set $ws3 III set $ws4 IV set $ws5 V set $ws6 VI set $ws7 VII set $ws8 VIII set $ws9 IX set $ws10 X # use these keys for focus, movement, and resize directions when reaching for # the arrows is not convenient set $up k set $down j set $left h set $right l # use Mouse+Mod1 to drag floating windows to their wanted position floating_modifier Mod1 # start a terminal bindsym Mod1+Return exec --no-startup-id urxvt # kill focused window bindsym Mod1+q kill # start dmenu (a program launcher) #bindsym Mod1+d exec dmenu_run # 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 Mod1+d exec --no-startup-id i3-dmenu-desktop # change focus bindsym Mod1+$left focus left bindsym Mod1+$down focus down bindsym Mod1+$up focus up bindsym Mod1+$right focus right # alternatively, you can use the cursor keys: bindsym Mod1+Left focus left bindsym Mod1+Down focus down bindsym Mod1+Up focus up bindsym Mod1+Right focus right # move focused window bindsym Mod1+Shift+$left move left bindsym Mod1+Shift+$down move down bindsym Mod1+Shift+$up move up bindsym Mod1+Shift+$right move right # alternatively, you can use the cursor keys: bindsym Mod1+Shift+Left move left bindsym Mod1+Shift+Down move down bindsym Mod1+Shift+Up move up bindsym Mod1+Shift+Right move right # split in horizontal orientation bindsym Mod1+c split h # split in vertical orientation bindsym Mod1+v split v # enter fullscreen mode for the focused container bindsym Mod1+f fullscreen # change container layout (stacked, tabbed, toggle split) bindsym Mod1+s layout stacking bindsym Mod1+w layout tabbed bindsym Mod1+e layout toggle split # toggle tiling / floating bindsym Mod1+Shift+space floating toggle # change focus between tiling / floating windows bindsym Mod1+space focus mode_toggle # focus the parent container bindsym Mod1+a focus parent # focus the child container #bindsym Mod1+d focus child # move the currently focused window to the scratchpad bindsym Mod1+Shift+minus move scratchpad # Show the next scratchpad window or hide the focused scratchpad window. # If there are multiple scratchpad windows, this command cycles through them. bindsym Mod1+minus scratchpad show # switch to workspace bindsym Mod1+1 workspace $ws1 bindsym Mod1+2 workspace $ws2 bindsym Mod1+3 workspace $ws3 bindsym Mod1+4 workspace $ws4 bindsym Mod1+5 workspace $ws5 bindsym Mod1+6 workspace $ws6 bindsym Mod1+7 workspace $ws7 bindsym Mod1+8 workspace $ws8 bindsym Mod1+9 workspace $ws9 bindsym Mod1+0 workspace $ws10 # move focused container to workspace bindsym Mod1+Shift+1 move container to workspace $ws1 bindsym Mod1+Shift+2 move container to workspace $ws2 bindsym Mod1+Shift+3 move container to workspace $ws3 bindsym Mod1+Shift+4 move container to workspace $ws4 bindsym Mod1+Shift+5 move container to workspace $ws5 bindsym Mod1+Shift+6 move container to workspace $ws6 bindsym Mod1+Shift+7 move container to workspace $ws7 bindsym Mod1+Shift+8 move container to workspace $ws8 bindsym Mod1+Shift+9 move container to workspace $ws9 bindsym Mod1+Shift+0 move container to workspace $ws10 # reload the configuration file bindsym Mod1+Shift+c reload # restart i3 inplace (preserves your layout/session, can be used to upgrade i3) bindsym Mod1+Shift+r restart # exit i3 (logs you out of your X session) bindsym Mod1+Shift+e exec --no-startup-id "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 down will grow the window’s height. 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 # 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 Mod1+r mode "resize" ### Shortcuts ### bindsym XF86AudioRaiseVolume exec --no-startup-id amixer -c 1 sset 'Master' 5%+ bindsym XF86AudioLowerVolume exec --no-startup-id amixer -c 1 sset 'Master' 5%- bindsym XF86AudioMute exec --no-startup-id amixer sset 'Master' toggle bindsym XF86AudioPlay exec --no-startup-id playcontrols toggle bindsym XF86AudioStop exec --no-startup-id playcontrols stop bindsym XF86AudioPrev exec --no-startup-id playcontrols prev bindsym XF86AudioNext exec --no-startup-id playcontrols next bindsym XF86Calculator exec --no-startup-id gnome-calculator bindsym XF86TouchpadToggle exec --no-startup-id /home/luca/Documenti/toggletouchpad bindsym Mod4+F12 exec --no-startup-id amixer -c 1 sset 'Master' 5%+ bindsym Mod4+F11 exec --no-startup-id amixer -c 1 sset 'Master' 5%- bindsym Mod4+F10 exec --no-startup-id amixer sset 'Master' toggle bindsym Mod4+Down exec --no-startup-id playcontrols toggle bindsym Mod4+Up exec --no-startup-id playcontrols stop bindsym Mod4+Left exec --no-startup-id playcontrols prev bindsym Mod4+Right exec --no-startup-id playcontrols next bindsym Mod4+KP_Enter exec --no-startup-id gnome-calculator bindsym Mod4+F9 exec --no-startup-id /home/luca/Documenti/toggletouchpad bindsym Mod1+shift+g exec --no-startup-id geany bindsym Mod1+p exec --no-startup-id pcmanfm bindsym Mod1+shift+a exec --no-startup-id audacious bindsym Mod1+shift+n exec --no-startup-id urxvt -name ncmpcpp -e ncmpcpp -s playlist bindsym Mod1+shift+f exec --no-startup-id urxvt -name ranger -e ranger bindsym Mod1+shift+v exec --no-startup-id vlc bindsym Mod1+shift+s exec --no-startup-id spotify --ui.track_notifications_enabled=false bindsym Mod1+shift+i exec --no-startup-id icedove bindsym Mod1+shift+b exec --no-startup-id iceweasel bindsym Mod1+shift+p exec --no-startup-id urxvt -name games-launcher -e /home/luca/Documenti/games.sh bindsym Mod1+Print exec --no-startup-id scrot 'Schermata%Y-%m-%d-%T.png' -e 'mv $f ~/Immagini/' assign [class="Audacious"] $ws6 assign [class="Vlc"] $ws6 assign [class="Iceweasel"] $ws1 assign [class="Telegram"] $ws2 assign [class="Spotify"] $ws6 assign [class="pidgin"] $ws2 assign [class="URxvt" instance="ncmpcpp"] $ws3 assign [class="URxvt" instance="tty-clock"] $ws3 assign [class="URxvt" instance="mcabber"] $ws2 ### floating windows ### for_window [class="Steam"] floating enable for_window [class="Gimp"] floating enable for_window [class="PlayOnLinux"] floating enable for_window [class="URxvt" instance="games-launcher$"] move to workspace $ws5, floating enable , move absolute position 400px 200px ### Exec ### exec --no-startup-id compton -bG --config ~/.config/compton.conf exec --no-startup-id iceweasel exec --no-startup-id conky -c ~/.config/panel/empty_conky exec --no-startup-id i3-msg 'workspace $ws3' exec --no-startup-id mkfontdir ~/.local/share/fonts && xset +fp ~/.local/share/fonts && xset fp rehash && ~/.config/panel/bar_config exec --no-startup-id ~/Telegram exec --no-startup-id sh ~/.fehbg exec --no-startup-id mpd exec --no-startup-id urxvt -name ncmpcpp -e ncmpcpp -s playlist exec --no-startup-id urxvt -name tty-clock -e tty-clock -C 2 -c -d 20000000000 exec --no-startup-id xinput disable 'ETPS/2 Elantech Touchpad' exec --no-startup-id xinput set-prop 'USB Optical Mouse' 261 0.8 exec --no-startup-id sleep 3 && urxvt -name mcabber -e mcabbert