184 lines
6.5 KiB
Text
184 lines
6.5 KiB
Text
# i3 config file (v4)
|
|
|
|
#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
|
|
|
|
# execute lockscreen.sh; sperrt rechner nach x min
|
|
exec_always --no-startup-id /home/mg/dotfiles/i3/scripte/lockscreen.sh
|
|
|
|
# enter lockscreen manually
|
|
bindsym $mod1+l exec --no-startup-id /home/mg/dotfiles/i3/scripte/lock.sh
|
|
|
|
# dimm screen
|
|
exec_always --no-startup-id /home/mg/dotfiles/i3/scripte/dimming.sh
|
|
|
|
# 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
|
|
|
|
# Use Mouse+$mod1 to drag floating windows to their wanted position
|
|
floating_modifier $mod1
|
|
|
|
# bildschirmhelligkeit
|
|
# heller; fn+f6
|
|
bindcode 233 exec sudo brightnessctl set +5%
|
|
#dunkler; fn+f7
|
|
bindcode 232 exec sudo brightnessctl set 5%-
|
|
|
|
# kill focused window
|
|
bindsym $mod2+F4 kill
|
|
bindsym $mod1+Shift+q kill
|
|
|
|
# start rofi
|
|
bindsym $mod1+d exec --no-startup-id /home/mg/dotfiles/i3/scripte/start_rofi.sh
|
|
|
|
# screenshots
|
|
bindsym $mod1+p exec --no-startup-id flameshot full -p /home/mg -c
|
|
bindsym Print exec --no-startup-id flameshot full -p /home/mg -c
|
|
bindsym $mod1+shift+p exec --no-startup-id flameshot gui
|
|
|
|
# change focus
|
|
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
|
|
|
|
# resize focused window
|
|
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
|
|
|
|
# split in horizontal orientation
|
|
bindsym $mod1+v split h
|
|
|
|
# split in vertical orientation
|
|
bindsym $mod1+h split v
|
|
|
|
# move focused workspace between monitors
|
|
bindsym $mod1+Ctrl+greater move workspace to output right
|
|
bindsym $mod1+Ctrl+less move workspace to output left
|
|
|
|
# enter fullscreen mode for the focused container
|
|
bindsym $mod1+f fullscreen toggle
|
|
|
|
|
|
# change container layout (stacked, tabbed, toggle split)
|
|
#bindsym $mod1+s layout stacking
|
|
bindsym $mod1+t layout tabbed
|
|
bindsym $mod1+s 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
|
|
|
|
# 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 $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
|
|
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
|
|
|
|
# move focused container to workspace and follow it
|
|
bindsym $mod1+Ctrl+1 move container to workspace number $ws1; workspace number $ws1
|
|
bindsym $mod1+Ctrl+2 move container to workspace number $ws2; workspace number $ws2
|
|
bindsym $mod1+Ctrl+3 move container to workspace number $ws3; workspace number $ws3
|
|
bindsym $mod1+Ctrl+4 move container to workspace number $ws4; workspace number $ws4
|
|
bindsym $mod1+Ctrl+5 move container to workspace number $ws5; workspace number $ws5
|
|
bindsym $mod1+Ctrl+6 move container to workspace number $ws6; workspace number $ws6
|
|
bindsym $mod1+Ctrl+7 move container to workspace number $ws7; workspace number $ws7
|
|
bindsym $mod1+Ctrl+8 move container to workspace number $ws8; workspace number $ws8
|
|
bindsym $mod1+Ctrl+9 move container to workspace number $ws9; workspace number $ws9
|
|
bindsym $mod1+Ctrl+0 move container to workspace number $ws10; workspace number $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 "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'"
|
|
|
|
# keine Fensterrahmen wenn nur ein Fenster angezeigt wird
|
|
hide_edge_borders smart
|
|
for_window [class=".*"] border pixel 1
|
|
|
|
# polybar
|
|
exec_always --no-startup-id /home/mg/dotfiles/polybar/launch.sh
|
|
|
|
# feh
|
|
exec --no-startup-id /usr/bin/feh --bg-scale /home/mg/dotfiles/i3/wallpaper/dogg.jpg
|
|
|
|
# polybar/popup-calendar
|
|
for_window [class="Yad" title="yad-calendar"] floating enable
|
|
|
|
# starte filemanager
|
|
bindsym $mod1+e exec fman
|
|
|
|
# starte alacritty
|
|
bindsym $mod1+r exec alacritty
|
|
bindsym $mod1+Return exec alacritty
|
|
|
|
# starte nextcloud
|
|
exec --no-startup-id /usr/bin/nextcloud
|
|
|
|
# starte "taschenrechner" immer als floating windows
|
|
for_window [class="Gnome-calculator" id=25165832 instance="gnome-calculator" title="Taschenrechner" window_role="gnome-calculator"] floating enable
|