Difference between revisions of "Gnome"

From RHS Wiki
Jump to navigation Jump to search
m
Tag: visualeditor
Line 1: Line 1:
== Startup Applications ==
+
==Startup Applications==
 
nano ~/.config/autostart/guake.desktop
 
nano ~/.config/autostart/guake.desktop
 
  <nowiki>[Desktop Entry]
 
  <nowiki>[Desktop Entry]
Type=Application
+
Type=Application
Exec=/usr/bin/xflux -z 12345
+
Exec=/usr/bin/xflux -z 12345
Hidden=false
+
Hidden=false
X-GNOME-Autostart-enabled=true
+
X-GNOME-Autostart-enabled=true
Name[en_US]=xflux
+
Name[en_US]=xflux
Name=xflux
+
Name=xflux
Comment[en_US]=Screen color temperature changer
+
Comment[en_US]=Screen color temperature changer
Comment=Screen color temperature changer</nowiki>
+
Comment=Screen color temperature changer</nowiki>
  
 
cat /etc/xdg/autostart/orca-autostart.desktop
 
cat /etc/xdg/autostart/orca-autostart.desktop
  
Gnome Tweak Tool
+
== Gnome Tweak Tool ==
 +
sudo apt install gnome-tweaks -y
 +
 
 +
== Show minimize, maximize and close buttons ==
 +
 
 +
=== top right ===
 +
<syntaxhighlight lang="bash">
 +
gsettings set org.gnome.desktop.wm.preferences button-layout ":minimize,maximize,close"
 +
</syntaxhighlight>
 +
 
 +
=== top left ===
 +
<syntaxhighlight lang="bash">
 +
gsettings set org.gnome.desktop.wm.preferences button-layout "close,minimize,maximize:"
 +
</syntaxhighlight>

Revision as of 22:43, 5 May 2022

Startup Applications

nano ~/.config/autostart/guake.desktop

[Desktop Entry]
 Type=Application
 Exec=/usr/bin/xflux -z 12345
 Hidden=false
 X-GNOME-Autostart-enabled=true
 Name[en_US]=xflux
 Name=xflux
 Comment[en_US]=Screen color temperature changer
 Comment=Screen color temperature changer

cat /etc/xdg/autostart/orca-autostart.desktop

Gnome Tweak Tool

sudo apt install gnome-tweaks -y

Show minimize, maximize and close buttons

top right

gsettings set org.gnome.desktop.wm.preferences button-layout ":minimize,maximize,close"

top left

gsettings set org.gnome.desktop.wm.preferences button-layout "close,minimize,maximize:"