Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
670 B
Diff
23 lines
670 B
Diff
--- a/config.py 2025-08-03 00:37:13.058374602 +0200
|
|
+++ b/config.py 2025-08-03 00:45:51.869382363 +0200
|
|
@@ -24,10 +24,18 @@
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
-from libqtile import bar, layout, qtile, widget
|
|
+from libqtile import bar, layout, qtile, widget, hook
|
|
from libqtile.config import Click, Drag, Group, Key, Match, Screen
|
|
from libqtile.lazy import lazy
|
|
from libqtile.utils import guess_terminal
|
|
+from libqtile.log_utils import logger
|
|
+
|
|
+
|
|
+@hook.subscribe.startup
|
|
+def print_ready():
|
|
+ logger.warning("ready!") # warning to make it always visible
|
|
+
|
|
+
|
|
|
|
mod = "mod4"
|
|
terminal = guess_terminal()
|