24 lines
941 B
Bash
Executable File
24 lines
941 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
|
gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"
|
|
gsettings set org.gnome.desktop.interface icon-theme "Yaru-blue"
|
|
|
|
# Setup theme links
|
|
mkdir -p ~/.config/omarchy/themes
|
|
for f in ~/.local/share/omarchy/themes/*; do ln -nfs "$f" ~/.config/omarchy/themes/; done
|
|
|
|
# Set initial theme
|
|
mkdir -p ~/.config/omarchy/current
|
|
ln -snf ~/.config/omarchy/themes/rose-pine/ ~/.config/omarchy/current/theme
|
|
ln -snf ~/.config/omarchy/current/theme/backgrounds/cthulhu.jpg ~/.config/omarchy/current/background
|
|
|
|
# Set specific app links for current theme
|
|
# ln -snf ~/.config/omarchy/current/theme/neovim.lua ~/.config/nvim/lua/plugins/theme.lua
|
|
|
|
mkdir -p ~/.config/btop/themes
|
|
ln -snf ~/.config/omarchy/current/theme/btop.theme ~/.config/btop/themes/current.theme
|
|
|
|
mkdir -p ~/.config/mako
|
|
ln -snf ~/.config/omarchy/current/theme/mako.ini ~/.config/mako/config
|