You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
266 B
Plaintext
11 lines
266 B
Plaintext
5 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# FS#63021
|
||
|
#
|
||
|
|
||
|
systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XCURSOR_SIZE
|
||
|
|
||
|
if command -v dbus-update-activation-environment >/dev/null 2>&1; then
|
||
|
dbus-update-activation-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XCURSOR_SIZE
|
||
|
fi
|