13 lines
405 B
Bash
13 lines
405 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
sleep 10
|
||
|
|
/usr/bin/conky -d -c $HOME/Files/Public-Configuration/center.conkyrc
|
||
|
|
sleep 3
|
||
|
|
/usr/bin/conky -d -c $HOME/Files/Public-Configuration/left.conkyrc
|
||
|
|
sleep 3
|
||
|
|
/usr/bin/conky -d -c $HOME/Files/Public-Configuration/right.conkyrc
|
||
|
|
sleep 3
|
||
|
|
/usr/bin/conky -d -c $HOME/Files/Public-Configuration/bottom-right.conkyrc
|
||
|
|
sleep 3
|
||
|
|
/usr/bin/conky -d -c $HOME/Files/Public-Configuration/bottom-left.conkyrc
|