jarno revised this gist . Go to revision
1 file changed, 6 insertions, 1 deletion
fedora_sb_gtk4_tweaks.sh
@@ -30,4 +30,9 @@ gsettings set org.gnome.desktop.wm.preferences action-middle-click-titlebar 'min | |||
30 | 30 | curl -sL https://git.oranki.net/jarno/firefox-gnome-theme/raw/branch/0ranki-main/scripts/install-by-curl.sh | bash | |
31 | 31 | ||
32 | 32 | ## Thunderbird | |
33 | - | curl -sL https://git.oranki.net/jarno/thunderbird-gnome-theme/src/branch/main/scripts/install-by-curl.sh | bash | |
33 | + | pushd /tmp | |
34 | + | git clone https://git.oranki.net/jarno/thunderbird-gnome-theme.git | |
35 | + | pushd thunderbird-gnome-theme | |
36 | + | ./scripts/install.sh -f ~/.var/app/org.mozilla.Thunderbird/.thunderbird | |
37 | + | popd | |
38 | + | popd |
jarno revised this gist . Go to revision
No changes
jarno revised this gist . Go to revision
1 file changed, 33 insertions
fedora_sb_gtk4_tweaks.sh(file created)
@@ -0,0 +1,33 @@ | |||
1 | + | #!/bin/bash | |
2 | + | ||
3 | + | ##------------------------## | |
4 | + | ## Check Adw-gt3 version! ## | |
5 | + | ##------------------------## | |
6 | + | ADWGTKV=v5.2 | |
7 | + | ||
8 | + | mkdir -p ~/.local/share/themes | |
9 | + | curl -sL https://github.com/lassekongo83/adw-gtk3/releases/download/${ADWGTKV}/adw-gtk3${ADWGTKV}.tar.xz | tar xJv -C ~/.local/share/themes | |
10 | + | flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
11 | + | flatpak update | |
12 | + | flatpak install org.gtk.Gtk3theme.adw-gtk3 org.gtk.Gtk3theme.adw-gtk3-dark | |
13 | + | gsettings set org.gnome.desktop.interface gtk-theme 'adw-gtk3' | |
14 | + | gsettings set org.gnome.desktop.interface color-scheme 'default' | |
15 | + | ||
16 | + | ## Gsettings tweaks | |
17 | + | gsettings set org.gnome.desktop.interface font-name 'Nimbus Sans 11' | |
18 | + | gsettings set org.gnome.desktop.interface monospace-font-name 'Hack 10' | |
19 | + | gsettings set org.gnome.desktop.interface font-antialiasing 'rgba' | |
20 | + | gsettings set org.gnome.desktop.interface font-hinting 'slight' | |
21 | + | gsettings set org.gnome.desktop.wm.preferences audible-bell false | |
22 | + | gsettings set org.gnome.desktop.interface clock-show-weekday true | |
23 | + | gsettings set org.gnome.desktop.interface locate-pointer true | |
24 | + | gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click true | |
25 | + | gsettings set org.gnome.desktop.wm.preferences focus-mode sloppy | |
26 | + | gsettings set org.gnome.desktop.calendar show-weekdate true | |
27 | + | gsettings set org.gnome.desktop.wm.preferences action-middle-click-titlebar 'minimize' | |
28 | + | ||
29 | + | ## Firefox | |
30 | + | curl -sL https://git.oranki.net/jarno/firefox-gnome-theme/raw/branch/0ranki-main/scripts/install-by-curl.sh | bash | |
31 | + | ||
32 | + | ## Thunderbird | |
33 | + | curl -sL https://git.oranki.net/jarno/thunderbird-gnome-theme/src/branch/main/scripts/install-by-curl.sh | bash |