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