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