mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
20 lines
421 B
Bash
Executable File
20 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Set GTK Themes, Icons, Cursor and Fonts
|
|
|
|
THEME='Catppuccin-Mocha-Standard-Mauve-Dark'
|
|
# ICONS='Qualia-purple-dark'
|
|
# FONT='Fira Sans Condensed 13'
|
|
CURSOR='Catppuccin-Mocha-Mauve-Cursors'
|
|
|
|
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
|