Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,11 @@ These commands are so easy to use that creating a script for them would be overk
```sh
df
```

### ⏰ Show Digital Clock on screen

Script: [digital-clock]

```sh
digital-clock
```
7 changes: 7 additions & 0 deletions digital-clock.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Show Digital Clock on Screen
while true
do
banner `date +%X`
sleep 1
clear
done