23 lines
371 B
Fish
Executable file
23 lines
371 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
|
|
set -Ux XDG_CURRENT_DESKTOP sway
|
|
|
|
for s in $ENV_PATH/*/sway-init.d.fish
|
|
source $s (dirname $s)
|
|
end
|
|
|
|
exec sway
|