Last active
June 9, 2020 08:50
-
-
Save gggauravgandhi/40e8a427a76899fce9e5f97f8976a3a7 to your computer and use it in GitHub Desktop.
Neofetch print color output every x seconds with buffer using while loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while true; do neofetch --backend off > /tmp/neofetch_file; clear; cat /tmp/neofetch_file; sleep 60; done | |
# or | |
watch -ctn 1 'neofetch | sed "s/25[hl]//g;s/7[hl]//"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment