diff options
author | Jesús <heckyel@hyperbola.info> | 2019-04-23 15:35:56 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-04-23 15:35:56 -0500 |
commit | 2e399b105ecea123b42e9ed21ec1a562799e0cd6 (patch) | |
tree | 6c984abc8429960b75bf9ce6ad9484d4d506c5ed /scripts | |
parent | c1a11261f26ca8f8c0e94fda0f7acbe226e38452 (diff) | |
download | i3-config-2e399b105ecea123b42e9ed21ec1a562799e0cd6.tar.lz i3-config-2e399b105ecea123b42e9ed21ec1a562799e0cd6.tar.xz i3-config-2e399b105ecea123b42e9ed21ec1a562799e0cd6.zip |
temperature: use injected properties
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/i3blocks/temperature | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/i3blocks/temperature b/scripts/i3blocks/temperature index ad745c3..e362b48 100755 --- a/scripts/i3blocks/temperature +++ b/scripts/i3blocks/temperature @@ -1,8 +1,9 @@ -#!/usr/bin/perl +#!/usr/bin/env perl # Copyright 2014 Pierre Mavro <deimos@deimos.fr> # Copyright 2014 Vivien Didelot <vivien@didelot.org> # Copyright 2014 Andreas Guldstrand <andreas.guldstrand@gmail.com> # Copyright 2014 Benjamin Chretien <chretien at lirmm dot fr> +# Copyright 2019 Jesus E. <heckyel at hyperbola dot info> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,9 +26,9 @@ use Getopt::Long; binmode(STDOUT, ":utf8"); # default values -my $t_warn = 70; -my $t_crit = 90; -my $chip = ""; +my $t_warn = $ENV{T_WARN} || 70; +my $t_crit = $ENV{T_CRIT} || 90; +my $chip = $ENV{SENSOR_CHIP} || ""; my $temperature = -9999; sub help { @@ -64,6 +65,8 @@ if ($temperature >= $t_crit) { exit 33; } elsif ($temperature >= $t_warn) { print "#FFFC00\n"; +} elsif ($temperature < $t_warn) { + print "#18FFFF\n"; } exit 0; |