chaged structure and added intsal script

This commit is contained in:
Jürg Hallenbarter
2026-01-26 08:35:13 +00:00
parent 0279dceb7f
commit d15ca29883
10 changed files with 182 additions and 108 deletions

112
i3/config Normal file
View File

@@ -0,0 +1,112 @@
# ----------------------------------------
# Minimal i3 config (no fluff, no bar)
# ----------------------------------------
set $mod Mod4
font pango:monospace 10
# ----------------------------------------
# Applications (from settings/)
# ----------------------------------------
bindsym $mod+Return exec ~/.config/MyI3Config/settings/terminal.sh
bindsym $mod+b exec ~/.config/MyI3Config/settings/browser.sh
bindsym $mod+e exec ~/.config/MyI3Config/settings/filemanager.sh
bindsym $mod+Ctrl+c exec ~/.config/MyI3Config/settings/calculator.sh
bindsym $mod+Ctrl+Return exec rofi -show drun -i
# ----------------------------------------
# Window management
# ----------------------------------------
bindsym $mod+q kill
# Kill all windows of same class
bindsym $mod+Shift+q exec --no-startup-id ~/.config/MyI3Config/i3/kill-same-class.sh
bindsym $mod+f fullscreen toggle
bindsym $mod+t floating toggle
bindsym $mod+j split toggle
bindsym $mod+m fullscreen toggle
# ----------------------------------------
# Overlay power menu
# ----------------------------------------
bindsym $mod+Control+q exec --no-startup-id ~/.config/MyI3Config/i3/overlay-menu.sh
# ----------------------------------------
# Focus / move / resize
# ----------------------------------------
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
bindsym $mod+Control+Left move left; move cursor to window
bindsym $mod+Control+Down move down; move cursor to window
bindsym $mod+Control+Up move up; move cursor to window
bindsym $mod+Control+Right move right; move cursor to window
bindsym $mod+Shift+Left resize shrink width 10 px or 10 ppt
bindsym $mod+Shift+Down resize grow height 10 px or 10 ppt
bindsym $mod+Shift+Up resize shrink height 10 px or 10 ppt
bindsym $mod+Shift+Right resize grow width 10 px or 10 ppt
# ----------------------------------------
# Workspaces
# ----------------------------------------
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
# ----------------------------------------
# Reload / Restart
# ----------------------------------------
bindsym $mod+Shift+c reload
bindsym $mod+Shift+r restart
# ----------------------------------------
# Screenshot
# ----------------------------------------
bindsym $mod+Shift+s exec maim -s | xclip -selection clipboard -t image/png
# ----------------------------------------
# Keyboard layout
# ----------------------------------------
exec --no-startup-id setxkbmap -layout ch -variant de
bindsym $mod+space exec --no-startup-id ~/.config/MyI3Config/i3/layout-toggle.sh
# ----------------------------------------
# Lock
# ----------------------------------------
bindsym $mod+l exec i3lock
# ----------------------------------------
# Visuals
# ----------------------------------------
default_border pixel 1
floating_modifier $mod
focus_follows_mouse yes
# ----------------------------------------
# Startup
# ----------------------------------------
exec --no-startup-id xsetroot -cursor_name left_ptr
exec --no-startup-id xrandr --output HDMI-1 --auto --left-of DP-2 --output DP-2 --auto

9
i3/layout-toggle.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
# Toggle between Swiss German (CH_DE) and US Workman layouts
CURRENT=$(setxkbmap -query | grep layout | awk '{print $2}')
if [ "$CURRENT" = "ch" ]; then
setxkbmap -layout us -variant workman
else
setxkbmap -layout ch -variant de
fi

12
i3/overlay-menu.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
# Fullscreen overlay menu
OPTIONS="Reboot\nShutdown\nLock Screen\nCancel"
CHOICE=$(echo -e $OPTIONS | rofi -dmenu -fullscreen -p "Action" -lines 4 -bw 2 -kb-accept-entry 'Return' -kb-cancel 'Escape')
case "$CHOICE" in
"Reboot") systemctl reboot ;;
"Shutdown") systemctl poweroff ;;
"Lock Screen") i3lock ;;
"Cancel"|"") exit 0 ;;
esac