blob: 782d031d52b3fdac5cf461b0450d11b4944b3119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
#
# Start calendar application.
#
# Set title.
xtitle -q calendar
# For some reason, we have to sleep a while, otherwise wyrd won't start.
sleep 0.03
# Start wyrd.
calendar
|