test
This commit is contained in:
parent
3d00b2d055
commit
fe509d267f
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@
|
|||
whoami
|
||||
id
|
||||
source ~/.bashrc
|
||||
TIME=`x /tmp/wttr.in .weather[0].astronomy[0].sunrise`
|
||||
TIME=`cat /tmp/wttr.in | grep sunrise | head -n 1 | awk {'print $2" "$3'} | sed -e 's/"//g' | sed -e 's/,//'`
|
||||
echo "Time to run at: $TIME"
|
||||
echo "plasma-apply-colorscheme -platform offscreen Arc" | at $TIME
|
||||
'';
|
||||
|
@ -71,7 +71,7 @@
|
|||
whoami
|
||||
id
|
||||
source ~/.bashrc
|
||||
TIME=`fx /tmp/wttr.in .weather[0].astronomy[0].sunset`
|
||||
TIME=`cat /tmp/wttr.in | grep sunset | head -n 1 | awk {'print $2" "$3'} | sed -e 's/"//g' | sed -e 's/,//'`
|
||||
echo "Time to run at: $TIME"
|
||||
echo "plasma-apply-colorscheme -platform offscreen ArcDark" | at $TIME
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue