2023-04-13 00:04:20 +02:00
|
|
|
#!/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
|
2023-04-16 22:58:56 +02:00
|
|
|
exec \
|
|
|
|
dbus-launch --exit-with-session \
|
2023-04-13 00:04:20 +02:00
|
|
|
ssh-agent \
|
2023-04-16 22:58:56 +02:00
|
|
|
/usr/bin/Hyprland "$@"
|
2023-04-13 00:04:20 +02:00
|
|
|
|