18 lines
271 B
Fish
Executable file
18 lines
271 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
set -q XDG_CONFIG_HOME || begin
|
|
echo XDG_CONFIG_HOME not set
|
|
exit 1
|
|
end
|
|
|
|
set -q DOTFILES_PATH || begin
|
|
echo DOTFILES_PATH not set
|
|
exit 1
|
|
end
|
|
|
|
set -Ux CLUTTER_BACKEND wayland
|
|
set -Ux SDL_VIDEODRIVER wayland
|
|
set -Ux MOZ_ENABLE_WAYLAND 1
|
|
|
|
exec sway
|