Cleaning, adding some commands, etc.
parent
8879215470
commit
72c1267824
@ -1,13 +1,31 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if command -v mbsync &> /dev/null; then
|
# Required parameters:
|
||||||
|
# @raycast.schemaVersion 1
|
||||||
|
# @raycast.title Test
|
||||||
|
# @raycast.mode compact
|
||||||
|
|
||||||
|
# Optional parameters:
|
||||||
|
# @raycast.icon 🤖
|
||||||
|
|
||||||
|
# Documentation:
|
||||||
|
# @raycast.author dustinswan
|
||||||
|
# @raycast.authorURL https://raycast.com/dustinswan
|
||||||
|
|
||||||
|
if
|
||||||
|
command -v mbsync >/dev/null
|
||||||
|
then
|
||||||
mbsync -a
|
mbsync -a
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if command -v mu &> /dev/null; then
|
if
|
||||||
|
command -v mu >/dev/null
|
||||||
|
then
|
||||||
mu index
|
mu index
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if command -v vdirsyncer &> /dev/null; then
|
if
|
||||||
|
command -v vdirsyncer >/dev/null
|
||||||
|
then
|
||||||
vdirsyncer sync
|
vdirsyncer sync
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue