2025-07-16 14:19:03 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-07-04 15:20:20 -07:00
|
|
|
# Use dark mode for QT apps too (like kdenlive)
|
2025-06-09 12:38:03 +02:00
|
|
|
sudo pacman -S --noconfirm kvantum-qt5
|
|
|
|
|
2025-06-09 09:50:30 +02:00
|
|
|
# Prefer dark mode everything
|
2025-06-11 14:00:22 +02:00
|
|
|
sudo pacman -S --noconfirm gnome-themes-extra # Adds Adwaita-dark theme
|
2025-06-25 12:44:44 -07:00
|
|
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
2025-06-25 12:49:56 -07:00
|
|
|
gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"
|
2025-06-18 21:17:59 +02:00
|
|
|
|
|
|
|
# Setup theme links
|
|
|
|
mkdir -p ~/.config/omarchy/themes
|
|
|
|
for f in ~/.local/share/omarchy/themes/*; do ln -s "$f" ~/.config/omarchy/themes/; done
|
|
|
|
|
|
|
|
# Set initial theme
|
2025-06-19 08:10:36 -04:00
|
|
|
mkdir -p ~/.config/omarchy/current
|
|
|
|
ln -snf ~/.config/omarchy/themes/tokyo-night ~/.config/omarchy/current/theme
|
2025-07-17 16:34:47 -07:00
|
|
|
ln -snf ~/.config/omarchy/current/theme/backgrounds/1-Pawel-Czerwinski-Abstract-Purple-Blue.jpg ~/.config/omarchy/current/background
|
2025-06-18 21:17:59 +02:00
|
|
|
|
|
|
|
# Set specific app links for current theme
|
2025-06-19 08:10:36 -04:00
|
|
|
ln -snf ~/.config/omarchy/current/theme/neovim.lua ~/.config/nvim/lua/plugins/theme.lua
|
2025-07-17 15:16:37 -07:00
|
|
|
|
2025-06-24 12:17:05 -07:00
|
|
|
mkdir -p ~/.config/btop/themes
|
2025-06-19 08:10:36 -04:00
|
|
|
ln -snf ~/.config/omarchy/current/theme/btop.theme ~/.config/btop/themes/current.theme
|
2025-07-17 15:16:37 -07:00
|
|
|
|
2025-06-22 20:48:38 -04:00
|
|
|
mkdir -p ~/.config/mako
|
|
|
|
ln -snf ~/.config/omarchy/current/theme/mako.ini ~/.config/mako/config
|