aboutsummaryrefslogtreecommitdiff
path: root/xconky
blob: 2ee8db9868b34932eba3af2b617864c04e2e73ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
#
# start multiple conky instances
#

# Default one
conky &

# Give time for networking
sleep 60

# Load weather data first
weather &> /dev/null

# Clear cache
brweather --clean-cache

# Weather
conky -c ~/.conky/weather/conkyrc &