17 lines
266 B
Text
17 lines
266 B
Text
|
#!/bin/sh -xe
|
||
|
|
||
|
# cd to home
|
||
|
cd
|
||
|
|
||
|
# Add the Wayland version of Wine to the path
|
||
|
export PATH="/opt/wine-wl/usr/bin:$PATH"
|
||
|
|
||
|
# Set librewolf as default browser
|
||
|
export BROWSER=librewolf
|
||
|
|
||
|
# Execution
|
||
|
dbus-launch --exit-with-session \
|
||
|
ssh-agent \
|
||
|
/usr/bin/Hyprland
|
||
|
|