Ajustes do Gnome ou Gnome Tweak Tools

Boa noite pessoal! Como faço pra instalar o aplicativo, que na central de aplicativos do Fedora, se chama Ajustes, que é um aplicativo para o Gnome, e que possui vários ajustes extras para o sistema e para o ambiente gráfico?

The Tool you mean is “GNOME Tweaks”. It’s not available in App Center, but all the options it can set, can also be done on the command line. What exactly do you want to set?

For example, how do I enable/disable sound amplification, center windows and configure to start applications at system startup. For now, lol.

Center new Windows:

gsettings set org.gnome.mutter center-new-windows true

Allow Over-amplification:

gsettings set org.gnome.desktop.sound allow-volume-above-100-percent true

Adding something which starts up on Login is a little more complex. You have to write a file ending with a .desktop extension and put it under ~/.config/autostart. For example, if you put the following into ~/.config/autostart/autostart-gedit.desktop, the Editor is started at every boot after about 10 seconds:

[Desktop Entry]
Type=Application
Name=gedit Autostart
Description=Automatically starts the Editor
Exec=gedit 
X-GNOME-Autostart-Enabled=true
X-GNOME-Autostart-Delay=10

More information about the File format:

  1. https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html
  2. https://help.gnome.org/admin/system-admin-guide/stable/autostart-applications.html.en
  3. https://gist.github.com/najamelan/b44e943145b03e018229
1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.