blob: 1d7dd8098f1130952d04570e07698e5b6eac13c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
daily () {
o "$BROWSER" https://github.com/notifications https://mail.google.com
# alacritty --hold must be before -e
# full window: -w156, am and pm in one line: -w114
o alacritty --hold -e rem -cu+2 -@ -w114
o alacritty --hold -e wtr
o alacritty -e newsboat
o alacritty -e weechat
o telegram-desktop
}
monthly () {
o alacritty --hold -e rate xmr@60d
daily
}
if [ $# -eq 0 ]; then
daily
else
while getopts m opt; do
case $opt in
m) monthly;;
\?) exit 1;;
esac
done
fi
|