mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
8 lines
217 B
Bash
8 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
|