├── .flake8 ├── .gitignore ├── .style.yapf ├── LICENSE ├── Makefile ├── README.rst ├── i3-dstatus ├── i3-dstatus.conf ├── i3dstatus ├── __init__.py ├── __main__.py ├── block.py ├── generators │ ├── battery │ ├── check-http │ ├── clipboard │ ├── clock │ ├── disk │ ├── focused-window │ ├── github-repos │ ├── netifaces │ ├── network │ ├── playerctl │ └── scratchpad ├── interfaces │ ├── org.freedesktop.NetworkManager.AccessPoint.xml │ ├── org.freedesktop.NetworkManager.Connection.Active.xml │ ├── org.freedesktop.NetworkManager.Device.xml │ ├── org.freedesktop.NetworkManager.xml │ ├── org.freedesktop.Notifications.xml │ ├── org.freedesktop.UPower.Device.xml │ └── org.freedesktop.UPower.xml └── service.py └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/.gitignore -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- 1 | [style] 2 | column_limit = 100 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/README.rst -------------------------------------------------------------------------------- /i3-dstatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3-dstatus -------------------------------------------------------------------------------- /i3-dstatus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3-dstatus.conf -------------------------------------------------------------------------------- /i3dstatus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/__init__.py -------------------------------------------------------------------------------- /i3dstatus/__main__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i3dstatus/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/block.py -------------------------------------------------------------------------------- /i3dstatus/generators/battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/battery -------------------------------------------------------------------------------- /i3dstatus/generators/check-http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/check-http -------------------------------------------------------------------------------- /i3dstatus/generators/clipboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/clipboard -------------------------------------------------------------------------------- /i3dstatus/generators/clock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/clock -------------------------------------------------------------------------------- /i3dstatus/generators/disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/disk -------------------------------------------------------------------------------- /i3dstatus/generators/focused-window: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/focused-window -------------------------------------------------------------------------------- /i3dstatus/generators/github-repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/github-repos -------------------------------------------------------------------------------- /i3dstatus/generators/netifaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/netifaces -------------------------------------------------------------------------------- /i3dstatus/generators/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/network -------------------------------------------------------------------------------- /i3dstatus/generators/playerctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/playerctl -------------------------------------------------------------------------------- /i3dstatus/generators/scratchpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/generators/scratchpad -------------------------------------------------------------------------------- /i3dstatus/interfaces/org.freedesktop.NetworkManager.AccessPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/interfaces/org.freedesktop.NetworkManager.AccessPoint.xml -------------------------------------------------------------------------------- /i3dstatus/interfaces/org.freedesktop.NetworkManager.Connection.Active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/interfaces/org.freedesktop.NetworkManager.Connection.Active.xml -------------------------------------------------------------------------------- /i3dstatus/interfaces/org.freedesktop.NetworkManager.Device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/interfaces/org.freedesktop.NetworkManager.Device.xml -------------------------------------------------------------------------------- /i3dstatus/interfaces/org.freedesktop.NetworkManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/interfaces/org.freedesktop.NetworkManager.xml -------------------------------------------------------------------------------- /i3dstatus/interfaces/org.freedesktop.Notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/interfaces/org.freedesktop.Notifications.xml -------------------------------------------------------------------------------- /i3dstatus/interfaces/org.freedesktop.UPower.Device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/interfaces/org.freedesktop.UPower.Device.xml -------------------------------------------------------------------------------- /i3dstatus/interfaces/org.freedesktop.UPower.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/interfaces/org.freedesktop.UPower.xml -------------------------------------------------------------------------------- /i3dstatus/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/i3dstatus/service.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/altdesktop/i3-dstatus/HEAD/setup.py --------------------------------------------------------------------------------