Files
dotfiles/private_dot_config/i3/config
2023-10-11 18:25:42 +03:00

255 lines
7.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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 https://i3wm.org/docs/userguide.html for a complete reference!
#I split my conf so I don't lose my sanity
include colors.conf
include misc.conf
# include bar
set $mod Mod4
set $alt 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:Source Code Pro 10
# 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 10
# The combination of xss-lock, nm-applet and pactl is a popular choice, so
# they are included here as an example. Modify as you see fit.
# xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the
# screen before suspend. Use loginctl lock-session to lock your screen.
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock -i ~/Pictures/lockscreen.png
# NetworkManager is the most popular way to manage wireless networks on Linux,
# and nm-applet is a desktop environment-independent system tray GUI for it.
exec --no-startup-id nm-applet
# Use Mouse+$mod to drag floating windows to their wanted position
floating_modifier $mod
# start a terminal
bindsym $mod+Return exec kitty
bindsym $mod+Shift+Return exec i3-sensible-terminal
# kill focused window
#bindsym $mod+F4 kill
bindsym $mod+shift+Q kill
# start dmenu (a program launcher)
bindsym $mod+d exec rofi -show drun -modi drun
bindsym $alt+Tab exec rofi -show window -modi window
# change focus
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l 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+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l 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+shift+v split h
# split in vertical orientation
bindsym $mod+v split v
# enter fullscreen mode for the focused container
bindsym $mod+f 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
# focus the child container
#bindsym $mod+d focus child
# 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 $Terminal "1"
set $Browsers "2"
set $Code "3"
set $IRC "4"
set $Media "5"
set $Reading "6"
set $Youtube "7"
set $Steam "8"
set $Vm "9"
set $Notes "10"
set $Game "11"
set $Mail "12"
# switch to workspace
bindsym $mod+1 workspace number $Terminal
bindsym $mod+2 workspace number $Browsers
bindsym $mod+3 workspace number $Code
bindsym $mod+4 workspace number $IRC
bindsym $mod+5 workspace number $Media
bindsym $mod+6 workspace number $Reading
bindsym $mod+7 workspace number $Youtube
bindsym $mod+c workspace number $Notes
bindsym $mod+8 workspace number $Steam
bindsym $mod+g workspace number $Game
bindsym $mod+9 workspace number $Vm
bindsym $mod+m workspace number $Mail
bindsym $mod+0 workspace number $Reading
# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace number $Terminal
bindsym $mod+Shift+2 move container to workspace number $Browsers
bindsym $mod+Shift+3 move container to workspace number $Code
bindsym $mod+Shift+4 move container to workspace number $IRC
bindsym $mod+Shift+5 move container to workspace number $Media
bindsym $mod+Shift+6 move container to workspace number $Reading
bindsym $mod+Shift+7 move container to workspace number $Youtube
bindsym $mod+Shift+8 move container to workspace number $Steam
bindsym $mod+Shift+9 move container to workspace number $Vm
bindsym $mod+Shift+0 move container to workspace number $Reading
bindsym $mod+Shift+g move container to workspace number $Game
bindsym $mod+Shift+m move container to workspace number $Mail
# 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 windows width.
# Pressing right will grow the windows width.
# Pressing up will shrink the windows height.
# Pressing down will grow the windows height.
bindsym h resize shrink width 10 px or 10 ppt
bindsym j resize grow height 10 px or 10 ppt
bindsym k resize shrink height 10 px or 10 ppt
bindsym l 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 or $mod+r
bindsym Return mode "default"
bindsym Escape mode "default"
bindsym $mod+r mode "default"
}
mode "switch"{
# Can't decide if I want it to jump double time or not so I'm adding both
bindsym h workspace prev
bindsym l workspace next
bindsym Shift+h workspace prev;workspace prev
bindsym Shift+l workspace next;workspace next
# My finger do not like reaching for the numbers
bindsym a workspace number $Terminal
bindsym s workspace number $Browsers
bindsym d workspace number $Code
bindsym f workspace number $IRC
bindsym g workspace number $Game
bindsym c workspace number $Notes
bindsym q workspace number $Steam
bindsym v workspace number $Vm
bindsym m workspace number $Mail
bindsym w workspace number $Reading
bindsym e workspace number $Media
bindsym y workspace number $Youtube
bindsym Return mode "default"
bindsym Escape mode "default"
bindsym $mod+semicolon mode "default"
}
bindsym $mod+r mode "resize"
bindsym $mod+semicolon mode "switch"
# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
# Only enable gaps on a workspace when there is at least one container
#smart_gaps on
smart_borders on
# Only enable outer gaps when there is exactly one container
smart_gaps inverse_outer
#gaps
for_window [class="^.*"] border pixel 1
gaps inner 1
gaps outer 1
#Screenshot
#bindsym $mod+shift+s exec --no-startup-id flameshot gui
exec_always --no-startup-id flameshot
#Actually TouchPad Tap-To-Click
#exec xinput --set-prop "SynPS/2 Synaptics TouchPad" 287 1 1 1 1 1 1 1
#Gap Size changing
bindsym $mod+F9 gaps inner current plus 2
bindsym $mod+F10 gaps inner current minus 2
#fancylock
bindsym $mod+shift+F11 exec --no-startup-id i3lock -i ~/Pictures/lockscreen.png
#bindsym $mod+shift+s ~/scripts/screenshot.sh
bindsym $mod+shift+s exec flameshot gui
#This Is night colors
exec redshift
include window_rules.conf
include autostart.conf