12 lines
290 B
Bash
12 lines
290 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
service_file="$HOME/.config/systemd/user/autostart@.service"
|
||
|
if [ ! -f "$service_file" ]; then
|
||
|
_deploy_service_file "$service_file"
|
||
|
fi
|
||
|
|
||
|
target_file="$HOME/.config/systemd/user/autostart.target"
|
||
|
if [ ! -f "$target_file" ]; then
|
||
|
_deploy_target_file "$target_file"
|
||
|
fi
|