commit 10d41f8d612617e400c616c7c460bd921f2c1216
parent baa57d95c95316a9e9343e48e8b691702c42c15f
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date: Sat, 8 Jun 2024 13:38:18 +0200
fix: increase minimum opacity from 5 to 10
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/activity.sh b/activity.sh
@@ -21,7 +21,7 @@ function html_output {
OPC="$3"
if [[ ! -z $DTE ]]; then TTL+="$DTE"; fi
if [[ ! -z $CMT ]]; then TTL+=": $CMT commits"; fi
- if [[ $OPC -lt 5 ]]; then OPC=5; fi
+ if [[ $OPC -lt 10 ]]; then OPC=10; fi
ID="activity-$OPC"
CL="activitypoint"
STL="opacity:calc($OPC/100);"