Fix recipe 'Launch a terminal for rapid logging'

This commit is contained in:
Gianluca Mondini 2021-10-11 11:07:52 +02:00
parent d347dac19e
commit f3924fae18

View file

@ -159,7 +159,7 @@ jrnl -on "$(jrnl --short | shuf -n 1 | cut -d' ' -f1,2)"
You can use this to launch a terminal that is the `jrnl` stdin prompt so you can start typing away immediately. You can use this to launch a terminal that is the `jrnl` stdin prompt so you can start typing away immediately.
```bash ```bash
jrnl now --config-override editor:"" jrnl --config-override editor ""
``` ```
Bind this to a keyboard shortcut. Bind this to a keyboard shortcut.
@ -171,13 +171,13 @@ In your `.xbindkeysrc`
```ini ```ini
Mod4+Mod1+j Mod4+Mod1+j
alacritty -t floating-jrnl -e jrnl now --config-override editor:"", alacritty -t floating-jrnl -e jrnl --config-override editor "",
``` ```
- **I3 WM** Launch a floating terminal with the `jrnl` prompt - **I3 WM** Launch a floating terminal with the `jrnl` prompt
```ini ```ini
bindsym Mod4+Mod1+j exec --no-startup-id alacritty -t floating-jrnl -e jrnl --config-override editor:"" bindsym Mod4+Mod1+j exec --no-startup-id alacritty -t floating-jrnl -e jrnl --config-override editor ""
for_window[title="floating *"] floating enable for_window[title="floating *"] floating enable
``` ```