about summary refs log tree commit diff
path: root/configs/linux
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2018-10-02T13·46-0400
committerWilliam Carroll <wpcarro@gmail.com>2018-10-02T13·49-0400
commitf06b2edf5cb7cdac391ff4f485f05d192f8ee34c (patch)
treef9323c62ed91ff43ca685e7e64f80c011dca5797 /configs/linux
parent17ee0e400bef47c371afcae76037f9ea6a44ad13 (diff)
Support additional Linux configurations
- i3 - window manager
- Terminator - terminal preferences
- Rofi - kind of like Finder, but also like Helm and Ivy; dmenu
  replacement
Diffstat (limited to 'configs/linux')
-rw-r--r--configs/linux/misc/.config/i3/config130
-rw-r--r--configs/linux/misc/.config/rofi/config1
-rw-r--r--configs/linux/misc/.config/terminator/config19
3 files changed, 150 insertions, 0 deletions
diff --git a/configs/linux/misc/.config/i3/config b/configs/linux/misc/.config/i3/config
new file mode 100644
index 000000000000..92b1d0728ac3
--- /dev/null
+++ b/configs/linux/misc/.config/i3/config
@@ -0,0 +1,130 @@
+set $mod 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
+
+# Use Mouse+$mod to drag floating windows to their wanted position
+floating_modifier $mod
+
+# gaps
+gaps inner 20
+gaps outer 0
+smart_gaps on
+
+# ensure wallpaper
+exec --no-startup-id feh --bg-scale ~/pictures/soft-gradient.jpg
+
+# start a terminal
+bindsym $mod+Return exec terminator
+
+# no title bars
+for_window [class="^.*"] border pixel 0
+
+# disable mouse hover focus
+focus_follows_mouse no
+
+# kill focused window
+bindsym $mod+q kill
+
+# start dmenu (a program launcher)
+bindsym $mod+d exec --no-startup-id i3-dmenu-desktop --dmenu='rofi -i -dmenu -width 40 -lines 8'
+
+# change focus
+bindsym $mod+h focus left
+bindsym $mod+j focus down
+bindsym $mod+k focus up
+bindsym $mod+l focus right
+
+# move focused window
+bindsym $mod+Shift+h move left
+bindsym $mod+Shift+j move down
+bindsym $mod+Shift+k move up
+bindsym $mod+Shift+l move right
+
+# split in vertical orientation
+bindsym $mod+v split v
+
+# enter fullscreen mode for the focused container
+bindsym $mod+z fullscreen toggle
+
+# change container layout (stacked, tabbed, toggle split)
+bindsym $mod+s layout stacking
+bindsym $mod+w layout tabbed
+bindsym $mod+e layout toggle split
+
+# toggle tiling / floating
+bindsym $mod+Shift+space floating toggle
+
+# change focus between tiling / floating windows
+bindsym $mod+space focus mode_toggle
+
+# focus the parent container
+bindsym $mod+a focus parent
+
+# 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 $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
+
+# move focused container to workspace
+bindsym $mod+Shift+1 move container to workspace $ws1
+bindsym $mod+Shift+2 move container to workspace $ws2
+bindsym $mod+Shift+3 move container to workspace $ws3
+bindsym $mod+Shift+4 move container to workspace $ws4
+bindsym $mod+Shift+5 move container to workspace $ws5
+bindsym $mod+Shift+6 move container to workspace $ws6
+bindsym $mod+Shift+7 move container to workspace $ws7
+bindsym $mod+Shift+8 move container to workspace $ws8
+bindsym $mod+Shift+9 move container to workspace $ws9
+bindsym $mod+Shift+0 move container to workspace $ws10
+
+# reload the configuration file
+bindsym $mod+Shift+c reload
+# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
+bindsym $mod+Shift+r 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'"
+
+# resize window (you can also use the mouse for that)
+mode "resize" {
+        bindsym h resize shrink width 10 px or 10 ppt
+        bindsym j resize shrink height 10 px or 10 ppt
+        bindsym k resize grow height 10 px or 10 ppt
+        bindsym l resize grow width 10 px or 10 ppt
+
+        # back to normal: Enter or Escape or $mod+r
+        bindsym Return mode "default"
+        bindsym Caps_Lock mode "default"
+        bindsym $mod+r mode "default"
+}
+
+bindsym $mod+r mode "resize"
+
+# Start i3bar to display a workspace bar (plus the system information i3status
+# finds out, if available)
+bar {
+        status_command i3status
+        position top
+        font pango:monospace 14
+}
diff --git a/configs/linux/misc/.config/rofi/config b/configs/linux/misc/.config/rofi/config
new file mode 100644
index 000000000000..e2359c84c6b4
--- /dev/null
+++ b/configs/linux/misc/.config/rofi/config
@@ -0,0 +1 @@
+rofi.theme: /nix/store/7mkpd855nvfbpvh8jh5j54hzaqcbf70n-rofi-1.5.0/share/rofi/themes/purple.rasi
diff --git a/configs/linux/misc/.config/terminator/config b/configs/linux/misc/.config/terminator/config
new file mode 100644
index 000000000000..8409b74f32e5
--- /dev/null
+++ b/configs/linux/misc/.config/terminator/config
@@ -0,0 +1,19 @@
+[global_config]
+[keybindings]
+[layouts]
+  [[default]]
+    [[[child1]]]
+      parent = window0
+      type = Terminal
+    [[[window0]]]
+      parent = ""
+      type = Window
+[plugins]
+[profiles]
+  [[default]]
+    cursor_color = "#aaaaaa"
+    cursor_shape = ibeam
+    font = Monospace 14
+    use_system_font = False
+    scrollbar_position = "disabled"
+    show_titlebar = False