mirror of
https://github.com/vim/vim
synced 2025-04-29 21:07:49 +02:00
closes: #17162 Signed-off-by: Foxe Chen <chen.foxe@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
7 lines
217 B
Bash
7 lines
217 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Using a systemd user service doesn't work because it seems like github actions
|
|
# doesn't support user sessions? Just run sway in the background and disown it.
|
|
WLR_BACKENDS=headless sway &
|
|
disown
|