Marty Oehme
845dbba848
Dropdown services need an X server to connect to and fail autostarting if there's no available server. HACK Increasing their restart timer will alleviate this problem, *but* it also means the dropdowns will start more slowly when closed by the user. There should be another way to alleviate one issue (start automatically after X is available) without exacerbating the other (restart when you have been closed).
12 lines
436 B
Desktop File
12 lines
436 B
Desktop File
[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
|
|
RestartSec=5
|
|
|
|
[Install]
|
|
WantedBy=default.target
|