meta: Add GNOME package

Since GNOME is configured through dconf and gsettings, it is easy to
write scripts for each group of settings that we want to change.
This commit is contained in:
Donovan Glover 2018-11-25 22:03:48 -05:00
parent abdc5317e1
commit 397ee54082
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
6 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#!/bin/sh
# Use the 'best' antialiasing settings for modern displays
gsettings set org.gnome.settings-daemon.plugins.xsettings antialiasing rgba
gsettings set org.gnome.settings-daemon.plugins.xsettings hinting full

View File

@ -0,0 +1,5 @@
#!/bin/sh
# Use the dark variant of the Arc GTK theme
gsettings set org.gnome.desktop.interface gtk-theme Arc-Dark-solid
gsettings set org.gnome.desktop.interface icon-theme Papirus-Dark

View File

@ -0,0 +1,4 @@
#!/bin/sh
# Use Plasma's default cursor theme in GNOME
gsettings set org.gnome.desktop.interface cursor-theme breeze_cursors

View File

@ -0,0 +1,7 @@
#!/bin/sh
# Use the Alternate Tab and Launch New Instance extensions
gsettings set org.gnome.shell enabled-extensions "[
'alternate-tab@gnome-shell-extensions.gcampax.github.com',
'launch-new-instance@gnome-shell-extensions.gcampax.github.com'
]"

View File

@ -0,0 +1,5 @@
#!/bin/sh
# Use the light variant of the Pop GTK theme
gsettings set org.gnome.desktop.interface gtk-theme Pop
gsettings set org.gnome.desktop.interface icon-theme Pop

16
gnome/README.md Normal file
View File

@ -0,0 +1,16 @@
# GNOME
[GNOME][gnome] is a simple desktop environment with X11 and Wayland support. It includes an interface that works well with touch devices.
## Use Cases
GNOME can be used to:
- Have a desktop environment that just works, with no configuration necessary
You should not use GNOME if:
- You want to learn how X works behind the scenes
- You want complete control of your desktop environment
[gnome]: https://wiki.archlinux.org/index.php/GNOME