This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import os | |
import json | |
from i3pystatus import Status | |
from i3pystatus.core.command import execute, run_through_shell | |
from i3pystatus.core.util import get_module | |
from i3pystatus.updates.cower import Cower | |
from i3pystatus.updates.pacman import Pacman | |
from i3pystatus.now_playing import NowPlaying |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from i3pystatus import IntervalModule | |
from i3pystatus.core.util import internet, require | |
class Connected(IntervalModule): | |
interval = 1 | |
def init(self): | |
self.counter = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 635e0e53614ad9f901f19327b67b00d954a39e32 | |
Author: Lukáš Mandák <lukas.mandak@yandex.com> | |
Date: Tue Oct 27 06:54:29 2015 +0100 | |
Added Linux support for automatic list updating by using 'xwininfo' | |
diff --git a/src/lib/windowwatcher.cpp b/src/lib/windowwatcher.cpp | |
index 60fb096..5792ee0 100644 | |
--- a/src/lib/windowwatcher.cpp | |
+++ b/src/lib/windowwatcher.cpp |