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/bash | |
| used=`nvidia-smi | grep % | cut -c 47-51 | xargs | tr -d '\n'` | |
| max=8192 | |
| echo "scale=3;($used/$max)*100" | bc |
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
| [global_config] | |
| enabled_plugins = LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler | |
| title_transmit_fg_color = "#FFFF66" | |
| title_inactive_fg_color = "#AEAEAE" | |
| title_transmit_bg_color = "#0076C9" | |
| inactive_color_offset = 0.82 | |
| title_inactive_bg_color = "#000000" | |
| [keybindings] | |
| [profiles] | |
| [[default]] |
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
| -- -*- mode: lua; -*- | |
| -- -*- tab-width: 4 -*- | |
| --########################## | |
| -- conky configuration | |
| --########################## | |
| -- see http://conky.sourceforge.net/config_settings.html | |
| conky.config = { | |
| -- set to yes if you want conky to be forked in the background | |
| background = true, |