configs  Check-in [af18365ba3]

Overview
Comment:xinitrc: Add NetBSD-specific part, switch to tcwm
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: af18365ba3a08973be52ac06f9defe7b1629d0c57f366c34ac65bf097653493a
User & Date: js on 2020-12-31 00:54:56
Other Links: manifest | tags
Context
2020-12-31
00:59
Xdefaults: Use -256color version for TERM check-in: 8f4442c4a6 user: js tags: trunk
00:54
xinitrc: Add NetBSD-specific part, switch to tcwm check-in: af18365ba3 user: js tags: trunk
2020-12-28
03:59
zshrc: Add fallback for 8 color terminals check-in: 9e42654d41 user: js tags: trunk
Changes

Modified xinitrc from [36b84b79d1] to [3b1f045783].





1
2
3
4
5
6
7

8


9


10




xset fp+ /usr/local/share/fonts/terminus
xset fp+ /usr/local/share/fonts/mscorefont
xset fp+ /usr/local/share/fonts/noto
xmodmap "$HOME/.Xmodmap"
xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation" 1
xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation Button" 2
xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation Axes" 7 6 5 4

export GNUSTEP_USER_ROOT="$HOME/.gnustep"


xidle -program "/usr/X11R6/bin/xlock -usefirst" -timeout 300 &


exec dbus-launch ssh-agent wmaker
>
>
>
>
|
|
|
|
|
|
|
>
|
>
>
|
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
if [ "$(uname)" = "NetBSD" ]; then
	echo "EXECUTING" >/tmp/foo
	xset fp+ /usr/pkg/share/fonts/X11/misc
elif [ "$(uname)" = "OpenBSD" ]; then
	xset fp+ /usr/local/share/fonts/terminus
	xset fp+ /usr/local/share/fonts/mscorefont
	xset fp+ /usr/local/share/fonts/noto

	xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation" 1
	xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation Button" 2
	xinput set-prop "/dev/wsmouse" "WS Pointer Wheel Emulation Axes" 7 6 5 4
fi

xmodmap "$HOME/.Xmodmap"
if type -q xidle && type -q xlock; then
	xidle -program "$(which xlock) -usefirst" -timeout 300 &
fi

exec ssh-agent ctwm -W