12 lines
423 B
SYSTEMD
12 lines
423 B
SYSTEMD
|
[Unit]
|
||
|
Description=Todo.md floating vim instance
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
# workaround to allow relative executable invocation (i.e. current users' home dir)
|
||
|
ExecStart=/bin/bash -c 'alacritty --title "dropdown-todo" --class "Alacritty,scratchpad" -e nvim -c ":set nonumber norelativenumber noshowmode noruler laststatus=0 noshowcmd shortmess=F" %h/documents/records/todo.md'
|
||
|
Restart=always
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|