summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Vertes <mvertes@free.fr>2021-02-28 22:10:26 +0100
committerMarc Vertes <mvertes@free.fr>2021-02-28 22:10:26 +0100
commit737e83162766162be992f76e068386736abea71d (patch)
tree0e732e0a6b72e8f978b85d779bfb83f3aa6b1a64
parent29e9c274e7bb795254c46737050cb6f3f538e7b8 (diff)
update
-rw-r--r--.Xresources2
-rwxr-xr-xbin/rdate11
2 files changed, 12 insertions, 1 deletions
diff --git a/.Xresources b/.Xresources
index 8aaf72c..28b8436 100644
--- a/.Xresources
+++ b/.Xresources
@@ -21,7 +21,7 @@ xterm*VT100.Translations: #override \
Meta <Key> minus: smaller-vt-font() \n\
Meta <Key> equal: larger-vt-font() \n
xterm*cursorColor: red
-xterm*visualBell: true
+!xterm*visualBell: true
!xterm*geometry: 100x32
!xterm*faceName: DejaVu Sans Mono
!xterm*faceSize: 10
diff --git a/bin/rdate b/bin/rdate
new file mode 100755
index 0000000..a69d137
--- /dev/null
+++ b/bin/rdate
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Set date on remote machine from local one. This version works
+# from MacOS to AlpineLinux. It is intended to re-sync clock of a
+# virtual machine after host wakeup.
+
+# TODO: option to display the time difference between host and remote.
+# hint: use 'date +%s' to get timestamp in seconds since epoch.
+
+ssh "$1" "sudo date $(date +%m%d%H%M%Y.%S)"
+