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