Created
April 21, 2018 09:28
-
-
Save aleozlx/25e7f46dd1f8499aea2ce57d873875e5 to your computer and use it in GitHub Desktop.
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
| #!/bin/sh | |
| GPU_query="\033[34mGPU\033[0m » $(nvidia-smi --query-gpu=gpu_name,pstate,utilization.gpu,utilization.memory,temperature.gpu --format=csv,noheader|sed 's/,/ |/g') °C" | |
| i3status | while : | |
| do | |
| read line | |
| echo -e "$GPU_query | \033[34mCPU\033[0m » $line" || exit 1 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment