You are not logged in.
Pages: 1
Is it possible to set things like Power Manager -> General -> When Power button is pressed?
I'm finding that unless I configure it for each user logging out of a session causes the computer to hang up. At that point I have to power cycle since I can't even get to a consol terminal.
Offline
I can't really answer, but this question has some interesting links, perhaps they help you work out something...
Good luck!
Offline
Another way that you might be able to accomplish this is by creating an "All Users" functionality where configuration changes are made whenever someone logs in. To do this, you would create a script in /usr/local/bin (say "all_users_config_changes") that would look something like this:
#!/bin/bash
sleep 3
xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/power-button-action -s XX
...where XX is one of:
0 do nothing
1 suspend
2 hibernate
3 ask
4 shutdown
To get this to execute for all users when they log in, you would create a .desktop file and place it in the system startup directory (/etc/xdg/autostart or for Xubuntu, /etc/xdg/xdg-xubuntu/autostart). A desktop file that looks like:
[Desktop Entry]
Type=Application
Name=All Users Config
Comment=A utility to update configuration settings
Icon=user-info
Exec=/usr/local/bin/all_users_config_changes
This way, whenever someone logs in, that script will be run and the configuration setting will be updated.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
I can't really answer, but this question has some interesting links, perhaps they help you work out something...
Good luck!
It's a start
What I'm not understanding is why this box just freezes if the screen saver hardware stuff hasn't been set. Fortunately, adding new users isn't a common occurrence.
Offline
Another way that you might be able to accomplish this is by creating an "All Users" functionality where configuration changes are made whenever someone logs in. To do this, you would create a script in /usr/local/bin (say "all_users_config_changes") that would look something like this:
Okay ... that's something that should work. Seems like a bit of overkill Guess my hope that there was a default file with settings was just wishful thinking?
thanks.
Offline
Pages: 1
[ Generated in 0.009 seconds, 7 queries executed - Memory usage: 535.08 KiB (Peak: 535.92 KiB) ]