Add ~/.terminfo/s/st*
[khome.git] / home / .xlaunch
CommitLineData
d6c84e8b
SK
1#! /bin/bash
2
3set -e
4
5
6launch_common() {
7 xbindkeys
8 xscreensaver &
9 mpd --kill || true
10 mpd
11 for script in ~/.xlaunch.d/*; do
12 "$script"
13 done
14}
15
16launch_specialized() {
17 # XXX dunst lazily started by dbus
18 for script in ~/.xlaunch.d."$(hostname)"/*; do
19 "$script"
20 done
21}
22
23launch_common
24launch_specialized
25
26exec dwm
This page took 0.027443 seconds and 4 git commands to generate.