aboutsummaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authortoni <matzeton@googlemail.com>2014-10-09 12:24:37 +0200
committertoni <matzeton@googlemail.com>2014-10-09 12:24:37 +0200
commita8b21a7ba80729348141c9539cb89d7b82f798aa (patch)
tree3b48aee4b1ff6b9b356f8b5fbc2e5d4c879244f9 /configs
parent9fa8d938c040e47fa883cabd9dbf8e1aba3addb8 (diff)
xmobarrc: display gpu temp (nvidia-smi)
Diffstat (limited to 'configs')
-rw-r--r--configs/sleepd5
-rwxr-xr-xconfigs/xmobar_gputemp.sh3
-rw-r--r--configs/xmobarrc5
3 files changed, 11 insertions, 2 deletions
diff --git a/configs/sleepd b/configs/sleepd
new file mode 100644
index 0000000..bd9c639
--- /dev/null
+++ b/configs/sleepd
@@ -0,0 +1,5 @@
+# This is a configuration file for /etc/init.d/sleepd.
+
+# Parameters to pass to sleepd.
+#PARAMS="-l 0.3 -a -s '/usr/sbin/s2ram --force' -u 600 -r 1000 -t 1000"
+PARAMS="-l 0.3 -a -s '/usr/sbin/s2ram --force' -u 600"
diff --git a/configs/xmobar_gputemp.sh b/configs/xmobar_gputemp.sh
new file mode 100755
index 0000000..c4dffe3
--- /dev/null
+++ b/configs/xmobar_gputemp.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+nvidia-smi | grep -oE '[0-9]{2,3}C'
diff --git a/configs/xmobarrc b/configs/xmobarrc
index 337b4be..a15e566 100644
--- a/configs/xmobarrc
+++ b/configs/xmobarrc
@@ -3,8 +3,9 @@ Config { font = "-misc-fixed-*-*-*-*-18-*-*-*-*-*-*-*"
, border = NoBorder
, borderColor = "black"
, fgColor = "grey"
- , position = TopW L 85
- , commands = [ Run Com "~/.xmobar_cputemp.sh" ["CPU"] "ctmp" 10
+ , position = TopW L 100
+ , commands = [ Run Com "~/.xmobar_gputemp.sh" ["GPU"] "gtmp" 10
+ , Run Com "~/.xmobar_cputemp.sh" ["CPU"] "ctmp" 10
, Run Com "~/.xmobar_cputemp.sh" ["MB"] "mtmp" 10
, Run Network "eth0" ["-L","0","-H","32","--normal","green","--high","red"] 10
, Run Network "eth1" ["-L","0","-H","32","--normal","green","--high","red"] 10