Skip to content

Instantly share code, notes, and snippets.

@gggauravgandhi
Last active June 9, 2020 08:50
Show Gist options
  • Save gggauravgandhi/40e8a427a76899fce9e5f97f8976a3a7 to your computer and use it in GitHub Desktop.
Save gggauravgandhi/40e8a427a76899fce9e5f97f8976a3a7 to your computer and use it in GitHub Desktop.
Neofetch print color output every x seconds with buffer using while loop
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