8 lines
162 B
Bash
8 lines
162 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Restart system time synchronization
|
||
|
|
# archypr:requires-sudo=true
|
||
|
|
|
||
|
|
echo "Updating time..."
|
||
|
|
sudo systemctl restart systemd-timesyncd
|