mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-25 12:20:15 +10:00
8 lines
152 B
Bash
8 lines
152 B
Bash
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
wayland_native="$(snapctl get wayland-native)"
|
|
if [[ -z "$wayland_native" ]]; then
|
|
snapctl set wayland-native=false
|
|
fi
|