From 10e13b90d7585936cb740d297ce0e267a9c2e98b Mon Sep 17 00:00:00 2001 From: hcpl Date: Sat, 22 Oct 2016 12:44:36 +0300 Subject: [PATCH] Change hide_if_empty default to False Apply the principle of least surprise --- i3pystatus/swap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/swap.py b/i3pystatus/swap.py index be65772..63414b3 100644 --- a/i3pystatus/swap.py +++ b/i3pystatus/swap.py @@ -19,7 +19,7 @@ class Swap(IntervalModule): format = "{free} MiB" format_no_swap = "No swap" - hide_if_empty = True + hide_if_empty = False divisor = 1024 ** 2 color = "#00FF00" warn_color = "#FFFF00"