कुंजी DBUS_SESSION_BUS_ADDRESS
पर्यावरण चर सेट करने के लिए है।
पर इस सूत्र मैं निम्न स्क्रिप्ट, कि चर का सही मूल्य प्राप्त करने में मदद करता है कि पाया। इसके लिए प्रक्रिया का नाम चाहिए, जो डेस्कटॉप पर चल रही है, जिस पर हम dbus सेटिंग्स बदलना चाहते हैं। (समानांतर में 1 से अधिक चल चित्रमय सत्र हो सकते हैं)। चलो इसे कहते हैंdiscover_session_bus_address.sh
#!/bin/bash
# Remember to run this script using the command "source ./filename.sh"
# Search these processes for the session variable
# (they are run as the current user and have the DBUS session variable set)
compatiblePrograms=( nautilus kdeinit kded4 pulseaudio trackerd )
# Attempt to get a program pid
for index in ${compatiblePrograms[@]}; do
PID=$(pidof -s ${index})
if [[ "${PID}" != "" ]]; then
break
fi
done
if [[ "${PID}" == "" ]]; then
echo "Could not detect active login session"
return 1
fi
QUERY_ENVIRON="$(tr '\0' '\n' < /proc/${PID}/environ | grep "DBUS_SESSION_BUS_ADDRESS" | cut -d "=" -f 2-)"
if [[ "${QUERY_ENVIRON}" != "" ]]; then
export DBUS_SESSION_BUS_ADDRESS="${QUERY_ENVIRON}"
echo "Connected to session:"
echo "DBUS_SESSION_BUS_ADDRESS=${DBUS_SESSION_BUS_ADDRESS}"
else
echo "Could not find dbus session ID in user environment."
return 1
fi
return 0
इस स्क्रिप्ट के साथ हम निम्नलिखित कर सकते हैं, यह मानते हुए कि यह unity
प्रक्रिया डेस्कटॉप पर चल रही है, जिस पर हम अपनी सेटिंग्स लागू करना चाहते हैं:
. ./discover_session_bus_address.sh unity
gsettings set org.compiz.core:/org/compiz/profiles/unity/plugins/core/ hsize "4"
और चीजें ठीक होनी चाहिए।
DBUS_SESSION_BUS_ADDRESS
, लेकिन यह भीXDG_RUNTIME_DIR
।