Skip to content

Instantly share code, notes, and snippets.

View Misko-2083's full-sized avatar

Милош Павловић Misko-2083

View GitHub Profile
@Misko-2083
Misko-2083 / yadtime.sh
Last active April 28, 2024 11:53
A simple YAD (Yet another Dialog) Time and Date bash script
#!/bin/bash
# Pipe
while true
do
echo "1:#$(date '+%T')"
echo "1:$(date '+%1S')"
echo "2:#$(date '+%D %a')"
echo "2:$((60-$(date '+%1S')))"
sleep 1