how to know user and display in reconnectwm.sh? #2978
-
I want to execute the following
I do not want to type the lock password |
Beta Was this translation helpful? Give feedback.
Answered by
matt335672
Mar 6, 2024
Replies: 1 comment 4 replies
-
The reconnectwm.sh script runs as the reconnecting user. The environment should be correct already. Temporarily set up a reconnectwm.sh script containing the following:- #!/bin/sh
exec >/tmp/reconnect.log 2>&1
env | sort Then try a reconnect and see if you've got the environment set you need in /tmp/reconnect.log. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Kreijstal
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The reconnectwm.sh script runs as the reconnecting user. The environment should be correct already.
Temporarily set up a reconnectwm.sh script containing the following:-
Then try a reconnect and see if you've got the environment set you need in /tmp/reconnect.log.