Last active
March 13, 2022 10:14
-
-
Save kaloprominat/de030603a82b98764e99 to your computer and use it in GitHub Desktop.
os x: python get currently logged user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#python and system configuration framework | |
loggedInUser=`python -c 'from SystemConfiguration import SCDynamicStoreCopyConsoleUser; import sys; username = (SCDynamicStoreCopyConsoleUser(None, None, None) or [None])[0]; username = [username,""][username in [u"loginwindow", None, u""]]; sys.stdout.write(username + "\n");'` | |
# dev console owner (_mbsetup user stable) | |
stat -f '%Su' /dev/console | |
# scutil | |
echo "show State:/Users/ConsoleUser" | scutil | |
# loginwindow plist (last means last, fails with multiuser sessions) | |
defaults read /Library/Preferences/com.apple.loginwindow.plist lastUserName | |
# osascript (_mbsetup user stable) | |
osascript -e "short user name of (system info)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment