dot/xinitrc: Support for GNU Emacs 24.
[profile] / dot / xinitrc
CommitLineData
f617db13 1#! /bin/bash
8e08f814
MW
2###
3### X startup script
f617db13 4
8e08f814
MW
5###--------------------------------------------------------------------------
6### Utility functions.
f617db13 7
8e08f814
MW
8## Progress indicators.
9info=yes
10info () {
11 case $info in yes) echo "- $*" >&2 ;; esac
12}
f617db13 13
8e08f814
MW
14run=yes
15run () {
16 local what=$1; shift
17 local bg=no
f617db13 18
8e08f814
MW
19 case $what in bg*) bg=yes what=${what#bg} ;; esac
20 info "run $what: $*"
f617db13 21
8e08f814
MW
22 case "$run,$bg" in
23 yes,no) "$@" ;;
24 yes,yes) "$@" & ;;
25 esac
26}
eebca092 27
74bd743a
MW
28manage () {
29 local when=$(date +%s) now
30 local fail=0 rc report
31
32 while :; do
33 "$@"; rc=$?
34 case $rc in
35 0) info "manage $1: successful exit"; break ;;
36 143) info "manage $1: terminated"; break ;;
37 esac
38 now=$(date +%s)
39 report="rc = $rc"
40 if (( $now - $when > 5 )); then
41 fail=0
42 else
43 report="$report, early failure"
44 fail=$(( $fail + 1 ))
45 if (( $fail >= 5 )); then
46 info "manage $1: exit ($report), giving up after $fail failures"
47 break
48 fi
49 fi
50 info "manage $1: exit ($report), restarting"
51 when=$now
52 done
53}
54
8e08f814 55## Program choice
eebca092 56pick_program () {
8e08f814
MW
57 local what=$1; shift
58 local choice=false
eebca092 59 for i in "$@"; do
8e08f814 60 if type -t >/dev/null "$i"; then choice=$i; break; fi
eebca092 61 done
8e08f814
MW
62 info "pick $what = $choice"
63 echo "$choice"
eebca092
MW
64}
65
8e08f814
MW
66###--------------------------------------------------------------------------
67### Parse arguments.
f617db13 68
8e08f814
MW
69vnc=no
70atomtag=
71start=yes
72wait=yes
f617db13 73
8e08f814
MW
74for opt; do
75 case "$opt" in
76 help)
77 cat <<EOF
78Options:
79 tag=TAG
80 [no]trace
81 [no]info
82 [no]run
83 [no]start
84 [no]wait
85 [no]vnc
86EOF
87 exit
88 ;;
f617db13 89
8e08f814
MW
90 tag=*) atomtag=/${opt#tag=} ;;
91 trace) set -x ;;
92 notrace) set +x ;;
93 info | run | start | wait | vnc) eval "$opt=yes" ;;
94 noinfo | norun | nostart | nowait | novnc) eval "${opt#no}=no" ;;
95
96 *) echo "unknown option $opt" >&2; exit 1 ;;
97 esac
98done
99
100###--------------------------------------------------------------------------
27b6787d
MW
101### Preliminary hook.
102
103if [ -r $HOME/.xinitrc-prehook ]; then
104 . $HOME/.xinitrc-prehook
105fi
106
107###--------------------------------------------------------------------------
8e08f814
MW
108### Iniitial settings.
109
110## Assume X sessions are secure.
111export __mdw_sechost="`hostname`"
112
113## Obtain the screen dimensions.
114case ",$XWIDTH,$XHEIGHT," in
115 *,,*) eval $(xscsize -bx) ;;
116esac
117info "screen size = $XWIDTH x $XHEIGHT"
118
119initialize () {
120 ## Load the X resource database.
121 run init xrdb -override $HOME/.Xdefaults
122
123 ## Random xsettery.
8ab9747e 124 run init xset b 5 2000 50
8e08f814
MW
125 run init xset r rate 500 50
126 run init xset m 2 1
127
f4450ac9 128 ## Key mappings.
cd38b61d
MW
129 xmodmap $HOME/.xmodmap
130 if [ -r $HOME/.xmodmap-local ]; then
131 xmodmap $HOME/.xmodmap-local
132 fi
8e08f814
MW
133}
134
135###--------------------------------------------------------------------------
136### Start a window manager.
137
6f6bd6da 138wm=$(pick_program window-manager e16 compiz enlightenment e17 twm)
8e08f814
MW
139wmopts=""
140case "$wm,$vnc" in
141 enlightenment,yes | e16,yes)
142 wmopts="$eopts -econfdir $HOME/.enlightenment-vnc"
143 ;;
144esac
145
16ee7a8c 146start-e16 () {
74bd743a 147 run bginit manage $wm $wmopts
16ee7a8c
MW
148 win=nil
149 for i in $(seq 10); do
b35a9c36 150 sleep 1
16ee7a8c
MW
151 if eesh version >/dev/null 2>&1; then
152 win=t
153 break
154 fi
16ee7a8c
MW
155 done
156 case $win in
157 t)
158 info "$wm started ok"
159 run init xsetroot -cursor_name left_ptr
160 ;;
161 nil)
162 info "$wm failed to start!"
163 ;;
164 esac
165}
166
167start-window-manager () {
168 case $(type -t start-$wm || echo "not-found") in
169 function)
170 start-$wm $wmopts
171 ;;
172 *)
74bd743a 173 run bginit manage $wm $wmopts
16ee7a8c
MW
174 ;;
175 esac
8e08f814
MW
176}
177
178###--------------------------------------------------------------------------
179### Random useful clients.
180
54951353
MW
181start-clients-local () { :; }
182
8e08f814 183start-clients () {
2e60c7f3 184
5587cf4f 185 ## Gnome session.
d83c96c9
MW
186 case "$vnc,$(xfce4-session --version 2>&1),$(gnome-session --version 2>&1)"
187 in
188 no,xfce4-session*)
189 run bginit xfce4-session
190 ;;
191 no,*,gnome-session\ 2.3[2-9].* | \
192 no,*,gnome-session\ 2.4[0-9].* | \
193 no,*,gnome-session\ 2.[1-9][0-9][0-9]*)
2e60c7f3
MW
194 run bginit gnome-session --session mdw
195 ;;
d83c96c9 196 no,*,gnome-session*)
2e60c7f3
MW
197 run bginit gnome-session
198 ;;
199 esac
54951353
MW
200
201 ## Local clients.
202 start-clients-local
8e08f814
MW
203}
204
205###--------------------------------------------------------------------------
206### Main screen layout.
f617db13 207
8e08f814 208## Choose appropriate clients.
384f691a 209emacs=$(pick_program emacs emacs23 emacs24 emacs22 emacs21 emacs)
8e08f814 210term=$(pick_program terminal pterm Eterm xterm)
f617db13 211
8e08f814 212## Emacs window measurements.
85bbf8d3 213case "$emacs" in
8e08f814 214 emacs21 | emacs)
85bbf8d3
MW
215 e_colwd=492 e_hextra=34
216 e_colchars=82 e_cextra=-2
217 e_lineht=13 e_vextra=52
218 ;;
0c47c911 219 emacs22 | emacs23)
85bbf8d3
MW
220 e_colwd=492 e_hextra=8
221 e_colchars=82 e_cextra=-6
222 e_lineht=13 e_vextra=46
223 ;;
384f691a
MW
224 emacs24)
225 e_colwd=492 e_hextra=5
226 e_colchars=82 e_cextra=-6
227 e_lineht=13 e_vextra=42
228 ;;
85bbf8d3 229esac
f617db13 230
8e08f814 231## Terminal window measurements.
85bbf8d3 232case "$term" in
e2b44bd9 233 pterm) t_wd=504 t_lineht=13 t_vextra=23 geom=-geometry;;
85bbf8d3
MW
234 Eterm) t_wd=504 t_lineht=13 t_vextra=23 geom=-g;;
235 xterm) t_wd=507 t_lineht=13 t_vextra=27 geom=-geometry;;
236esac
f617db13 237
8e08f814 238## GNOME stuff measurements.
f617db13
MW
239declare -i xbound="XWIDTH - 113"
240
8e08f814
MW
241## Choose a width for Emacs.
242##
243## We'd like it to be as wide as possible, allowing for a column of xterms
244## down the right hand side. However, I'd prefer a double-width Emacs to a
245## single-width Emacs and xterms. If it's not going to work at all, a single
246## Emacs column will have to do. Also, there's a strange thing with Emacs21
247## and the toolbar, so we add on some rows which are later mysteriously
248## subtracted.
f617db13 249
85bbf8d3
MW
250declare -i ecols="(xbound - t_wd - e_hextra)/e_colwd"
251if (( ecols < 2 && xbound > e_colwd * 2 + e_hextra )); then
f617db13
MW
252 ecols=2
253elif (( ecols < 1 )); then
254 ecols=1
255fi
256
8e08f814
MW
257declare -i \
258 emacsx="ecols * e_colchars + e_cextra" \
259 emacsy="(XHEIGHT - e_vextra)/e_lineht"
260
261start-emacs () {
bf057abe 262 GDK_NATIVE_WINDOWS=1 run bgclients noip \
89b55d90 263 $emacs -bg black -geometry ${emacsx}x${emacsy}+0+0
8e08f814
MW
264}
265
266## Now place some xterms.
267##
268## A few smaller xterms are in general better than one great big one. 35
269## lines is a good height for most terminals. 25 lines is a minimum. The
270## strategy for doling out xterms into a column is to make as many 35-liners
271## as we can, until the remaining space would be too small for a 25-liner.
272## If we can get two 25s out of that then we do (largest first); otherwise
273## just make one big one. We stop at the end of a page, once we've made
274## three xterms.
275
276start-xterms () {
277
278 ## Initialize some parameters.
6b4faba6 279 declare -i x="ecols * e_colwd + e_hextra" xb=xbound
8e08f814
MW
280 declare -i n=0 pgx=0 l h y ht
281 declare -i hstd="35 * t_lineht + t_vextra" hmin="25 * t_lineht + t_vextra"
282
283 ## Do the placement.
284 while :; do
285
286 ## Start a new iteration.
6b4faba6 287 if ((x + t_wd > xb)); then
8e08f814 288 if ((n >= 3)); then break; fi
6b4faba6 289 x="pgx + XWIDTH" pgx="pgx + XWIDTH" xb="xb + XWIDTH"
8e08f814
MW
290 fi
291
292 ## Make large xterms.
293 y=0 ht=XHEIGHT
294 while ((ht - hstd >= hmin)); do
295 run bgclients $term $geom 80x35+$x+$y
296 y="y + hstd" ht="ht - hstd" n="n + 1"
297 done
298
299 ## Fill the remaining space.
300 if ((ht >= 2 * hmin)); then h="ht - hmin"; else h=ht; fi
301 l="(h - t_vextra)/t_lineht" h="l * t_lineht + t_vextra"
302 run bgclients $term $geom 80x$l+$x+$y
303 y="y + h" ht="ht - h" n="n + 1"
304 if ((ht >= hmin)); then
305 run bgclients $term $geom 80x25+$x+$y
306 n="n + 1"
307 fi
308 x="x + t_wd"
f617db13 309 done
8e08f814 310}
f617db13 311
8e08f814 312###--------------------------------------------------------------------------
3bdada49
MW
313### Requesters.
314
315req () {
316 declare title=$1 hist=$2; shift 2
3f88bd1f 317 cmd=$(xgetline -t "$title" -p "_Command:" -Hl "$HOME/$hist") &&
3bdada49
MW
318 exec "$@" "$cmd"
319}
320
321###--------------------------------------------------------------------------
8e08f814
MW
322### Final waiting.
323
324atom=XINIT_COMMAND$atomtag
325
326xwait () {
327 while :; do
328 xatom delete $atom
329 info "waiting on $atom"
330 line=$(xatom wait $atom)
331 info "xatom: $line"
332
333 case "$line" in
334 :help)
335 xmsg -I -t "xinitrc help" -d "xinitrc commands" - <<EOF &
336:help
337:emacs :xterms :window-manager :clients
3bdada49 338:ask-run :ask-command
8e08f814
MW
339:init
340:terminal
341! SHELL-COMMAND
342CLIENT
343EOF
344 ;;
345 :emacs | :xterms | :window-manager | :clients)
346 start-${line#:}
347 ;;
348 :terminal)
349 run bgclients $term
350 ;;
351 :init)
352 initialize
353 ;;
354 :exec)
355 info "restarting xinitrc"
356 exec "$0" wait nostart
357 ;;
3bdada49 358 :ask-run)
a6780078 359 req "Shell command" .cmd.hist xcatch -F"Fixed 13" -- sh -c&
3bdada49
MW
360 ;;
361 :ask-command)
362 req "xinit command" .xinit.hist xatom set XINIT_COMMAND$atomtag&
363 ;;
8e08f814
MW
364 :*)
365 xmsg -E -t "xinitrc error" "Unknown command \`$line'" &
366 ;;
367 !*)
368 eval "${line#!}"
369 ;;
370 *)
2f616761 371 set -- $line
8e08f814
MW
372 run bgclients "$@"
373 ;;
374 esac
375 done
376}
377
378###--------------------------------------------------------------------------
8ca91005
MW
379### Gnome session care and feeding.
380
381session-running-p () {
382 dbus-send --session --print-reply --dest=org.freedesktop.DBus / \
383 org.freedesktop.DBus.GetNameOwner string:org.gnome.SessionManager \
384 >/dev/null 2>&1
385}
386
d83c96c9
MW
387dbus-service-running-p () {
388 dbus-send >/dev/null 2>&1 --session --print-reply \
389 --dest=org.freedesktop.DBus / \
390 org.freedesktop.DBus.GetNameOwner string:$1
391}
392
8ca91005 393kill-gnome-session () {
d83c96c9
MW
394 win=nil
395 while read service object logout; do
396 if dbus-service-running-p $service; then win=t; break; fi
397 done <<EOF
398org.xfce.SessionManager /org/xfce/SessionManager org.xfce.Session.Manager.Shutdown uint32:1 boolean:false
399org.gnome.SessionManager /org/gnome/SessionManager org.gnome.SessionManager.Logout uint32:2
400EOF
401 case $win in nil) return ;; esac
402 info "killing session manager"
403 dbus-send --session --dest=$service $object $logout
404 for i in 1 2 3 4 5; do
405 sleep 1
406 if ! dbus-service-running-p $service; then break; fi
407 done
8ca91005
MW
408}
409
410###--------------------------------------------------------------------------
8e08f814
MW
411### Actually start things up.
412
54951353
MW
413if [ -f $HOME/.xinitrc-local ]; then
414 . $HOME/.xinitrc-local
415fi
416
8e08f814
MW
417case "$start" in
418 yes)
419 info "starting standard clients"
420 initialize
421 start-window-manager
422 start-clients
423 start-emacs
424 start-xterms
425 ;;
426 no)
427 info "not starting standard clients"
428 ;;
429esac
430
431case "$wait" in
432 yes)
433 xwait
8ca91005 434 kill-gnome-session
8e08f814
MW
435 ;;
436 no)
437 info "not waiting before exit"
438 ;;
439esac
f617db13 440
8e08f814 441###----- That's all, folks --------------------------------------------------