dotfiles/i3/config

171 lines
5.6 KiB
Text
Raw Normal View History

# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
2021-06-29 16:32:58 +02:00
#Super/Windows-Taste
set $mod1 Mod4
#alt-Taste
set $mod2 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
# 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
# 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 --nofork
# 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 pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
2021-06-29 16:16:46 +02:00
# Use Mouse+$mod1 to drag floating windows to their wanted position
floating_modifier $mod1
2021-07-01 08:04:53 +02:00
# bildschirmhelligkeit
# heller; fn+f6
bindcode 233 exec sudo brightnessctl s +2%
#dunkler; fn+f7
bindcode 232 exec sudo brightnessctl s 2%-
# start a terminal
2021-06-29 16:16:46 +02:00
bindsym $mod1+Return exec alacritty
# kill focused window
2021-06-29 16:16:46 +02:00
bindsym $mod2+F4 kill
2021-06-29 19:56:57 +02:00
bindsym $mod1+Shift+q kill
# start rofi
2021-06-30 16:43:33 +02:00
bindsym $mod1+d exec --no-startup-id rofi -combi-modi window#drun#ssh -show combi
# change focus
2021-06-29 16:16:46 +02:00
bindsym $mod1+Left focus left
bindsym $mod1+Down focus down
bindsym $mod1+Up focus up
bindsym $mod1+Right focus right
# move focused window
2021-06-29 16:16:46 +02:00
bindsym $mod1+Shift+Left move left
bindsym $mod1+Shift+Down move down
bindsym $mod1+Shift+Up move up
bindsym $mod1+Shift+Right move right
2021-06-28 21:32:12 +02:00
# resize focused window
2021-06-29 16:16:46 +02:00
bindsym $mod1+Control+Left resize shrink width 10 px or 10 ppt
bindsym $mod1+Control+Down resize grow height 10 px or 10 ppt
bindsym $mod1+Control+Up resize shrink height 10 px or 10 ppt
bindsym $mod1+Control+Right resize grow width 10 px or 10 ppt
2021-06-28 21:32:12 +02:00
# split in horizontal orientation
2021-06-29 16:16:46 +02:00
bindsym $mod1+v split h
# split in vertical orientation
2021-06-29 16:16:46 +02:00
bindsym $mod1+h split v
2021-06-06 18:06:59 +02:00
# move focused workspace between monitors
2021-06-29 16:16:46 +02:00
bindsym $mod1+Ctrl+greater move workspace to output right
bindsym $mod1+Ctrl+less move workspace to output left
2021-06-06 18:06:59 +02:00
# enter fullscreen mode for the focused container
2021-06-29 16:16:46 +02:00
bindsym $mod1+f fullscreen toggle
2021-06-06 18:45:01 +02:00
# enter lockscreen
2021-06-29 16:16:46 +02:00
bindsym $mod1+l exec i3lock -c 000000
2021-06-06 18:45:01 +02:00
# change container layout (stacked, tabbed, toggle split)
2021-06-29 16:16:46 +02:00
#bindsym $mod1+s layout stacking
bindsym $mod1+w layout tabbed
2021-06-29 16:35:21 +02:00
bindsym $mod1+t layout toggle split
# toggle tiling / floating
2021-06-29 16:16:46 +02:00
bindsym $mod1+Shift+space floating toggle
# change focus between tiling / floating windows
2021-06-29 16:16:46 +02:00
bindsym $mod1+space focus mode_toggle
# focus the parent container
2021-06-29 16:16:46 +02:00
bindsym $mod1+a focus parent
# focus the child container
2021-06-29 16:16:46 +02:00
#bindsym $mod1+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
2021-06-29 16:16:46 +02:00
bindsym $mod1+1 workspace number $ws1
bindsym $mod1+2 workspace number $ws2
bindsym $mod1+3 workspace number $ws3
bindsym $mod1+4 workspace number $ws4
bindsym $mod1+5 workspace number $ws5
bindsym $mod1+6 workspace number $ws6
bindsym $mod1+7 workspace number $ws7
bindsym $mod1+8 workspace number $ws8
bindsym $mod1+9 workspace number $ws9
bindsym $mod1+0 workspace number $ws10
# move focused container to workspace
2021-06-29 16:16:46 +02:00
bindsym $mod1+Shift+1 move container to workspace number $ws1
bindsym $mod1+Shift+2 move container to workspace number $ws2
bindsym $mod1+Shift+3 move container to workspace number $ws3
bindsym $mod1+Shift+4 move container to workspace number $ws4
bindsym $mod1+Shift+5 move container to workspace number $ws5
bindsym $mod1+Shift+6 move container to workspace number $ws6
bindsym $mod1+Shift+7 move container to workspace number $ws7
bindsym $mod1+Shift+8 move container to workspace number $ws8
bindsym $mod1+Shift+9 move container to workspace number $ws9
bindsym $mod1+Shift+0 move container to workspace number $ws10
# reload the configuration file
2021-06-29 16:16:46 +02:00
bindsym $mod1+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
2021-06-29 16:16:46 +02:00
bindsym $mod1+Shift+r restart
# exit i3 (logs you out of your X session)
2021-06-29 16:16:46 +02:00
bindsym $mod1+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'"
2021-06-28 10:19:15 +02:00
# keine Fensterrahmen wenn nur ein Fenster angezeigt wird
hide_edge_borders smart
for_window [class=".*"] border pixel 1
2021-06-29 07:26:38 +02:00
2021-06-28 21:41:26 +02:00
# polybar
2021-06-05 17:42:28 +02:00
exec_always --no-startup-id /home/mg/dotfiles/polybar/launch.sh
2021-06-28 21:41:26 +02:00
# feh
exec --no-startup-id /usr/bin/feh --bg-scale /home/mg/dotfiles/i3/wallpaper/dogg.jpg
2021-06-28 21:55:44 +02:00
# polybar/popup-calendar
for_window [class="Yad" title="yad-calendar"] floating enable
2021-06-29 16:19:00 +02:00
# starte caja
bindsym $mod1+e exec caja
# starte alacritty
bindsym $mod1+r exec alacritty
2021-07-01 08:13:55 +02:00
# starte nextcloud
exec --no-startup-id /usr/bin/nextcloud