10 lines
174 B
Desktop File
10 lines
174 B
Desktop File
# vim:ft=systemd:
|
|
[Unit]
|
|
Description=Project fetch service
|
|
|
|
[Service]
|
|
ExecStart=find %h/Projects -type d -iname .git -execdir git fetch \;
|
|
|
|
[Install]
|
|
WantedBy=default.target
|