bdwmb/doc/MODULE_WINDOW.md
Ari Archer df4a3c1dc7
update @ Sat 19 Mar 17:14:52 EET 2022
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-03-19 17:14:52 +02:00

24 lines
520 B
Markdown

# Module - window
This module shows your current active window title
```
NAME: window
DEPENDENCIES: xprop, awk, cut, tr, $DEFAULT_WINDOW_TITLE
TYPE: Shellscript
```
## Setup
Add the `window` module to your modules list and
make sure you have xprop (provided by xprop),
awk (provided by awk or coreutils) and cut, tr (both provided by coreutils)
Then define `DEFAULT_WINDOW_TITLE` in your `config.sh`,
it will be used if there is no active window selected.
For example:
```bash
export DEFAULT_WINDOW_TITLE='~'
```