278 lines
8.8 KiB
Plaintext
278 lines
8.8 KiB
Plaintext
# 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!
|
||
|
||
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.
|
||
font pango:Noto Sans 11
|
||
|
||
# To disable titlebar
|
||
default_border pixel 1
|
||
default_floating_border pixel 1
|
||
|
||
for_window [class="Thunar" instance="thunar"] floating enable
|
||
for_window [class="Gnome-screenshot" instance="gnome-screenshot"] floating enable
|
||
for_window [class="File-roller" instance="file-roller"] floating enable
|
||
|
||
# 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
|
||
|
||
# Linux (brightnessctl)
|
||
set $get_brightness $(brightnessctl info | grep -Eo '[0-9]+%' | cut -d% -f1)
|
||
set $incr_brightness brightnessctl set +5%
|
||
set $decr_brightness brightnessctl set 5%-
|
||
|
||
# FreeBSD (intel-backlight)
|
||
# set $get_brightness $(intel_backlight | grep -Eo '[0-9]+%' | cut -d% -f1)
|
||
# set $incr_brightness intel_backlight incr || true
|
||
# set $decr_brightness intel_backlight decr || true
|
||
|
||
bindsym XF86MonBrightnessUp \
|
||
exec --no-startup-id $incr_brightness \
|
||
&& notify-send \
|
||
-u low \
|
||
-h int:value:$get_brightness \
|
||
-h string:synchronous:volume "Brightness: $get_brightness %"
|
||
bindsym XF86MonBrightnessDown \
|
||
exec --no-startup-id $decr_brightness \
|
||
&& notify-send \
|
||
-u low \
|
||
-h int:value:$get_brightness \
|
||
-h string:synchronous:volume "Brightness: $get_brightness %"
|
||
|
||
bindsym XF86AudioPlay \
|
||
exec --no-startup-id playerctl play-pause \
|
||
&& sleep 0.05 \
|
||
&& notify-send \
|
||
-u low \
|
||
-h string:synchronous:play "Media: $(playerctl status)"
|
||
bindsym XF86AudioNext \
|
||
exec --no-startup-id playerctl next
|
||
bindsym XF86AudioPrev \
|
||
exec --no-startup-id playerctl previous
|
||
bindsym XF86AudioStop \
|
||
exec --no-startup-id playerctl stop
|
||
|
||
# Use Mouse+$mod to drag floating windows to their wanted position
|
||
floating_modifier $mod
|
||
|
||
# move tiling windows via drag & drop by left-clicking into the title bar,
|
||
# or left-clicking anywhere into the window while holding the floating modifier.
|
||
tiling_drag modifier titlebar
|
||
|
||
# kill focused window
|
||
bindsym $mod+Shift+q kill
|
||
|
||
# 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+v split h
|
||
|
||
# split in vertical orientation
|
||
bindsym $mod+c split v
|
||
|
||
# enter fullscreen mode for the focused container
|
||
bindsym $mod+f fullscreen toggle
|
||
|
||
# change container layout (stacked, tabbed, toggle split)
|
||
bindsym $mod+Shift+a layout stacking
|
||
bindsym $mod+Shift+w layout tabbed
|
||
bindsym $mod+Shift+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 $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 number $ws1
|
||
bindsym $mod+2 workspace number $ws2
|
||
bindsym $mod+3 workspace number $ws3
|
||
bindsym $mod+4 workspace number $ws4
|
||
bindsym $mod+5 workspace number $ws5
|
||
bindsym $mod+6 workspace number $ws6
|
||
bindsym $mod+7 workspace number $ws7
|
||
bindsym $mod+8 workspace number $ws8
|
||
bindsym $mod+9 workspace number $ws9
|
||
bindsym $mod+0 workspace number $ws10
|
||
|
||
# move focused container to workspace
|
||
bindsym $mod+Shift+1 move container to workspace number $ws1
|
||
bindsym $mod+Shift+2 move container to workspace number $ws2
|
||
bindsym $mod+Shift+3 move container to workspace number $ws3
|
||
bindsym $mod+Shift+4 move container to workspace number $ws4
|
||
bindsym $mod+Shift+5 move container to workspace number $ws5
|
||
bindsym $mod+Shift+6 move container to workspace number $ws6
|
||
bindsym $mod+Shift+7 move container to workspace number $ws7
|
||
bindsym $mod+Shift+8 move container to workspace number $ws8
|
||
bindsym $mod+Shift+9 move container to workspace number $ws9
|
||
bindsym $mod+Shift+0 move container to workspace number $ws10
|
||
|
||
# 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+x exec --no-startup-id \
|
||
"i3-nagbar \
|
||
-t warning \
|
||
-p \
|
||
-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'"
|
||
bindsym $mod+Ctrl+Shift+x exec --no-startup-id i3-msg exit
|
||
# lock screen
|
||
bindsym $mod+Shift+o exec --no-startup-id i3lock --color 000000 && sleep 5 && xset dpms force off
|
||
|
||
# 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 h resize shrink width 5 px
|
||
bindsym j resize grow height 5 px
|
||
bindsym k resize shrink height 5 px
|
||
bindsym l resize grow width 5 px
|
||
|
||
# same bindings, but for the arrow keys
|
||
bindsym Left resize shrink width 5 px
|
||
bindsym Down resize grow height 5 px
|
||
bindsym Up resize shrink height 5 px
|
||
bindsym Right resize grow width 5 px
|
||
|
||
# back to normal: Enter or Escape or $mod+r
|
||
bindsym Return mode "default"
|
||
bindsym Escape mode "default"
|
||
bindsym $mod+r mode "default"
|
||
}
|
||
|
||
bindsym $mod+r mode "resize"
|
||
|
||
# Custom options
|
||
focus_follows_mouse yes
|
||
mouse_warping none
|
||
# hide_edge_borders smart
|
||
|
||
# Custom bindings
|
||
bindsym $mod+Ctrl+Right move workspace to output right
|
||
bindsym $mod+Ctrl+Left move workspace to output left
|
||
bindsym $mod+Ctrl+l move workspace to output right
|
||
bindsym $mod+Ctrl+h move workspace to output left
|
||
bindsym $mod+Tab workspace next_on_output
|
||
bindsym $mod+Shift+Tab workspace prev_on_output
|
||
|
||
# Launchers
|
||
bindsym $mod+d exec --no-startup-id rofi -show drun
|
||
bindsym $mod+F2 exec --no-startup-id rofi -show run
|
||
# bindsym $mod+e exec --no-startup-id rofi -show filebrowser
|
||
bindsym $mod+e exec --no-startup-id thunar
|
||
bindsym $mod+Return exec --no-startup-id i3-sensible-terminal
|
||
bindsym $mod+Shift+s exec --no-startup-id gnome-screenshot --interactive
|
||
|
||
# Scratchpad
|
||
# Make the currently focused window a scratchpad
|
||
bindsym $mod+Shift+minus move scratchpad
|
||
# Show the first scratchpad window
|
||
bindsym $mod+minus scratchpad show
|
||
# mode "scratchpad" {
|
||
# bindsym $mod+Tab scratchpad show; scratchpad show
|
||
# bindsym Return floating toggle; mode "default"
|
||
# bindsym Escape scratchpad show; mode "default"
|
||
# bindsym $mod+Escape mode "default"
|
||
# }
|
||
|
||
# bindsym $mod+Tab mode "scratchpad"; scratchpad show
|
||
|
||
# Custom theme
|
||
# class border backgr. text indicator child_border
|
||
client.focused #323437 #323437 #bdbdbd #949494 #949494
|
||
#client.focused #9e9e9e #9e9e9e #080808 #323437 #323437
|
||
client.focused_inactive #323437 #323437 #bdbdbd #323437 #323437
|
||
client.unfocused #323437 #1c1c1c #9e9e9e #323437 #323437
|
||
client.urgent #9d3b19 #9d3b19 #bdbdbd #9d3b19 #9d3b19
|
||
client.placeholder #323437 #323437 #bdbdbd #323437 #323437
|
||
|
||
client.background #ffffff
|
||
|
||
# Start i3bar to display a workspace bar (plus the system information i3status
|
||
# finds out, if available)
|
||
|
||
bar {
|
||
# id primary-bar
|
||
# output primary
|
||
font pango:Noto Sans 11
|
||
position top
|
||
workspace_buttons yes
|
||
# workspace_min_width 40px
|
||
# height 40
|
||
tray_output primary
|
||
tray_padding 4
|
||
separator_symbol " "
|
||
status_command get-status
|
||
colors {
|
||
separator #d3d7cf
|
||
background #080808
|
||
statusline #e4e4e4
|
||
focused_workspace #4c7899 #285577 #e4e4e4
|
||
active_workspace #323437 #323437 #bdbdbd
|
||
inactive_workspace #323437 #080808 #bdbdbd
|
||
urgent_workspace #9d3b19 #9d3b19 #d3d7cf
|
||
}
|
||
}
|
||
|