2019-03-05 19:24:36 +01:00
|
|
|
# Keymapping philosophy:
|
|
|
|
# When I feel it's appropriate, I try to borrow existing KBDs from OSX or
|
|
|
|
# Windows. For example, I use Ctrl+Alt+Del to start the screen lock, since this
|
|
|
|
# is a really well-known KBD. One notable difference is that when I'm borrowing
|
|
|
|
# OSX KBDs, I prefer using Alt instead of Super since the keyboard that I'm
|
|
|
|
# using has the Alt key in the same location as the Super key on my mac
|
|
|
|
# keyboard. I could rebind this, and I just may. But for now, that's worth
|
|
|
|
# pointing out.
|
|
|
|
# The reason behind borrowing from Windows and OSX is that some of these
|
|
|
|
# keybindings are hardwired into my muscle memory. I also tend to work between
|
|
|
|
# Linux and OSX quite often. Since OSX is much more difficult to remap KBDs
|
|
|
|
# than it is in Linux, I prefer to support the OSX KBDs to reduce the number of
|
|
|
|
# KBDs my feeble memory needs to store.
|
|
|
|
|
2019-03-23 17:31:59 +01:00
|
|
|
set $mod Mod1
|
2019-10-09 13:13:56 +02:00
|
|
|
set $window Mod1+Ctrl
|
2019-03-23 17:31:59 +01:00
|
|
|
set $super Mod4
|
2019-10-09 13:13:56 +02:00
|
|
|
set $terminal terminator
|
|
|
|
set $browser google-chrome
|
2019-03-23 17:31:59 +01:00
|
|
|
|
2018-10-02 15:46:49 +02:00
|
|
|
# Font for window titles. Will also be used by the bar unless a different font
|
2019-10-09 13:13:56 +02:00
|
|
|
# is used in the bar block below.
|
|
|
|
font pango:Monospace 10px
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# Use Mouse+$mod to drag floating windows to their wanted position
|
|
|
|
floating_modifier $mod
|
|
|
|
|
2019-04-15 14:23:24 +02:00
|
|
|
# i3-gaps (depends on i3-gaps installation)
|
2019-10-09 13:13:56 +02:00
|
|
|
# gaps inner 7
|
|
|
|
# gaps outer 0
|
|
|
|
# smart_gaps on
|
|
|
|
#
|
|
|
|
# bindsym $mod+Ctrl+plus gaps outer current plus 5
|
|
|
|
# bindsym $mod+Ctrl+minus gaps outer current minus 5
|
|
|
|
# bindsym $mod+Shift+plus gaps inner current plus 5
|
|
|
|
# bindsym $mod+Shift+minus gaps inner current minus 5
|
|
|
|
|
|
|
|
# Support XF86 keys for audio playback and volume control
|
|
|
|
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle
|
|
|
|
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10%
|
|
|
|
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10%
|
|
|
|
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
|
|
|
|
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
|
|
|
bindsym XF86AudioStop exec --no-startup-id playerctl play-pause
|
|
|
|
bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
2019-03-05 19:24:36 +01:00
|
|
|
|
|
|
|
# KBD Principles:
|
2019-04-08 18:18:47 +02:00
|
|
|
# $mod+Ctrl+<app_char> = starting an application
|
2019-03-05 19:24:36 +01:00
|
|
|
# where <app_char> is a reserved character for a commonly used application.
|
|
|
|
#
|
|
|
|
# <app_char> definitions:
|
|
|
|
# terminal = t, Return
|
|
|
|
# emacs = e
|
|
|
|
# chrome = c
|
|
|
|
# spotify = s
|
2019-04-08 18:18:47 +02:00
|
|
|
# intellij = i
|
2019-10-09 13:13:56 +02:00
|
|
|
bindsym $mod+Ctrl+t exec $terminal
|
|
|
|
bindsym $mod+Return exec $terminal
|
|
|
|
bindsym $mod+Ctrl+e exec emacsclient --create-frame
|
|
|
|
bindsym $mod+Ctrl+c exec $browser
|
|
|
|
bindsym $mod+Ctrl+s exec spotify
|
|
|
|
bindsym $mod+Ctrl+i exec zsh -i -c intellij
|
2018-10-02 15:46:49 +02:00
|
|
|
|
2019-04-03 14:12:52 +02:00
|
|
|
# support dmenu-based bookmarks
|
2019-10-09 13:13:56 +02:00
|
|
|
# bindsym $mod+Ctrl+b exec rofi -dmenu <$DOTFILES/bookmarks.txt | xargs $browser
|
2019-04-03 14:12:52 +02:00
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
set $bookmarks_mode Bookmarks (a) add, (d) delete, (b) browse
|
|
|
|
mode "$bookmarks_mode" {
|
|
|
|
bindsym a exec zsh -i -c add_bookmark, mode "default"
|
|
|
|
bindsym d exec zsh -i -c rm_bookmark, mode "default"
|
|
|
|
bindsym b exec zsh -i -c open_bookmark, mode "default"
|
|
|
|
|
|
|
|
bindsym Escape mode "default"
|
|
|
|
bindsym Ctrl+g mode "default"
|
|
|
|
bindsym Ctrl+c mode "default"
|
|
|
|
}
|
|
|
|
bindsym $mod+Ctrl+b mode "$bookmarks_mode"
|
2019-03-28 18:30:32 +01:00
|
|
|
|
Drop OSX support; support desktop, laptop, cloudtop
Dropping support for OSX. Moving forward these dotfiles will depend on Linux
systems. Furthermore, since I'm support a ~/bin, the machines that consume these
dotfiles depend on i386 architectures. Linux and i386 are two dependencies that
I'm okay with since the leverage this assumption provides, makes their existence
tolerable.
There is some Google leakage herein, which includes aliases, functions, and
mentions of cloudtop. For now, this is okay. I may break the Google specific
code into its own repository, but for now, this is less maintenance.
This also introduces a ~/.profile instead of erroneously defining environment
variables in my zshrc file, which was unadvised.
This is a large commit and also introduces new aliases, variables, functions
that I accumulated over the past week or so while migrating away from OSX and
onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-18 15:14:26 +01:00
|
|
|
# pass integration
|
|
|
|
bindsym $mod+Ctrl+backslash exec ~/.config/i3/passmenu # mirroring the 1password KBD
|
|
|
|
|
2019-03-08 19:15:27 +01:00
|
|
|
# integrate with Emacs's org-mode
|
|
|
|
bindsym $mod+o exec zsh -i -c org_capture
|
2019-10-09 13:13:56 +02:00
|
|
|
# TODO: Support "coding size", "dialog-size" (for org_capture)
|
|
|
|
# TODO: Support way to cycle through predefined sizes.
|
|
|
|
for_window [class="GoogleEmacs" instance="floating"] floating enable, resize set height 1200px, resize set width 780px
|
|
|
|
|
|
|
|
# Here is a sketch of the cycle sizes idea.
|
|
|
|
# TODO: Support this.
|
|
|
|
# mode "cycle_sizes_floating_mode" {
|
|
|
|
# # coding mode
|
|
|
|
# bindsym a for_window [mode="floating", class="actively-selected"] resize set height 1200px, resize set width 780px
|
|
|
|
# bindsym b for_window [mode="floating", class="actively-selected"] resize set height 500px, resize set width 500px
|
|
|
|
#
|
|
|
|
# bindsym Escape mode "default"
|
|
|
|
# bindsym Ctrl+g mode "default"
|
|
|
|
# bindsym Ctrl+c mode "default"
|
|
|
|
# }
|
2019-03-08 19:15:27 +01:00
|
|
|
|
Drop OSX support; support desktop, laptop, cloudtop
Dropping support for OSX. Moving forward these dotfiles will depend on Linux
systems. Furthermore, since I'm support a ~/bin, the machines that consume these
dotfiles depend on i386 architectures. Linux and i386 are two dependencies that
I'm okay with since the leverage this assumption provides, makes their existence
tolerable.
There is some Google leakage herein, which includes aliases, functions, and
mentions of cloudtop. For now, this is okay. I may break the Google specific
code into its own repository, but for now, this is less maintenance.
This also introduces a ~/.profile instead of erroneously defining environment
variables in my zshrc file, which was unadvised.
This is a large commit and also introduces new aliases, variables, functions
that I accumulated over the past week or so while migrating away from OSX and
onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-18 15:14:26 +01:00
|
|
|
# ensure Spotify windows float
|
|
|
|
for_window [class="Spotify"] floating enable
|
|
|
|
|
2019-03-05 19:24:36 +01:00
|
|
|
# ensure system service that run through XDG start
|
2019-10-09 13:13:56 +02:00
|
|
|
exec --no-startup-id dex -ae i3
|
2018-10-02 15:46:49 +02:00
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
# rofi configuration
|
|
|
|
bindsym $mod+space exec --no-startup-id rofi -show combi
|
|
|
|
bindsym $mod+t exec --no-startup-id ~/.config/i3/dmenu_timer.sh ~/.local/share/sounds/gong.mp3
|
|
|
|
|
|
|
|
# switch workspaces
|
|
|
|
bindsym $mod+Tab workspace next
|
|
|
|
bindsym $mod+Shift+Tab workspace prev
|
Drop OSX support; support desktop, laptop, cloudtop
Dropping support for OSX. Moving forward these dotfiles will depend on Linux
systems. Furthermore, since I'm support a ~/bin, the machines that consume these
dotfiles depend on i386 architectures. Linux and i386 are two dependencies that
I'm okay with since the leverage this assumption provides, makes their existence
tolerable.
There is some Google leakage herein, which includes aliases, functions, and
mentions of cloudtop. For now, this is okay. I may break the Google specific
code into its own repository, but for now, this is less maintenance.
This also introduces a ~/.profile instead of erroneously defining environment
variables in my zshrc file, which was unadvised.
This is a large commit and also introduces new aliases, variables, functions
that I accumulated over the past week or so while migrating away from OSX and
onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-18 15:14:26 +01:00
|
|
|
|
|
|
|
# file manager
|
2019-10-09 13:13:56 +02:00
|
|
|
bindsym $mod+n exec $terminal -x lf ~/Dropbox
|
2019-03-05 19:24:36 +01:00
|
|
|
|
2019-04-01 19:26:40 +02:00
|
|
|
# clipboard manager
|
|
|
|
# NOTE: Ctrl-c is already covered since `clipmenu` listens for X clipboard
|
|
|
|
# events using `clipnotify`.
|
|
|
|
# NOTE: `clipmenud` is started in `.xsessionrc.shared`
|
2019-04-02 22:27:47 +02:00
|
|
|
# NOTE: This is a bit of a hack intended to support pasting in both the terminal
|
|
|
|
# and in GUI applications. `st` expects `ctrl+Shift+v` while GUIs expect
|
|
|
|
# `ctrl+v`. In the instances where GUIs don't support `ctrl+Shift+v` already, it
|
|
|
|
# acts like `ctrl+v`, so it should "just work".
|
|
|
|
bindsym Ctrl+$mod+v exec clipmenu && xdotool key --clearmodifiers ctrl+Shift+v
|
2019-04-01 19:26:40 +02:00
|
|
|
|
2019-03-05 19:24:36 +01:00
|
|
|
# Screenshot
|
2019-10-09 13:13:56 +02:00
|
|
|
# TODO: Support variants: (a) App (r) Region (f) Fullscreen.
|
|
|
|
# TODO: Support hosting to third-party image hosting.
|
|
|
|
set $screenshot_mode Screenshot (g) googleplex (l) local
|
|
|
|
mode "$screenshot_mode" {
|
|
|
|
bindsym g exec zsh -i -c snipit, mode "default"
|
|
|
|
bindsym l exec zsh -i -c screenshot, mode "default"
|
|
|
|
|
|
|
|
bindsym Escape mode "default"
|
|
|
|
bindsym Ctrl+g mode "default"
|
|
|
|
bindsym Ctrl+c mode "default"
|
|
|
|
}
|
|
|
|
bindsym $mod+s mode "$screenshot_mode"
|
2019-03-05 19:24:36 +01:00
|
|
|
|
|
|
|
# online documentation
|
2019-10-09 13:13:56 +02:00
|
|
|
bindsym $mod+Shift+slash exec $browser https://i3wm.org/docs/userguide.html
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# no title bars
|
2019-10-09 13:13:56 +02:00
|
|
|
for_window [class="^.*"] border pixel 1
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# disable mouse hover focus
|
|
|
|
focus_follows_mouse no
|
|
|
|
|
|
|
|
# kill focused window
|
2019-10-09 13:13:56 +02:00
|
|
|
bindsym $window+q kill
|
|
|
|
|
|
|
|
# Toggle focus
|
|
|
|
bindsym $window+f floating toggle
|
2018-10-02 15:46:49 +02:00
|
|
|
|
2019-01-13 20:26:14 +01:00
|
|
|
# GTK Themes
|
|
|
|
exec --no-startup-id gnome-settings-daemon
|
|
|
|
|
|
|
|
# wireless selection mechanism
|
|
|
|
exec --no-startup-id nm-applet
|
|
|
|
|
2019-03-27 19:19:21 +01:00
|
|
|
# set the split direction
|
|
|
|
bindsym $mod+v split vertical
|
|
|
|
# cannot bind $mod+h because of movement commands
|
|
|
|
bindsym $mod+Shift+v split horizontal
|
|
|
|
|
2019-01-13 20:26:14 +01:00
|
|
|
# sound applet
|
|
|
|
exec --no-startup-id gnome-sound-applet
|
|
|
|
|
2018-10-02 15:46:49 +02:00
|
|
|
# change focus
|
2019-10-09 13:13:56 +02:00
|
|
|
bindsym $window+h focus left
|
|
|
|
bindsym $window+j focus down
|
|
|
|
bindsym $window+k focus up
|
|
|
|
bindsym $window+l focus right
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# move focused window
|
2019-03-05 19:24:36 +01:00
|
|
|
bindsym $mod+Shift+h move left 100
|
|
|
|
bindsym $mod+Shift+j move down 100
|
|
|
|
bindsym $mod+Shift+k move up 100
|
|
|
|
bindsym $mod+Shift+l move right 100
|
2018-10-06 23:12:04 +02:00
|
|
|
|
2018-10-02 15:46:49 +02:00
|
|
|
# enter fullscreen mode for the focused container
|
2019-10-09 13:13:56 +02:00
|
|
|
bindsym $window+z fullscreen toggle
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# change container layout (stacked, tabbed, toggle split)
|
Drop OSX support; support desktop, laptop, cloudtop
Dropping support for OSX. Moving forward these dotfiles will depend on Linux
systems. Furthermore, since I'm support a ~/bin, the machines that consume these
dotfiles depend on i386 architectures. Linux and i386 are two dependencies that
I'm okay with since the leverage this assumption provides, makes their existence
tolerable.
There is some Google leakage herein, which includes aliases, functions, and
mentions of cloudtop. For now, this is okay. I may break the Google specific
code into its own repository, but for now, this is less maintenance.
This also introduces a ~/.profile instead of erroneously defining environment
variables in my zshrc file, which was unadvised.
This is a large commit and also introduces new aliases, variables, functions
that I accumulated over the past week or so while migrating away from OSX and
onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-18 15:14:26 +01:00
|
|
|
bindsym $super+e layout toggle split
|
|
|
|
bindsym $super+s layout stacking
|
|
|
|
bindsym $super+t layout tabbed
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# toggle tiling / floating
|
2019-03-05 19:24:36 +01:00
|
|
|
bindsym $mod+Shift+f floating toggle
|
|
|
|
|
|
|
|
# toggle stickiness
|
|
|
|
bindsym $mod+Shift+s sticky toggle
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# focus the parent container
|
2019-10-09 13:13:56 +02:00
|
|
|
# bindsym $mod+a focus parent
|
2019-03-28 18:29:43 +01:00
|
|
|
bindsym $mod+Shift+a focus child
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# Define names for default workspaces for which we configure key bindings later on.
|
|
|
|
# We use variables to avoid repeating the names in multiple places.
|
2019-03-05 19:24:36 +01:00
|
|
|
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"
|
2018-10-02 15:46:49 +02:00
|
|
|
set $ws10 "10"
|
|
|
|
|
2019-03-05 19:24:36 +01:00
|
|
|
# jump to workspace
|
2018-10-02 15:46:49 +02:00
|
|
|
bindsym $mod+1 workspace $ws1
|
|
|
|
bindsym $mod+2 workspace $ws2
|
|
|
|
bindsym $mod+3 workspace $ws3
|
|
|
|
bindsym $mod+4 workspace $ws4
|
|
|
|
bindsym $mod+5 workspace $ws5
|
|
|
|
bindsym $mod+6 workspace $ws6
|
|
|
|
bindsym $mod+7 workspace $ws7
|
|
|
|
bindsym $mod+8 workspace $ws8
|
|
|
|
bindsym $mod+9 workspace $ws9
|
|
|
|
bindsym $mod+0 workspace $ws10
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
# edit configuration files
|
|
|
|
# TODO: Standardize KBDs for C,R,U,D operations.
|
|
|
|
# TODO: Move shell script to /usr/local/bin
|
|
|
|
# Create
|
|
|
|
# TODO: Choose another KBD. This is temporary.
|
|
|
|
bindsym $mod+a exec zsh -i -c add_config
|
|
|
|
# Read
|
|
|
|
bindsym $mod+c exec zsh -i -c edit_config
|
|
|
|
# Update
|
|
|
|
# TODO: Support operation to update_config label and path
|
|
|
|
# Delete
|
|
|
|
bindsym $mod+Shift+c exec zsh -i -c rm_config
|
|
|
|
|
2019-03-05 19:24:36 +01:00
|
|
|
# move and follow focused container to workspace
|
|
|
|
bindsym $mod+Shift+1 move container to workspace $ws1; workspace $ws1
|
|
|
|
bindsym $mod+Shift+2 move container to workspace $ws2; workspace $ws2
|
2019-03-24 17:13:09 +01:00
|
|
|
bindsym $mod+Shift+3 move container to workspace $ws3; workspace $ws3
|
|
|
|
bindsym $mod+Shift+4 move container to workspace $ws4; workspace $ws4
|
2019-03-05 19:24:36 +01:00
|
|
|
bindsym $mod+Shift+5 move container to workspace $ws5; workspace $ws5
|
|
|
|
bindsym $mod+Shift+6 move container to workspace $ws6; workspace $ws6
|
|
|
|
bindsym $mod+Shift+7 move container to workspace $ws7; workspace $ws7
|
|
|
|
bindsym $mod+Shift+8 move container to workspace $ws8; workspace $ws8
|
|
|
|
bindsym $mod+Shift+9 move container to workspace $ws9; workspace $ws9
|
|
|
|
bindsym $mod+Shift+0 move container to workspace $ws10; workspace $ws10
|
2018-10-02 15:46:49 +02:00
|
|
|
|
Drop OSX support; support desktop, laptop, cloudtop
Dropping support for OSX. Moving forward these dotfiles will depend on Linux
systems. Furthermore, since I'm support a ~/bin, the machines that consume these
dotfiles depend on i386 architectures. Linux and i386 are two dependencies that
I'm okay with since the leverage this assumption provides, makes their existence
tolerable.
There is some Google leakage herein, which includes aliases, functions, and
mentions of cloudtop. For now, this is okay. I may break the Google specific
code into its own repository, but for now, this is less maintenance.
This also introduces a ~/.profile instead of erroneously defining environment
variables in my zshrc file, which was unadvised.
This is a large commit and also introduces new aliases, variables, functions
that I accumulated over the past week or so while migrating away from OSX and
onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-18 15:14:26 +01:00
|
|
|
# move focused container to workspace
|
|
|
|
bindsym $mod+Ctrl+1 move container to workspace $ws1
|
|
|
|
bindsym $mod+Ctrl+2 move container to workspace $ws2
|
|
|
|
bindsym $mod+Ctrl+3 move container to workspace $ws3
|
|
|
|
bindsym $mod+Ctrl+4 move container to workspace $ws4
|
|
|
|
bindsym $mod+Ctrl+5 move container to workspace $ws5
|
|
|
|
bindsym $mod+Ctrl+6 move container to workspace $ws6
|
|
|
|
bindsym $mod+Ctrl+7 move container to workspace $ws7
|
|
|
|
bindsym $mod+Ctrl+8 move container to workspace $ws8
|
|
|
|
bindsym $mod+Ctrl+9 move container to workspace $ws9
|
|
|
|
bindsym $mod+Ctrl+0 move container to workspace $ws10
|
|
|
|
|
|
|
|
# reload, restart i3
|
2019-03-23 17:31:59 +01:00
|
|
|
bindsym $super+r exec cat ~/.config/i3/config.shared ~/.config/i3/config.device >~/.config/i3/config; reload
|
|
|
|
bindsym $super+Shift+r exec cat ~/.config/i3/config.shared ~/.config/i3/config.device >~/.config/i3/config; restart
|
Drop OSX support; support desktop, laptop, cloudtop
Dropping support for OSX. Moving forward these dotfiles will depend on Linux
systems. Furthermore, since I'm support a ~/bin, the machines that consume these
dotfiles depend on i386 architectures. Linux and i386 are two dependencies that
I'm okay with since the leverage this assumption provides, makes their existence
tolerable.
There is some Google leakage herein, which includes aliases, functions, and
mentions of cloudtop. For now, this is okay. I may break the Google specific
code into its own repository, but for now, this is less maintenance.
This also introduces a ~/.profile instead of erroneously defining environment
variables in my zshrc file, which was unadvised.
This is a large commit and also introduces new aliases, variables, functions
that I accumulated over the past week or so while migrating away from OSX and
onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-18 15:14:26 +01:00
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
# logout dialog
|
|
|
|
set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown
|
|
|
|
mode "$mode_system" {
|
|
|
|
bindsym l exec --no-startup-id xsecurelock, mode "default"
|
|
|
|
bindsym e exit, mode "default"
|
|
|
|
bindsym s exec --no-startup-id xsecurelock && systemctl suspend, mode "default"
|
|
|
|
bindsym h exec --no-startup-id xsecurelock && systemctl hibernate, mode "default"
|
|
|
|
bindsym r exec --no-startup-id systemctl reboot, mode "default"
|
|
|
|
bindsym Shift+s exec --no-startup-id systemctl poweroff, mode "default"
|
|
|
|
|
|
|
|
# back to normal: Enter or Escape
|
|
|
|
bindsym Escape mode "default"
|
|
|
|
bindsym Ctrl+g mode "default"
|
|
|
|
bindsym Ctrl+c mode "default"
|
|
|
|
}
|
|
|
|
bindsym Ctrl+Mod1+Delete mode "$mode_system"
|
2018-10-02 15:46:49 +02:00
|
|
|
|
|
|
|
# resize window (you can also use the mouse for that)
|
|
|
|
mode "resize" {
|
2019-03-05 19:24:36 +01:00
|
|
|
bindsym h resize shrink width 10 px or 10 ppt
|
2018-10-02 15:46:49 +02:00
|
|
|
bindsym j resize shrink height 10 px or 10 ppt
|
2019-03-05 19:24:36 +01:00
|
|
|
bindsym k resize grow height 10 px or 10 ppt
|
|
|
|
bindsym l resize grow width 10 px or 10 ppt
|
2019-10-09 13:13:56 +02:00
|
|
|
|
|
|
|
bindsym Escape mode "default"
|
|
|
|
bindsym Ctrl+g mode "default"
|
|
|
|
bindsym Ctrl+c mode "default"
|
2018-10-02 15:46:49 +02:00
|
|
|
}
|
2019-01-13 20:26:14 +01:00
|
|
|
bindsym $mod+Shift+r mode "resize"
|
Drop OSX support; support desktop, laptop, cloudtop
Dropping support for OSX. Moving forward these dotfiles will depend on Linux
systems. Furthermore, since I'm support a ~/bin, the machines that consume these
dotfiles depend on i386 architectures. Linux and i386 are two dependencies that
I'm okay with since the leverage this assumption provides, makes their existence
tolerable.
There is some Google leakage herein, which includes aliases, functions, and
mentions of cloudtop. For now, this is okay. I may break the Google specific
code into its own repository, but for now, this is less maintenance.
This also introduces a ~/.profile instead of erroneously defining environment
variables in my zshrc file, which was unadvised.
This is a large commit and also introduces new aliases, variables, functions
that I accumulated over the past week or so while migrating away from OSX and
onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-18 15:14:26 +01:00
|
|
|
|
|
|
|
# passthrough mode to support Emacs, Tmux, Vim KBDs for window and pane management
|
|
|
|
mode "passthrough" {
|
|
|
|
bindsym $mod+Escape mode "default"
|
|
|
|
}
|
|
|
|
bindsym $mod+Escape mode "passthrough"
|
2018-10-02 15:46:49 +02:00
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
# class border backgr text indicator child_border
|
|
|
|
client.focused #83526a #83526a #8de0e1 #E8C35F #83526a
|
|
|
|
client.focused_inactive #83526a #83526a #8de0e1 #E8C35F #5a3849
|
|
|
|
client.unfocused #5a3849 #5a3849 #8de0e1 #E8C35F #5a3849
|
|
|
|
client.urgent #E8C35F #E8C35F #8de0e1 #E8C35F #E8C35F
|
|
|
|
client.placeholder #31213f #629c9d #8de0e1 #31213f #629c9d
|
|
|
|
client.background #31213f
|
2019-03-05 19:24:36 +01:00
|
|
|
|
|
|
|
bar {
|
|
|
|
status_command i3status
|
2019-10-09 13:13:56 +02:00
|
|
|
font pango:Monospace 10px
|
2019-03-05 19:24:36 +01:00
|
|
|
position top
|
2019-03-27 19:19:21 +01:00
|
|
|
# disable system tray icons
|
|
|
|
tray_output none
|
2019-03-21 15:57:32 +01:00
|
|
|
colors {
|
2019-10-09 13:13:56 +02:00
|
|
|
background #31213f
|
|
|
|
statusline #83526a # text color in status line
|
|
|
|
separator #83526a
|
|
|
|
# class border text indicator
|
|
|
|
focused_workspace #83526a #8de0e1 #31213f
|
|
|
|
active_workspace #83526a #5a3849 #83526a
|
|
|
|
inactive_workspace #5a3849 #83526a #5a3849
|
|
|
|
urgent_workspace #5a3849 #83526a #5a3849
|
2019-03-21 15:57:32 +01:00
|
|
|
}
|
2019-10-09 13:13:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# wpg integration
|
|
|
|
exec --no-startup-id ~/.config/wpg/wp_init.sh
|