mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-10 10:39:22 +01:00
17 lines
565 B
Bash
17 lines
565 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# This is all adapted from /usr/share/doc/darkman/examples/dark-mode.d/
|
||
|
|
||
|
# Notify of light theme switch
|
||
|
(notify-send --app-name="darkman" --urgency=low --icon=moon-phase-full "Moonlights" &)
|
||
|
|
||
|
# GTK Theme
|
||
|
(gsettings set org.gnome.desktop.interface gtk-theme Breeze-Dark &)
|
||
|
(dbus-send --session --dest=org.kde.GtkConfig --type=method_call /GtkConfig org.kde.GtkConfig.setGtkTheme "string:Breeze" &)
|
||
|
|
||
|
# Xfce theme?
|
||
|
(exec xfconf-query -c xsettings -p /Net/ThemeName -s 'Breeze' &)
|
||
|
|
||
|
# Plasma
|
||
|
(lookandfeeltool --apply "org.kde.breezedark.desktop" &)
|