diff options
Diffstat (limited to 'local/bin/startsway')
-rwxr-xr-x[-rw-r--r--] | local/bin/startsway | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/local/bin/startsway b/local/bin/startsway index a162deb..995362e 100644..100755 --- a/local/bin/startsway +++ b/local/bin/startsway @@ -1,5 +1,6 @@ -#!/bin/sh +#!/bin/bash set -eu +exec 1> >(logger -s -t "${0##*/}") 2>&1 # Declare the current desktop export XDG_CURRENT_DESKTOP=sway @@ -14,4 +15,4 @@ export force_s3tc_enable=true export MOZ_USE_XINPUT2=1 export MOZ_ENABLE_WAYLAND=1 -exec dbus-launch --exit-with-session sway +exec dbus-run-session sway |