wmtools/README.MD

42 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2022-04-29 10:15:19 +02:00
# A selection of information output tools for dmenu
These are a selection of independant tools for displaying various information
about system status in dmenu. Some of them i.e. `volume` have options (up, down, mute...)
which are selectable options in dmenu.
2022-04-29 11:19:04 +02:00
2022-04-30 19:02:47 +02:00
Example in dmenu:
2022-04-30 19:00:55 +02:00
2022-04-30 19:02:47 +02:00
https://user-images.githubusercontent.com/31094984/166115207-c24e9ec8-136e-4956-9842-bcde496bb743.mp4
Example in rofi:
https://user-images.githubusercontent.com/31094984/166115213-511fdaaa-4c04-461a-9976-38a2e9bd83fe.mp4
2022-04-30 19:00:55 +02:00
2022-04-29 11:19:04 +02:00
2022-04-29 10:15:19 +02:00
They are compiled separately, for example:
```nim
nim c pingclock
```
2022-04-29 10:59:28 +02:00
and then run with
```sh
./pingclock dmenu
or
./pingclock rofi
```
it can also be run without any arguments to receive a i3bar compatible json string
2022-04-29 10:15:19 +02:00
Personally, I have these bound to key combinations in i3. In fact, I have a seperate `bindsym` mode in which all these tools are accessible i.e. `$mod+i` to get to "info" mode then `p` to show pingclock.
2022-05-01 19:09:07 +02:00
You can also set the volume and brightness levels by typing a numeric figure into the dmenu/rofi input box
2022-04-29 10:15:19 +02:00
There's also an i3bar_tools_threaded folder with tools for use with i3bar/i3blocks which continously update. Currently these are not working as I recently switched from this as primary, to a secondary choice.
These have some configuration variables explicit to me, you'll need to change them for you for them to be useful I imagine.
2022-05-01 19:05:31 +02:00
### Dependencies
- dmenu, rofi, or i3bar (with i3blocks)
2022-04-29 10:15:19 +02:00
I'm aware my code is messy. I'm aware my code is undocumented. But hopefully these things are simple enough to work out.