Newtron Malayalam Asked: 2020-01-08 10:12:36 +0800 CST2020-01-08 10:12:36 +0800 CST 2020-01-08 10:12:36 +0800 CST How to edit Xfce logout menu? 772 I would like to customize the logout menu of Xfce session. Which file do I need to edit to change the menu options? customization xfce 2 Answers Voted Best Answer vanadium 2020-01-08T14:00:51+08:002020-01-08T14:00:51+08:00 You can disable options from the logout menu in xfce4-settings-editor. From the terminal, you can use xfconf-query, i.e. as in xfconf-query -c xfce4-session -np '/shutdown/ShowSuspend' -t 'bool' -s 'false' xfconf-query -c xfce4-session -np '/shutdown/ShowHibernate' -t 'bool' -s 'false' to remove "Suspend" and "Hibernate" options, respectively. This does not disable these possibilities, it just removes the options from the dialog. Kevin Bowen 2020-01-08T11:07:48+08:002020-01-08T11:07:48+08:00 This can be done by changing parameters in Xfce's kiosk mode related files. For example, to remove the Save Session button, follow these steps. From the terminal, create a directory sudo mkdir -v /etc/xdg/xfce4/kiosk Next, create this file: sudo touch /etc/xdg/xfce4/kiosk/kioskrc Edit the file and add the following lines: [xfce4-session] SaveSession=NONE Reboot your computer. The option for saving your sessions will no longer be on the logout session menu. You will need to take a look at the documentation for other customization options.
You can disable options from the logout menu in
xfce4-settings-editor
.From the terminal, you can use
xfconf-query
, i.e. as into remove "Suspend" and "Hibernate" options, respectively.
This does not disable these possibilities, it just removes the options from the dialog.
This can be done by changing parameters in Xfce's kiosk mode related files.
For example, to remove the Save Session button, follow these steps.
sudo mkdir -v /etc/xdg/xfce4/kiosk
sudo touch /etc/xdg/xfce4/kiosk/kioskrc
The option for saving your sessions will no longer be on the logout session menu.
You will need to take a look at the documentation for other customization options.