├── .codeclimate.yml ├── .coveragerc ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── Bug.md │ └── Feature.md ├── PULL_REQUEST_TEMPLATE │ ├── Improvement.md │ └── Other.md └── workflows │ ├── aurpublish.yml │ ├── autotest.yml │ ├── codeql-analysis.yml │ └── pythonpublish.yml ├── .gitignore ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── PKGBUILD.template ├── README.md ├── bin ├── load-i3-bars.sh ├── pacman-updates └── toggle-display.sh ├── bumblebee-ctl ├── bumblebee-status ├── bumblebee_status ├── __init__.py ├── _version.py ├── core │ ├── __init__.py │ ├── config.py │ ├── decorators.py │ ├── event.py │ ├── input.py │ ├── module.py │ ├── output.py │ ├── theme.py │ └── widget.py ├── discover.py ├── modules │ ├── __init__.py │ ├── contrib │ │ ├── __init__.py │ │ ├── aerlive.py │ │ ├── amixer.py │ │ ├── apt.py │ │ ├── arandr.py │ │ ├── arch-update.py │ │ ├── arch_update.py │ │ ├── aur-update.py │ │ ├── battery-upower.py │ │ ├── battery.py │ │ ├── battery_upower.py │ │ ├── bluetooth.py │ │ ├── bluetooth2.py │ │ ├── blugon.py │ │ ├── brightness.py │ │ ├── caffeine.py │ │ ├── calendar.py │ │ ├── cmus.py │ │ ├── cpu2.py │ │ ├── cpu3.py │ │ ├── currency.py │ │ ├── datetimetz.py │ │ ├── datetz.py │ │ ├── deadbeef.py │ │ ├── deezer.py │ │ ├── dnf.py │ │ ├── docker_ps.py │ │ ├── dunst.py │ │ ├── dunstctl.py │ │ ├── emerge_status.py │ │ ├── epoch.py │ │ ├── gcalendar.py │ │ ├── getcrypto.py │ │ ├── github.py │ │ ├── gitlab.py │ │ ├── gpmdp.py │ │ ├── hddtemp.py │ │ ├── hostname.py │ │ ├── http_status.py │ │ ├── indicator.py │ │ ├── kernel.py │ │ ├── layout-xkbswitch.py │ │ ├── layout.py │ │ ├── layout_xkbswitch.py │ │ ├── libvirtvms.py │ │ ├── messagereceiver.py │ │ ├── mocp.py │ │ ├── mpd.py │ │ ├── network.py │ │ ├── network_traffic.py │ │ ├── notmuch_count.py │ │ ├── nvidiagpu.py │ │ ├── octoprint.py │ │ ├── oled_offset.py │ │ ├── optman.py │ │ ├── otp.py │ │ ├── pacman.py │ │ ├── pamixer.py │ │ ├── persian_date.py │ │ ├── pihole.py │ │ ├── pipewire.py │ │ ├── playerctl.py │ │ ├── pomodoro.py │ │ ├── portage_status.py │ │ ├── power-profile.py │ │ ├── power_profile.py │ │ ├── prime.py │ │ ├── progress.py │ │ ├── publicip.py │ │ ├── rofication.py │ │ ├── rotation.py │ │ ├── rss.py │ │ ├── scratchpad.py │ │ ├── sensors.py │ │ ├── shell.py │ │ ├── shortcut.py │ │ ├── smartstatus.py │ │ ├── solaar.py │ │ ├── spaceapi.py │ │ ├── spotify.py │ │ ├── stock.py │ │ ├── sun.py │ │ ├── system.py │ │ ├── taskwarrior.py │ │ ├── thunderbird.py │ │ ├── timetz.py │ │ ├── title.py │ │ ├── todo.py │ │ ├── todo_org.py │ │ ├── todoist.py │ │ ├── traffic.py │ │ ├── twmn.py │ │ ├── uhnode.py │ │ ├── uptime.py │ │ ├── usage.py │ │ ├── vpn.py │ │ ├── wakatime.py │ │ ├── watson.py │ │ ├── weather.py │ │ ├── xkcd.py │ │ ├── yubikey.py │ │ └── zpool.py │ └── core │ │ ├── __init__.py │ │ ├── cpu.py │ │ ├── date.py │ │ ├── datetime.py │ │ ├── debug.py │ │ ├── disk.py │ │ ├── error.py │ │ ├── git.py │ │ ├── keys.py │ │ ├── layout-xkb.py │ │ ├── layout.py │ │ ├── layout_xkb.py │ │ ├── load.py │ │ ├── memory.py │ │ ├── nic.py │ │ ├── pasink.py │ │ ├── pasource.py │ │ ├── ping.py │ │ ├── pulseaudio.py │ │ ├── pulsectl.py │ │ ├── pulsein.py │ │ ├── pulseout.py │ │ ├── redshift.py │ │ ├── scroll.py │ │ ├── sensors2.py │ │ ├── spacer.py │ │ ├── speedtest.py │ │ ├── test.py │ │ ├── time.py │ │ ├── upower.py │ │ ├── vault.py │ │ └── xrandr.py └── util │ ├── __init__.py │ ├── algorithm.py │ ├── cli.py │ ├── format.py │ ├── graph.py │ ├── location.py │ ├── popup.py │ ├── rofi.py │ ├── store.py │ └── xresources.py ├── coverage.sh ├── create-pkgbuild.py ├── docs ├── FAQ.rst ├── Makefile ├── api.rst ├── conf.py ├── development │ ├── general.rst │ ├── index.rst │ ├── module.rst │ ├── testing.rst │ └── theme.rst ├── docstring.tmpl ├── favicon.ico ├── features.rst ├── index.rst ├── introduction.rst ├── logo.png ├── make.bat ├── modules.rst ├── other │ └── NOTES.md ├── requirements.txt ├── src │ ├── bumblebee_status.core.rst │ ├── bumblebee_status.rst │ └── bumblebee_status.util.rst └── themes.rst ├── generate-base-tests.py ├── man ├── bumblebee-ctl.1 └── bumblebee-status.1 ├── requirements ├── base.txt └── modules │ ├── aerlive.txt │ ├── battery.txt │ ├── battery_upower_reqs.txt │ ├── calendar.txt │ ├── cpu.txt │ ├── cpu2.txt │ ├── cpu3.txt │ ├── currency.txt │ ├── docker_ps.txt │ ├── getcrypto.txt │ ├── git.txt │ ├── github.txt │ ├── gitlab.txt │ ├── layout_xkb.txt │ ├── libvirtvms.txt │ ├── memory.txt │ ├── network_traffic.txt │ ├── nic.txt │ ├── octoprint.txt │ ├── otp.txt │ ├── pihole.txt │ ├── power-profile.txt │ ├── rss.txt │ ├── scratchpad.txt │ ├── spaceapi.txt │ ├── speedtest.txt │ ├── spotify.txt │ ├── stock.txt │ ├── sun.txt │ ├── system.txt │ ├── taskwarrior.txt │ ├── title.txt │ ├── traffic.txt │ ├── weather.txt │ ├── yubikey.txt │ └── zpool.txt ├── screenshots ├── amixer.png ├── arch-update.png ├── aur-update.png ├── battery.png ├── bluetooth.png ├── brightness.png ├── caffeine.png ├── calendar.png ├── cmus.png ├── cpu.png ├── currency.png ├── date.png ├── datetime.png ├── datetimetz.gif ├── disk.png ├── dnf.png ├── dunst.png ├── dunstctl.png ├── emerge_status.png ├── getcrypto.png ├── git.png ├── github.png ├── gitlab.png ├── http_status.png ├── indicator.png ├── kernel.png ├── layout.png ├── load.png ├── memory.png ├── mpd.png ├── network_traffic.gif ├── nic.png ├── pacman.png ├── pasink.png ├── pasource.png ├── ping.png ├── playerctl.png ├── pulseaudio.png ├── redshift.png ├── scratchpad.png ├── sensors.png ├── sensors2.png ├── shortcut.png ├── spacer.png ├── spotify.png ├── stock.png ├── taskwarrior.png ├── themes │ ├── default.png │ ├── dracula-powerline.png │ ├── gruvbox-light.png │ ├── gruvbox-powerline-light.png │ ├── gruvbox.png │ ├── iceberg-contrast.png │ ├── iceberg-dark-powerline.png │ ├── iceberg-powerline.png │ ├── iceberg-rainbow.png │ ├── iceberg.png │ ├── moonlight-powerline.png │ ├── night-powerline.png │ ├── nord-powerline.png │ ├── onedark-powerline.png │ ├── powerline-greyish.png │ ├── powerline-gruvbox.png │ ├── powerline-solarized.png │ ├── powerline.png │ └── solarized.png ├── thunderbird.png ├── time.png ├── title.png ├── todo.png ├── todoist.png ├── traffic.png ├── uptime.png ├── vault.png ├── wakatime.png ├── weather.png ├── xrandr.png └── zpool.png ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── core │ ├── __init__.py │ ├── test_config.py │ ├── test_decorators.py │ ├── test_event.py │ ├── test_input.py │ ├── test_module.py │ ├── test_output.py │ ├── test_theme.py │ └── test_widget.py ├── modules │ ├── __init__.py │ ├── contrib │ │ ├── __init__.py │ │ ├── test_aerlive.py │ │ ├── test_amixer.py │ │ ├── test_apt.py │ │ ├── test_arandr.py │ │ ├── test_arch-update.py │ │ ├── test_battery-upower.py │ │ ├── test_battery.py │ │ ├── test_bluetooth.py │ │ ├── test_bluetooth2.py │ │ ├── test_blugon.py │ │ ├── test_brightness.py │ │ ├── test_caffeine.py │ │ ├── test_calendar.py │ │ ├── test_cmus.py │ │ ├── test_cpu2.py │ │ ├── test_cpu3.py │ │ ├── test_currency.py │ │ ├── test_datetimetz.py │ │ ├── test_datetz.py │ │ ├── test_deadbeef.py │ │ ├── test_deezer.py │ │ ├── test_dnf.py │ │ ├── test_docker_ps.py │ │ ├── test_dunst.py │ │ ├── test_dunstctl.py │ │ ├── test_getcrypto.py │ │ ├── test_github.py │ │ ├── test_gitlab.py │ │ ├── test_gpmdp.py │ │ ├── test_hddtemp.py │ │ ├── test_hostname.py │ │ ├── test_http_status.py │ │ ├── test_indicator.py │ │ ├── test_kernel.py │ │ ├── test_layout-xkbswitch.py │ │ ├── test_layout.py │ │ ├── test_libvirtvms.py │ │ ├── test_messagereceiver.py │ │ ├── test_mocp.py │ │ ├── test_mpd.py │ │ ├── test_network.py │ │ ├── test_network_traffic.py │ │ ├── test_notmuch_count.py │ │ ├── test_nvidiagpu.py │ │ ├── test_octoprint.py │ │ ├── test_oled_offset.py │ │ ├── test_pacman.py │ │ ├── test_pihole.py │ │ ├── test_playerctl.py │ │ ├── test_pomodoro.py │ │ ├── test_portage_status.py │ │ ├── test_power-profile.py │ │ ├── test_prime.py │ │ ├── test_progress.py │ │ ├── test_publicip.py │ │ ├── test_rotation.py │ │ ├── test_rss.py │ │ ├── test_scratchpad.py │ │ ├── test_sensors.py │ │ ├── test_shell.py │ │ ├── test_shortcut.py │ │ ├── test_smartstatus.py │ │ ├── test_solaar.py │ │ ├── test_spaceapi.py │ │ ├── test_spotify.py │ │ ├── test_stock.py │ │ ├── test_sun.py │ │ ├── test_system.py │ │ ├── test_taskwarrior.py │ │ ├── test_timetz.py │ │ ├── test_title.py │ │ ├── test_todo.py │ │ ├── test_todoist.py │ │ ├── test_traffic.py │ │ ├── test_twmn.py │ │ ├── test_uptime.py │ │ ├── test_vpn.py │ │ ├── test_wakatime.py │ │ ├── test_watson.py │ │ ├── test_weather.py │ │ ├── test_xkcd.py │ │ ├── test_yubikey.py │ │ └── test_zpool.py │ └── core │ │ ├── __init__.py │ │ ├── test_cpu.py │ │ ├── test_date.py │ │ ├── test_datetime.py │ │ ├── test_debug.py │ │ ├── test_disk.py │ │ ├── test_error.py │ │ ├── test_git.py │ │ ├── test_layout-xkb.py │ │ ├── test_load.py │ │ ├── test_memory.py │ │ ├── test_nic.py │ │ ├── test_pasink.py │ │ ├── test_pasource.py │ │ ├── test_ping.py │ │ ├── test_pulseaudio.py │ │ ├── test_redshift.py │ │ ├── test_sensors2.py │ │ ├── test_spacer.py │ │ ├── test_speedtest.py │ │ ├── test_test.py │ │ ├── test_time.py │ │ ├── test_vault.py │ │ └── test_xrandr.py └── util │ ├── test_algorithm.py │ ├── test_cli.py │ ├── test_format.py │ ├── test_location.py │ ├── test_rofi.py │ └── test_store.py ├── themes ├── albiceleste-powerline.json ├── default.json ├── dracula-powerline.json ├── firefox-dark-powerline.json ├── greyish-powerline.json ├── gruvbox-light.json ├── gruvbox-powerline-light.json ├── gruvbox-powerline.json ├── gruvbox.json ├── iceberg-contrast.json ├── iceberg-dark-powerline.json ├── iceberg-powerline.json ├── iceberg-rainbow.json ├── iceberg.json ├── icons │ ├── ascii.json │ ├── awesome-fonts.json │ ├── ionicons.json │ ├── paxy97.json │ └── test.json ├── moonlight-powerline.json ├── night-powerline.json ├── nord-colorful.json ├── nord-powerline.json ├── onedark-powerline.json ├── powerline-pango.json ├── powerline.json ├── rastafari-powerline.json ├── rose-pine.json ├── sac_red.json ├── solarized-dark-awesome.json ├── solarized-powerline.json ├── solarized.json ├── srcery.json ├── test.json ├── test_cycle.json ├── test_invalid.json ├── wal-powerline.json ├── zengarden-powerline-light.json └── zengarden.json ├── util └── Makefile └── versioneer.py /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/ISSUE_TEMPLATE/Bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/ISSUE_TEMPLATE/Feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/Improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/PULL_REQUEST_TEMPLATE/Improvement.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/Other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/PULL_REQUEST_TEMPLATE/Other.md -------------------------------------------------------------------------------- /.github/workflows/aurpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/workflows/aurpublish.yml -------------------------------------------------------------------------------- /.github/workflows/autotest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/workflows/autotest.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PKGBUILD.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/PKGBUILD.template -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/README.md -------------------------------------------------------------------------------- /bin/load-i3-bars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bin/load-i3-bars.sh -------------------------------------------------------------------------------- /bin/pacman-updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bin/pacman-updates -------------------------------------------------------------------------------- /bin/toggle-display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bin/toggle-display.sh -------------------------------------------------------------------------------- /bumblebee-ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee-ctl -------------------------------------------------------------------------------- /bumblebee-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee-status -------------------------------------------------------------------------------- /bumblebee_status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/__init__.py -------------------------------------------------------------------------------- /bumblebee_status/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/_version.py -------------------------------------------------------------------------------- /bumblebee_status/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bumblebee_status/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/config.py -------------------------------------------------------------------------------- /bumblebee_status/core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/decorators.py -------------------------------------------------------------------------------- /bumblebee_status/core/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/event.py -------------------------------------------------------------------------------- /bumblebee_status/core/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/input.py -------------------------------------------------------------------------------- /bumblebee_status/core/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/module.py -------------------------------------------------------------------------------- /bumblebee_status/core/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/output.py -------------------------------------------------------------------------------- /bumblebee_status/core/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/theme.py -------------------------------------------------------------------------------- /bumblebee_status/core/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/core/widget.py -------------------------------------------------------------------------------- /bumblebee_status/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/discover.py -------------------------------------------------------------------------------- /bumblebee_status/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/aerlive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/aerlive.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/amixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/amixer.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/apt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/apt.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/arandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/arandr.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/arch-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/arch-update.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/arch_update.py: -------------------------------------------------------------------------------- 1 | arch-update.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/aur-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/aur-update.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/battery-upower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/battery-upower.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/battery.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/battery_upower.py: -------------------------------------------------------------------------------- 1 | battery-upower.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/bluetooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/bluetooth.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/bluetooth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/bluetooth2.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/blugon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/blugon.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/brightness.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/caffeine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/caffeine.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/calendar.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/cmus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/cmus.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/cpu2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/cpu2.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/cpu3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/cpu3.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/currency.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/datetimetz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/datetimetz.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/datetz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/datetz.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/deadbeef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/deadbeef.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/deezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/deezer.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/dnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/dnf.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/docker_ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/docker_ps.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/dunst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/dunst.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/dunstctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/dunstctl.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/emerge_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/emerge_status.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/epoch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/epoch.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/gcalendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/gcalendar.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/getcrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/getcrypto.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/github.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/gitlab.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/gpmdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/gpmdp.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/hddtemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/hddtemp.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/hostname.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/http_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/http_status.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/indicator.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/kernel.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/layout-xkbswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/layout-xkbswitch.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/layout.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/layout_xkbswitch.py: -------------------------------------------------------------------------------- 1 | layout-xkbswitch.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/libvirtvms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/libvirtvms.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/messagereceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/messagereceiver.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/mocp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/mocp.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/mpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/mpd.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/network.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/network_traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/network_traffic.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/notmuch_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/notmuch_count.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/nvidiagpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/nvidiagpu.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/octoprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/octoprint.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/oled_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/oled_offset.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/optman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/optman.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/otp.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/pacman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/pacman.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/pamixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/pamixer.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/persian_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/persian_date.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/pihole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/pihole.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/pipewire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/pipewire.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/playerctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/playerctl.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/pomodoro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/pomodoro.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/portage_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/portage_status.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/power-profile.py: -------------------------------------------------------------------------------- 1 | power_profile.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/power_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/power_profile.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/prime.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/progress.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/publicip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/publicip.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/rofication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/rofication.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/rotation.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/rss.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/scratchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/scratchpad.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/sensors.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/shell.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/shortcut.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/smartstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/smartstatus.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/solaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/solaar.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/spaceapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/spaceapi.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/spotify.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/stock.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/sun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/sun.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/system.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/taskwarrior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/taskwarrior.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/thunderbird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/thunderbird.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/timetz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/timetz.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/title.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/todo.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/todo_org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/todo_org.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/todoist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/todoist.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/traffic.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/twmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/twmn.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/uhnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/uhnode.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/uptime.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/usage.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/vpn.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/wakatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/wakatime.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/watson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/watson.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/weather.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/xkcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/xkcd.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/yubikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/yubikey.py -------------------------------------------------------------------------------- /bumblebee_status/modules/contrib/zpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/contrib/zpool.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bumblebee_status/modules/core/cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/cpu.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/date.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/datetime.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/debug.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/disk.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/error.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/git.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/keys.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/layout-xkb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/layout-xkb.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/layout.py: -------------------------------------------------------------------------------- 1 | layout-xkb.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/layout_xkb.py: -------------------------------------------------------------------------------- 1 | layout-xkb.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/load.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/memory.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/nic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/nic.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/pasink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/pasink.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/pasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/pasource.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/ping.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/pulseaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/pulseaudio.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/pulsectl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/pulsectl.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/pulsein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/pulsein.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/pulseout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/pulseout.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/redshift.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/scroll.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/sensors2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/sensors2.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/spacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/spacer.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/speedtest.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/test.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/time.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/upower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/upower.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/vault.py -------------------------------------------------------------------------------- /bumblebee_status/modules/core/xrandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/modules/core/xrandr.py -------------------------------------------------------------------------------- /bumblebee_status/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bumblebee_status/util/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/algorithm.py -------------------------------------------------------------------------------- /bumblebee_status/util/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/cli.py -------------------------------------------------------------------------------- /bumblebee_status/util/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/format.py -------------------------------------------------------------------------------- /bumblebee_status/util/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/graph.py -------------------------------------------------------------------------------- /bumblebee_status/util/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/location.py -------------------------------------------------------------------------------- /bumblebee_status/util/popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/popup.py -------------------------------------------------------------------------------- /bumblebee_status/util/rofi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/rofi.py -------------------------------------------------------------------------------- /bumblebee_status/util/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/store.py -------------------------------------------------------------------------------- /bumblebee_status/util/xresources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/bumblebee_status/util/xresources.py -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/coverage.sh -------------------------------------------------------------------------------- /create-pkgbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/create-pkgbuild.py -------------------------------------------------------------------------------- /docs/FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/FAQ.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/development/general.rst -------------------------------------------------------------------------------- /docs/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/development/index.rst -------------------------------------------------------------------------------- /docs/development/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/development/module.rst -------------------------------------------------------------------------------- /docs/development/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/development/testing.rst -------------------------------------------------------------------------------- /docs/development/theme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/development/theme.rst -------------------------------------------------------------------------------- /docs/docstring.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/docstring.tmpl -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/other/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/other/NOTES.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/src/bumblebee_status.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/src/bumblebee_status.core.rst -------------------------------------------------------------------------------- /docs/src/bumblebee_status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/src/bumblebee_status.rst -------------------------------------------------------------------------------- /docs/src/bumblebee_status.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/src/bumblebee_status.util.rst -------------------------------------------------------------------------------- /docs/themes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/docs/themes.rst -------------------------------------------------------------------------------- /generate-base-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/generate-base-tests.py -------------------------------------------------------------------------------- /man/bumblebee-ctl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/man/bumblebee-ctl.1 -------------------------------------------------------------------------------- /man/bumblebee-status.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/man/bumblebee-status.1 -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements/modules/aerlive.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /requirements/modules/battery.txt: -------------------------------------------------------------------------------- 1 | power 2 | -------------------------------------------------------------------------------- /requirements/modules/battery_upower_reqs.txt: -------------------------------------------------------------------------------- 1 | dbus-python 2 | power 3 | -------------------------------------------------------------------------------- /requirements/modules/calendar.txt: -------------------------------------------------------------------------------- 1 | tkcalendar 2 | -------------------------------------------------------------------------------- /requirements/modules/cpu.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | -------------------------------------------------------------------------------- /requirements/modules/cpu2.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | -------------------------------------------------------------------------------- /requirements/modules/cpu3.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | -------------------------------------------------------------------------------- /requirements/modules/currency.txt: -------------------------------------------------------------------------------- 1 | requests 2 | Babel 3 | -------------------------------------------------------------------------------- /requirements/modules/docker_ps.txt: -------------------------------------------------------------------------------- 1 | docker 2 | -------------------------------------------------------------------------------- /requirements/modules/getcrypto.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /requirements/modules/git.txt: -------------------------------------------------------------------------------- 1 | pygit2 2 | -------------------------------------------------------------------------------- /requirements/modules/github.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /requirements/modules/gitlab.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /requirements/modules/layout_xkb.txt: -------------------------------------------------------------------------------- 1 | xkbgroup 2 | -------------------------------------------------------------------------------- /requirements/modules/libvirtvms.txt: -------------------------------------------------------------------------------- 1 | libvirt-python 2 | -------------------------------------------------------------------------------- /requirements/modules/memory.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | -------------------------------------------------------------------------------- /requirements/modules/network_traffic.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | netifaces 3 | -------------------------------------------------------------------------------- /requirements/modules/nic.txt: -------------------------------------------------------------------------------- 1 | netifaces 2 | -------------------------------------------------------------------------------- /requirements/modules/octoprint.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | simplejson 3 | -------------------------------------------------------------------------------- /requirements/modules/otp.txt: -------------------------------------------------------------------------------- 1 | keyring 2 | pyotp 3 | -------------------------------------------------------------------------------- /requirements/modules/pihole.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /requirements/modules/power-profile.txt: -------------------------------------------------------------------------------- 1 | dbus-python 2 | power-profiles-daemon 3 | -------------------------------------------------------------------------------- /requirements/modules/rss.txt: -------------------------------------------------------------------------------- 1 | feedparser 2 | -------------------------------------------------------------------------------- /requirements/modules/scratchpad.txt: -------------------------------------------------------------------------------- 1 | i3ipc 2 | python-rofi 3 | -------------------------------------------------------------------------------- /requirements/modules/spaceapi.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /requirements/modules/speedtest.txt: -------------------------------------------------------------------------------- 1 | speedtest-cli 2 | -------------------------------------------------------------------------------- /requirements/modules/spotify.txt: -------------------------------------------------------------------------------- 1 | dbus-python 2 | -------------------------------------------------------------------------------- /requirements/modules/stock.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /requirements/modules/sun.txt: -------------------------------------------------------------------------------- 1 | requests 2 | suntime 3 | -------------------------------------------------------------------------------- /requirements/modules/system.txt: -------------------------------------------------------------------------------- 1 | Pillow # placeholder for tk 2 | -------------------------------------------------------------------------------- /requirements/modules/taskwarrior.txt: -------------------------------------------------------------------------------- 1 | taskw 2 | -------------------------------------------------------------------------------- /requirements/modules/title.txt: -------------------------------------------------------------------------------- 1 | i3ipc 2 | -------------------------------------------------------------------------------- /requirements/modules/traffic.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | netifaces 3 | -------------------------------------------------------------------------------- /requirements/modules/weather.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /requirements/modules/yubikey.txt: -------------------------------------------------------------------------------- 1 | python-yubico 2 | -------------------------------------------------------------------------------- /requirements/modules/zpool.txt: -------------------------------------------------------------------------------- 1 | setuptools 2 | -------------------------------------------------------------------------------- /screenshots/amixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/amixer.png -------------------------------------------------------------------------------- /screenshots/arch-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/arch-update.png -------------------------------------------------------------------------------- /screenshots/aur-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/aur-update.png -------------------------------------------------------------------------------- /screenshots/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/battery.png -------------------------------------------------------------------------------- /screenshots/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/bluetooth.png -------------------------------------------------------------------------------- /screenshots/brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/brightness.png -------------------------------------------------------------------------------- /screenshots/caffeine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/caffeine.png -------------------------------------------------------------------------------- /screenshots/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/calendar.png -------------------------------------------------------------------------------- /screenshots/cmus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/cmus.png -------------------------------------------------------------------------------- /screenshots/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/cpu.png -------------------------------------------------------------------------------- /screenshots/currency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/currency.png -------------------------------------------------------------------------------- /screenshots/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/date.png -------------------------------------------------------------------------------- /screenshots/datetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/datetime.png -------------------------------------------------------------------------------- /screenshots/datetimetz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/datetimetz.gif -------------------------------------------------------------------------------- /screenshots/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/disk.png -------------------------------------------------------------------------------- /screenshots/dnf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/dnf.png -------------------------------------------------------------------------------- /screenshots/dunst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/dunst.png -------------------------------------------------------------------------------- /screenshots/dunstctl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/dunstctl.png -------------------------------------------------------------------------------- /screenshots/emerge_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/emerge_status.png -------------------------------------------------------------------------------- /screenshots/getcrypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/getcrypto.png -------------------------------------------------------------------------------- /screenshots/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/git.png -------------------------------------------------------------------------------- /screenshots/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/github.png -------------------------------------------------------------------------------- /screenshots/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/gitlab.png -------------------------------------------------------------------------------- /screenshots/http_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/http_status.png -------------------------------------------------------------------------------- /screenshots/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/indicator.png -------------------------------------------------------------------------------- /screenshots/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/kernel.png -------------------------------------------------------------------------------- /screenshots/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/layout.png -------------------------------------------------------------------------------- /screenshots/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/load.png -------------------------------------------------------------------------------- /screenshots/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/memory.png -------------------------------------------------------------------------------- /screenshots/mpd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/mpd.png -------------------------------------------------------------------------------- /screenshots/network_traffic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/network_traffic.gif -------------------------------------------------------------------------------- /screenshots/nic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/nic.png -------------------------------------------------------------------------------- /screenshots/pacman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/pacman.png -------------------------------------------------------------------------------- /screenshots/pasink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/pasink.png -------------------------------------------------------------------------------- /screenshots/pasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/pasource.png -------------------------------------------------------------------------------- /screenshots/ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/ping.png -------------------------------------------------------------------------------- /screenshots/playerctl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/playerctl.png -------------------------------------------------------------------------------- /screenshots/pulseaudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/pulseaudio.png -------------------------------------------------------------------------------- /screenshots/redshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/redshift.png -------------------------------------------------------------------------------- /screenshots/scratchpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/scratchpad.png -------------------------------------------------------------------------------- /screenshots/sensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/sensors.png -------------------------------------------------------------------------------- /screenshots/sensors2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/sensors2.png -------------------------------------------------------------------------------- /screenshots/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/shortcut.png -------------------------------------------------------------------------------- /screenshots/spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/spacer.png -------------------------------------------------------------------------------- /screenshots/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/spotify.png -------------------------------------------------------------------------------- /screenshots/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/stock.png -------------------------------------------------------------------------------- /screenshots/taskwarrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/taskwarrior.png -------------------------------------------------------------------------------- /screenshots/themes/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/default.png -------------------------------------------------------------------------------- /screenshots/themes/dracula-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/dracula-powerline.png -------------------------------------------------------------------------------- /screenshots/themes/gruvbox-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/gruvbox-light.png -------------------------------------------------------------------------------- /screenshots/themes/gruvbox-powerline-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/gruvbox-powerline-light.png -------------------------------------------------------------------------------- /screenshots/themes/gruvbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/gruvbox.png -------------------------------------------------------------------------------- /screenshots/themes/iceberg-contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/iceberg-contrast.png -------------------------------------------------------------------------------- /screenshots/themes/iceberg-dark-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/iceberg-dark-powerline.png -------------------------------------------------------------------------------- /screenshots/themes/iceberg-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/iceberg-powerline.png -------------------------------------------------------------------------------- /screenshots/themes/iceberg-rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/iceberg-rainbow.png -------------------------------------------------------------------------------- /screenshots/themes/iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/iceberg.png -------------------------------------------------------------------------------- /screenshots/themes/moonlight-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/moonlight-powerline.png -------------------------------------------------------------------------------- /screenshots/themes/night-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/night-powerline.png -------------------------------------------------------------------------------- /screenshots/themes/nord-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/nord-powerline.png -------------------------------------------------------------------------------- /screenshots/themes/onedark-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/onedark-powerline.png -------------------------------------------------------------------------------- /screenshots/themes/powerline-greyish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/powerline-greyish.png -------------------------------------------------------------------------------- /screenshots/themes/powerline-gruvbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/powerline-gruvbox.png -------------------------------------------------------------------------------- /screenshots/themes/powerline-solarized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/powerline-solarized.png -------------------------------------------------------------------------------- /screenshots/themes/powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/powerline.png -------------------------------------------------------------------------------- /screenshots/themes/solarized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/themes/solarized.png -------------------------------------------------------------------------------- /screenshots/thunderbird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/thunderbird.png -------------------------------------------------------------------------------- /screenshots/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/time.png -------------------------------------------------------------------------------- /screenshots/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/title.png -------------------------------------------------------------------------------- /screenshots/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/todo.png -------------------------------------------------------------------------------- /screenshots/todoist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/todoist.png -------------------------------------------------------------------------------- /screenshots/traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/traffic.png -------------------------------------------------------------------------------- /screenshots/uptime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/uptime.png -------------------------------------------------------------------------------- /screenshots/vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/vault.png -------------------------------------------------------------------------------- /screenshots/wakatime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/wakatime.png -------------------------------------------------------------------------------- /screenshots/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/weather.png -------------------------------------------------------------------------------- /screenshots/xrandr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/xrandr.png -------------------------------------------------------------------------------- /screenshots/zpool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/screenshots/zpool.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_config.py -------------------------------------------------------------------------------- /tests/core/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_decorators.py -------------------------------------------------------------------------------- /tests/core/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_event.py -------------------------------------------------------------------------------- /tests/core/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_input.py -------------------------------------------------------------------------------- /tests/core/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_module.py -------------------------------------------------------------------------------- /tests/core/test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_output.py -------------------------------------------------------------------------------- /tests/core/test_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_theme.py -------------------------------------------------------------------------------- /tests/core/test_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/core/test_widget.py -------------------------------------------------------------------------------- /tests/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/contrib/test_aerlive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_aerlive.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_amixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_amixer.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_apt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_apt.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_arandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_arandr.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_arch-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_arch-update.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_battery-upower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_battery-upower.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_battery.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_bluetooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_bluetooth.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_bluetooth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_bluetooth2.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_blugon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_blugon.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_brightness.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_caffeine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_caffeine.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_calendar.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_cmus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_cmus.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_cpu2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_cpu2.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_cpu3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_cpu3.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_currency.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_datetimetz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_datetimetz.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_datetz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_datetz.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_deadbeef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_deadbeef.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_deezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_deezer.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_dnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_dnf.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_docker_ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_docker_ps.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_dunst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_dunst.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_dunstctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_dunstctl.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_getcrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_getcrypto.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_github.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_gitlab.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_gpmdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_gpmdp.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_hddtemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_hddtemp.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_hostname.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_http_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_http_status.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_indicator.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_kernel.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_layout-xkbswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_layout-xkbswitch.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_layout.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_libvirtvms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_libvirtvms.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_messagereceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_messagereceiver.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_mocp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_mocp.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_mpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_mpd.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_network.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_network_traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_network_traffic.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_notmuch_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_notmuch_count.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_nvidiagpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_nvidiagpu.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_octoprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_octoprint.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_oled_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_oled_offset.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_pacman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_pacman.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_pihole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_pihole.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_playerctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_playerctl.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_pomodoro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_pomodoro.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_portage_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_portage_status.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_power-profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_power-profile.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_prime.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_progress.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_publicip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_publicip.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_rotation.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_rss.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_scratchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_scratchpad.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_sensors.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_shell.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_shortcut.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_smartstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_smartstatus.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_solaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_solaar.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_spaceapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_spaceapi.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_spotify.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_stock.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_sun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_sun.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_system.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_taskwarrior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_taskwarrior.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_timetz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_timetz.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_title.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_todo.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_todoist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_todoist.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_traffic.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_twmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_twmn.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_uptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_uptime.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_vpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_vpn.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_wakatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_wakatime.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_watson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_watson.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_weather.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_xkcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_xkcd.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_yubikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_yubikey.py -------------------------------------------------------------------------------- /tests/modules/contrib/test_zpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/contrib/test_zpool.py -------------------------------------------------------------------------------- /tests/modules/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/core/test_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_cpu.py -------------------------------------------------------------------------------- /tests/modules/core/test_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_date.py -------------------------------------------------------------------------------- /tests/modules/core/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_datetime.py -------------------------------------------------------------------------------- /tests/modules/core/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_debug.py -------------------------------------------------------------------------------- /tests/modules/core/test_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_disk.py -------------------------------------------------------------------------------- /tests/modules/core/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_error.py -------------------------------------------------------------------------------- /tests/modules/core/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_git.py -------------------------------------------------------------------------------- /tests/modules/core/test_layout-xkb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_layout-xkb.py -------------------------------------------------------------------------------- /tests/modules/core/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_load.py -------------------------------------------------------------------------------- /tests/modules/core/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_memory.py -------------------------------------------------------------------------------- /tests/modules/core/test_nic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_nic.py -------------------------------------------------------------------------------- /tests/modules/core/test_pasink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_pasink.py -------------------------------------------------------------------------------- /tests/modules/core/test_pasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_pasource.py -------------------------------------------------------------------------------- /tests/modules/core/test_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_ping.py -------------------------------------------------------------------------------- /tests/modules/core/test_pulseaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_pulseaudio.py -------------------------------------------------------------------------------- /tests/modules/core/test_redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_redshift.py -------------------------------------------------------------------------------- /tests/modules/core/test_sensors2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_sensors2.py -------------------------------------------------------------------------------- /tests/modules/core/test_spacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_spacer.py -------------------------------------------------------------------------------- /tests/modules/core/test_speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_speedtest.py -------------------------------------------------------------------------------- /tests/modules/core/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_test.py -------------------------------------------------------------------------------- /tests/modules/core/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_time.py -------------------------------------------------------------------------------- /tests/modules/core/test_vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_vault.py -------------------------------------------------------------------------------- /tests/modules/core/test_xrandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/modules/core/test_xrandr.py -------------------------------------------------------------------------------- /tests/util/test_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/util/test_algorithm.py -------------------------------------------------------------------------------- /tests/util/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/util/test_cli.py -------------------------------------------------------------------------------- /tests/util/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/util/test_format.py -------------------------------------------------------------------------------- /tests/util/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/util/test_location.py -------------------------------------------------------------------------------- /tests/util/test_rofi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/util/test_rofi.py -------------------------------------------------------------------------------- /tests/util/test_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/tests/util/test_store.py -------------------------------------------------------------------------------- /themes/albiceleste-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/albiceleste-powerline.json -------------------------------------------------------------------------------- /themes/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/default.json -------------------------------------------------------------------------------- /themes/dracula-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/dracula-powerline.json -------------------------------------------------------------------------------- /themes/firefox-dark-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/firefox-dark-powerline.json -------------------------------------------------------------------------------- /themes/greyish-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/greyish-powerline.json -------------------------------------------------------------------------------- /themes/gruvbox-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/gruvbox-light.json -------------------------------------------------------------------------------- /themes/gruvbox-powerline-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/gruvbox-powerline-light.json -------------------------------------------------------------------------------- /themes/gruvbox-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/gruvbox-powerline.json -------------------------------------------------------------------------------- /themes/gruvbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/gruvbox.json -------------------------------------------------------------------------------- /themes/iceberg-contrast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/iceberg-contrast.json -------------------------------------------------------------------------------- /themes/iceberg-dark-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/iceberg-dark-powerline.json -------------------------------------------------------------------------------- /themes/iceberg-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/iceberg-powerline.json -------------------------------------------------------------------------------- /themes/iceberg-rainbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/iceberg-rainbow.json -------------------------------------------------------------------------------- /themes/iceberg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/iceberg.json -------------------------------------------------------------------------------- /themes/icons/ascii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/icons/ascii.json -------------------------------------------------------------------------------- /themes/icons/awesome-fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/icons/awesome-fonts.json -------------------------------------------------------------------------------- /themes/icons/ionicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/icons/ionicons.json -------------------------------------------------------------------------------- /themes/icons/paxy97.json: -------------------------------------------------------------------------------- 1 | { 2 | "memory": { 3 | "prefix": "  " 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /themes/icons/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/icons/test.json -------------------------------------------------------------------------------- /themes/moonlight-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/moonlight-powerline.json -------------------------------------------------------------------------------- /themes/night-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/night-powerline.json -------------------------------------------------------------------------------- /themes/nord-colorful.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/nord-colorful.json -------------------------------------------------------------------------------- /themes/nord-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/nord-powerline.json -------------------------------------------------------------------------------- /themes/onedark-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/onedark-powerline.json -------------------------------------------------------------------------------- /themes/powerline-pango.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/powerline-pango.json -------------------------------------------------------------------------------- /themes/powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/powerline.json -------------------------------------------------------------------------------- /themes/rastafari-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/rastafari-powerline.json -------------------------------------------------------------------------------- /themes/rose-pine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/rose-pine.json -------------------------------------------------------------------------------- /themes/sac_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/sac_red.json -------------------------------------------------------------------------------- /themes/solarized-dark-awesome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/solarized-dark-awesome.json -------------------------------------------------------------------------------- /themes/solarized-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/solarized-powerline.json -------------------------------------------------------------------------------- /themes/solarized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/solarized.json -------------------------------------------------------------------------------- /themes/srcery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/srcery.json -------------------------------------------------------------------------------- /themes/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/test.json -------------------------------------------------------------------------------- /themes/test_cycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/test_cycle.json -------------------------------------------------------------------------------- /themes/test_invalid.json: -------------------------------------------------------------------------------- 1 | this is really not json 2 | -------------------------------------------------------------------------------- /themes/wal-powerline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/wal-powerline.json -------------------------------------------------------------------------------- /themes/zengarden-powerline-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/zengarden-powerline-light.json -------------------------------------------------------------------------------- /themes/zengarden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/themes/zengarden.json -------------------------------------------------------------------------------- /util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/util/Makefile -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobi-wan-kenobi/bumblebee-status/HEAD/versioneer.py --------------------------------------------------------------------------------