mirror of
https://github.com/gosticks/PaperWM.git
synced 2026-02-22 16:52:49 +00:00
Encode newlines using non-breaking space. Don't unconditionally encode newlines though since it the debug script must be used to decode them.
11 lines
236 B
Bash
Executable File
11 lines
236 B
Bash
Executable File
#!/usr/bin/env zsh
|
||
|
||
|
||
|
||
# We use non-breaking space to encode newlines in multiline messages
|
||
|
||
journalctl --follow \
|
||
$(dirname =gnome-shell(:A))/.gnome-shell-wrapped \
|
||
| sed -e 's|\]:|]:\n |' \
|
||
-e 's| |\n |g'
|