Skip to content

Commit

Permalink
Fix for full path of compositors (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefonarch authored Nov 17, 2024
1 parent 7dd3bd4 commit b786274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion startlxqtwayland.in
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ if [ ! -d "$XDG_CONFIG_HOME/lxqt/wayland" ]; then
fi

if grep -q "compositor" "$XDG_CONFIG_HOME/lxqt/session.conf"; then
COMPOSITOR=`cat "$XDG_CONFIG_HOME"/lxqt/session.conf|grep compositor |awk -F'=' '{print $2}'`
COMPOSITOR=`cat "$XDG_CONFIG_HOME"/lxqt/session.conf|grep compositor |awk -F'=' '{sub(".*/", "", $2); print $2}'`
fi

export XDG_CURRENT_DESKTOP="LXQt:$COMPOSITOR:wlroots"
Expand Down

0 comments on commit b786274

Please sign in to comment.