You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: not-just-text/README.md
+26-3Lines changed: 26 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ A Noctalia bar widget that displays a short message — either custom text, a ra
7
7
-**just text** — type anything, it shows up in the bar
8
8
-**List mode** — picks a random line from a text file each time the wallpaper changes
9
9
-**Fortune mode** — shows a random quote from `fortune -s` instead
10
-
-**Wallpaper-triggered refresh** — when list or fortune mode is on, a new entry is picked each time the wallpaper changes
10
+
-**Wallpaper-triggered refresh** — when list or fortune mode is on, a new entry is picked each time the wallpaper changes (can be disabled to pick once per session)
11
11
-**Fortune options** — optionally filter by category (e.g. `computers`), enable offensive quotes (`-o`), or equalise category probability (`-e`)
12
12
- Click the widget to open settings directly
13
13
@@ -21,5 +21,28 @@ Lines starting with `# ` (hash + space) and blank lines are ignored, so `#hashta
21
21
22
22
## Fortune mode
23
23
24
-
Requires `fortune` to be installed.
25
-
Quotes are filtered to single-line entries of 60 characters or fewer. If no suitable quote is found after 10 attempts, the widget displays `(╯°□°)╯︵ ┻━┻`.
24
+
Requires `fortune` to be installed:
25
+
26
+
```bash
27
+
# Arch
28
+
sudo pacman -S fortune-mod
29
+
30
+
# Debian/Ubuntu
31
+
sudo apt install fortune-mod
32
+
```
33
+
34
+
Quotes are filtered to single-line entries up to a configurable character limit (default: 60). If no suitable quote is found after 10 attempts, the widget displays `(╯°□°)╯︵ ┻━┻`.
35
+
36
+
## Settings
37
+
38
+
| Key | Type | Default | Description |
39
+
|---|---|---|---|
40
+
|`text`| string |`"Hello"`| Static text shown in the bar (just text mode) |
0 commit comments