41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
$OpenBSD: patch-man_i3_man,v 1.3 2019/01/13 12:48:10 rsadowski Exp $
|
|
Index: man/i3.man
|
|
--- man/i3.man.orig
|
|
+++ man/i3.man
|
|
@@ -172,8 +172,8 @@ When starting, i3 looks for configuration files in the
|
|
|
|
1. ~/.config/i3/config (or $XDG_CONFIG_HOME/i3/config if set)
|
|
2. ~/.i3/config
|
|
-3. /etc/xdg/i3/config (or $XDG_CONFIG_DIRS/i3/config if set)
|
|
-4. /etc/i3/config
|
|
+3. ${SYSCONFDIR}/xdg/i3/config (or $XDG_CONFIG_DIRS/i3/config if set)
|
|
+4. ${SYSCONFDIR}/i3/config
|
|
|
|
You can specify a custom path using the -c option.
|
|
|
|
@@ -197,13 +197,13 @@ font pango:DejaVu Sans Mono 8
|
|
floating_modifier Mod1
|
|
|
|
# start a terminal
|
|
-bindsym Mod1+Return exec /usr/bin/urxvt
|
|
+bindsym Mod1+Return exec ${X11BASE}/bin/xterm
|
|
|
|
# kill focused window
|
|
bindsym Mod1+Shift+q kill
|
|
|
|
# start dmenu (a program launcher)
|
|
-bindsym Mod1+d exec /usr/bin/dmenu_run
|
|
+bindsym Mod1+d exec ${LOCALBASE}/bin/dmenu_run
|
|
|
|
# change focus
|
|
bindsym Mod1+j focus left
|
|
@@ -316,7 +316,7 @@ ulimit -c unlimited
|
|
|
|
# Start i3 and log to ~/.i3/logfile
|
|
echo "Starting at $(date)" >> ~/.i3/logfile
|
|
-exec /usr/bin/i3 -V -d all >> ~/.i3/logfile
|
|
+exec ${TRUEPREFIX}/bin/i3 -V -d all >> ~/.i3/logfile
|
|
-------------------------------------------------------------
|
|
|
|
== ENVIRONMENT
|