Function | Shortcut |
---|---|
Tile window to the top | ⊞-↑ |
Tile window to the bottom | ⊞-↓ |
Tile window to the left | ⊞-← |
Tile window to the right | ⊞-→ |
Maximize window | ⊞-⇞ |
Hide window | ⊞-⇟ |
Dec 6 09:23:25 Pluto org.freedesktop.Notifications[1059]: (mate-notification-daemon:1129): Gtk-WARNING **: Error loading theme icon 'window-close' for stock: Format d'image non reconnu
See this for details (this was on the browser tab right after the one providing the solution below, so did not read it yet
/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders
https://petermolnar.net/solution-for-gtk-warning-error-loading-theme-icon/ As root : for i in /usr/share/icons/*; do gtk-update-icon-cache $i; done ==========================================&<========================================================= https://askubuntu.com/questions/822770/desktop-flickers-icons-white apt install --reinstall xfdesktop4 ==========================================&<========================================================= https://forums.fedoraforum.org/showthread.php?280639-Icons-and-images-disappeared-can-t-login-in-gnome-shell As root : update-mime-database /usr/share/mime chmod 664 /usr/share/applications/mimeinfo.cache reboot
apt install xfswitch-plugin
This may do the trick, but this will install ~100MB of Gnome stuff and libs, and I don't want that. Using the --no-install-recommends flag turns this down to ~40MB, but it's still too much.
At the lock screen step, this may fail saying :
Could not execute "gdmflexiserver": No such file or directoryIn such case, as root (source) :
newFile='/usr/local/bin/gdmflexiserver'; cat << EOF > $newFile
#!/bin/sh
# replacement for missing gdmflexiserver
dm-tool switch-to-greeter
EOF
chmod 775 $newFile
Field | Value |
---|---|
Name | dualScreen |
Description | Auto-configure dual-screen |
Command | /usr/bin/xrandr --output DVI-1 --left-of DVI-0 |
The binary must be specified with its absolute path.
[Desktop Entry] Type=Application Exec=/path/to/binary args Hidden=false X-GNOME-Autostart-enabled=true Name[fr_FR]=myStartupApp Name=myStartupApp Comment[fr_FR]= Comment=
These settings apply to Bob only. To apply them system-wide, create the myStartupApp.desktop file in /etc/xdg/autostart/ instead of /home/bob/.config/autostart/.
If all users are happy with these settings and Bob isn't, he can override them with his own myStartupApp.desktop file. He may also disable the launch of myStartupApp with Hidden=true
in his config file.
This method is being standardized and should work with Gnome, KDE and others.