From f5f449434400933fe99d8dee07cee9571c787316 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Sat, 10 Apr 2021 09:59:33 +1000 Subject: Add basic i3 config --- .config/i3/config | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ .xinitrc | 5 +++ 2 files changed, 111 insertions(+) create mode 100644 .config/i3/config create mode 100755 .xinitrc diff --git a/.config/i3/config b/.config/i3/config new file mode 100644 index 0000000..c343c3d --- /dev/null +++ b/.config/i3/config @@ -0,0 +1,106 @@ +# i3 config file (v4) +# Nick's light i3 config + +set $mod Mod4 +set $alt Mod1 + +floating_modifier $mod +font pango:monospace 12 + +for_window [instance="keepassxc"] floating enable +for_window [instance="keepassxc"] sticky enable +for_window [instance="gnome-calculator"] floating enable + +# hide title bar +for_window [class="^.*"] border pixel 2 +new_window 1pixel + +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 + +# Bindings +bindsym $mod+Return exec i3-sensible-terminal +bindsym $mod+Shift+q kill +bindsym $mod+space exec --no-startup-id dmenu_run + +bindsym $mod+h focus left +bindsym $mod+j focus down +bindsym $mod+k focus up +bindsym $mod+l focus right + +bindsym $mod+Left focus left +bindsym $mod+Down focus down +bindsym $mod+Up focus up +bindsym $mod+Right focus right + +bindsym $mod+Shift+h move left +bindsym $mod+Shift+j move down +bindsym $mod+Shift+k move up +bindsym $mod+Shift+l move right + +bindsym $mod+Shift+Left move left +bindsym $mod+Shift+Down move down +bindsym $mod+Shift+Up move up +bindsym $mod+Shift+Right move right + +bindsym $mod+s split toggle + +bindsym $mod+f fullscreen toggle + +bindsym $mod+y layout split +bindsym $mod+Shift+t layout tabbed +bindsym $mod+Ctrl+t layout toggle stacking + +bindsym $mod+Shift+space floating toggle +bindsym $mod+Ctrl+space focus mode_toggle + +bindsym $mod+a focus parent + +# Workspaces +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" + +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+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+F10 reload +bindsym $mod+Control+F10 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'" + +bindsym $mod+$alt+h resize shrink width 10 px or 10 ppt +bindsym $mod+$alt+j resize grow height 10 px or 10 ppt +bindsym $mod+$alt+k resize shrink height 10 px or 10 ppt +bindsym $mod+$alt+l resize grow width 10 px or 10 ppt + +bar { + status_command i3status + position top +} diff --git a/.xinitrc b/.xinitrc new file mode 100755 index 0000000..e91d8ea --- /dev/null +++ b/.xinitrc @@ -0,0 +1,5 @@ +#!/bin/sh + +xset r rate 200 50 +setxkbmap -option caps:escape +exec i3 -- cgit