fix: missing cursor, networking error

This commit is contained in:
ryan4yin
2023-05-06 01:23:18 +08:00
parent 830605aeec
commit 1b95d4945f
7 changed files with 65 additions and 10 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
## Set GTK Themes, Icons, Cursor and Fonts
THEME='Arc-Dark'
ICONS='Zafiro-Blue'
FONT='Noto Sans 9'
CURSOR='Qogirr'
SCHEMA='gsettings set org.gnome.desktop.interface'
apply_themes () {
${SCHEMA} gtk-theme "$THEME"
${SCHEMA} icon-theme "$ICONS"
${SCHEMA} cursor-theme "$CURSOR"
${SCHEMA} font-name "$FONT"
}
apply_themes