Skip to content

Commit

Permalink
Merge pull request #597 from jjramsey/swaybar-contrib
Browse files Browse the repository at this point in the history
Add examples of usage with swaybar
  • Loading branch information
rcaelers authored Jan 25, 2025
2 parents d7b417e + d1452bc commit a8dc454
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 2 deletions.
20 changes: 18 additions & 2 deletions contrib/waybar-yambar-poss-other-applets/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
These Python scripts can be used with Waybar and Yambar, and possibly other clients as well. They require the `pydbus` Python module.
These Python scripts can be used with Waybar, Yambar, and several other clients as well. They require the `pydbus` Python module.

The script `workrave_break_info.py` can also be used as a Python module (which is why it has underscores in its name instead of hyphens) for those who don't find the script flexible enough. (For example, a user of the Python-configured window manager/compositor qtile may prefer to use it as a module. Documentation for its use as a module is in the comments near the top of the script.)

The script `workrave-open.py` just opens Workrave's status window if it isn't already open (which doesn't necessarily happen if one simply types in `workrave` at the command-line).

Waybar
======

To use with Waybar, place the files `workrave_break_info.py` and `workrave-open.py` somewhere in your `$PATH`, and add the following to your Waybar config file:
```json
"custom/workrave": {
Expand All @@ -13,7 +18,8 @@ To use with Waybar, place the files `workrave_break_info.py` and `workrave-open.
```
Of course, `"custom/workrave"` should be added to one of these arrays in the Waybar config file: `modules-left`, `modules-center`, `modules-right`.

Note that all `workrave-open.py` does is open Workrave's status window if it isn't already open (which doesn't necessarily happen if one simply types in `workrave` at the command-line).
Yambar
======

To use `workrave_break_info.py` with Yambar, the following can be added to the Yambar config file:
```yaml
Expand Down Expand Up @@ -96,6 +102,9 @@ To use `workrave_break_info.py` with Yambar, the following can be added to the Y
```
The above configuration of course assumes that `workrave_break_info.py` is in `~/bin`. (Yambar does not use `$PATH` for its script modules.) `default_color`, `close_to_break_color`, and `overdue_color` can be adjusted to one's taste, compatibility with Yambar's background, etc.

Usage in other clients
======================

The `workrave_break_info.py` script also offers two other formats as well. One is "plain" format, which just has the script repeatedly prints the timer information from Workrave as brief plain text, e.g. `M: 4:53/5:00 R: 19:12/55:00`.

The other format is "json", where the script repeatedly outputs Workrave's timer information in a JSON format that can be used, for example, by [Elkowar's Wacky Widgets](https://elkowar.github.io/eww/) or [Sfwbar](https://github.com/LBCrion/sfwbar). Each line of output is the string representation of a JSON object with the following keys and values:
Expand Down Expand Up @@ -127,6 +136,13 @@ The other format is "json", where the script repeatedly outputs Workrave's timer

A given client using this JSON output may, of course, ignore at least some of these keys. Example files showing JSON format being used with EWW and Sfwbar are in the directories named, of course, "eww" and "sfwbar", respectively.

An example of `workrave_break_info.py` being used as a module is in the script `swaybar/workrave_swaybar_gen_json.py`, which should be installed in the same directory as the `workrave_break_info.py` module. This script generates example JSON output for usage with [Sway's](https://swaywm.org/) swaybar, which requires a different kind of JSON format than that described above. This particular output shows the status of Workrave and the current time and date. To show other statuses in swaybar, the script `workrave_swaybar_gen_json.py` will need to be modified. (See the `swaybar-protocol` man page for how to do this.)

In addition to the `workrave_swaybar_gen_json.py` script, there is also the `workrave-swaybar.sh` shell script, which both runs `workrave_swaybar_gen_json.py` and sets up swaybar so that it launches `workrave-open.py` when one clicks on the Workrave status in swaybar. To have Sway run this script at startup, set the arguments of `status_command` in Sway's config file to `exec /path/to/workrave-swaybar.sh`. Note that the `workrave-swaybar.sh` script assumes that both `workrave_swaybar_gen_json.py` and `workrave-open.py` are installed in `~/bin`.

Detailed usage info for `workrave_break_info.py` script
=======================================================

Here is the usage of `workrave_break_info.py`:
```
usage: workrave_break_info.py [-h] [-i POLLING_INTERVAL] [-f {plain,waybar,yambar,json}]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh

~/bin/workrave_swaybar_gen_json.py &

# Listening for STDIN events
while read line;
do
if [[ $line == *"name"*"workrave"* ]]; then
~/bin/workrave-open.py
fi
done
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/usr/bin/env python3

polling_interval = 1.0
date_format = "%a %b %d, %I:%M %p"

import json
import sys
import time
from datetime import datetime

from workrave_break_info import fmt_timer_plain, WorkraveBreakInfo

wr_break_info = WorkraveBreakInfo(color_dict = {
"default": ("#000000", "#87CEEB"),
"close to break": ("#000000", "#FFA500"),
"overdue": ("#FFFFFF", "#FF0000")
})

print('{ "version": 1, "click_events": true}\n[')

while True:
print("[")

for timer_type in ("microbreak", "restbreak", "dailylimit"):
timer_info = wr_break_info.get_timer_info(timer_type)

if timer_info.enabled:
print(f' {{"full_text": "{fmt_timer_plain(*timer_info)}", '
f'"name": "workrave", "instance": "wr_{timer_type}", '
f'"color": "{timer_info.colors[0]}", '
f'"background": "{timer_info.colors[1]}"}},') # Note comma at end

print(f' {{"full_text": "{datetime.now().strftime(date_format)}"}}')

print("],", flush = True)

time.sleep(polling_interval)

0 comments on commit a8dc454

Please sign in to comment.