aboutsummaryrefslogtreecommitdiff
path: root/xconky
blob: d38fa556ebf7885ad357450b43fe433c03b3ec20 (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 &