blob: 94d794fc55648f83c0094e954e38b626fb39b6d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set-conky-update-interval() {
sed -ri 's#^(update_interval) = .*,#\1 = '"$1"',#' ~/.i3/conkyrc-perl
}
if [[ $# -gt 0 ]]; then
set-conky-update-interval "$1"
elif [[ "$(cat /sys/class/power_supply/ACAD/online)" = "0" ]]; then
set-conky-update-interval 3
else
set-conky-update-interval 0.5
fi
|