Compare commits

...

18 commits
0.0.02 ... main

Author SHA1 Message Date
17095c11c8
version 0.0.05 2025-12-11 19:18:32 +01:00
4d66a77089
bugfix: set Breeze theme as default in config file 2025-12-11 19:17:09 +01:00
8b62fd4ed4
merge testing 2025-12-11 19:12:44 +01:00
216f3866cb
bugfix: more QT checking
- check for QT_QPA_PLATFORMTHEME=qt6ct
    - make plasma-changeicons optional
2025-12-11 19:05:25 +01:00
16f3a541dd
merge bugfixes 2025-12-09 10:53:01 +00:00
53e31eee65
fix(color-scheme): use prefer-light instead of default
default will show some context-menus e.g. waybar-tray in dark
2025-12-09 10:42:46 +00:00
bc036b47f5
[build] increment version to 0.0.04 2025-12-08 22:16:32 +00:00
130a32b641
[docs] update manpage 2025-12-08 22:14:14 +00:00
71485f4b1f
merge feature/replace_sed 2025-12-08 22:07:24 +00:00
77037021ee
[feature] remove use of sed in the GTK section (in progress 5) 2025-12-08 22:01:55 +00:00
c450c07913
[feature] check for check for plasma-workspace (in progress 4) 2025-12-08 10:55:57 +00:00
a97e05549e
version 0.0.3 2025-12-07 21:17:30 +00:00
7d29b4e766
[feature] check for GTK3/qt6c settings files (in progress 2) 2025-12-07 20:52:42 +00:00
334fa18594
[feature] check for GTK3/qt6c settings files (in progress 1) 2025-12-07 16:20:34 +00:00
e15f193cac
[bug] remove more hardcoded paths 2025-12-07 10:37:11 +00:00
20cfec138f
[bug] remove some hardcoded paths 2025-12-07 08:39:05 +00:00
89bcacbb4d
[docs] tweak some notes 2025-12-07 07:55:39 +00:00
17626c590f
fix message where the config file is created 2025-12-06 17:21:35 +00:00
5 changed files with 83 additions and 60 deletions

View file

@ -1,4 +1,4 @@
VERSION = 0.0.02
VERSION = 0.0.05
PN = night-theme-switcher
PREFIX ?= /usr

View file

@ -2,7 +2,7 @@
Wrapper script to switch between dark and light themes under Arch Linux.
## Why use it?
If using a barebone WM like hyprland or sway there is no easy way to change between dark and light themes.
If using a WM like hyprland or sway there is no easy way to change between dark and light themes.
For example, let's say we have a bunch of application that use KDE/QML/QT and GTK3/4 toolkit. We can now define which themes and icons are used as dark/light themes regardless of the toolkit which these apps are based on.
@ -15,7 +15,7 @@ AUR Package: https://BIGFATPLACEHOLDER
## Dependencies
- `glib2` provides the neccesary `gsettings`.
- [`qt6ct-kde`](https://aur.archlinux.org/packages?O=0&K=qt6ct-kde) (a patched version of qt6ct with KDE color schemes support).
- `qt6ct-kde` a patched version of qt6ct with KDE color schemes support. available in the [`AUR`](https://aur.archlinux.org/packages?O=0&K=qt6ct-kde) ).
- Any GTK3 theme with dark/light support.
- Any KDE color scheme whith dark/light support.
@ -45,7 +45,6 @@ Preview the configured settings:
$ nts p
```
## Tips
* Since `nts` requires already installed themes, consider having a look into those directories:
- `/usr/share/color-schemes` for KDE color schemes.

View file

@ -6,7 +6,7 @@
set -eo pipefail
## NOTE A patched version of qt6ct is required.
## NOTE The benefits are
## NOTE The benefits are:
## NOTE KDE color schemes support,KDE QML applications theming support and
## NOTE KDE's icon engine support
## NOTE See https://aur.archlinux.org/pkgbase/qt6ct-kde/
@ -51,6 +51,28 @@ readonly all_off bold blue green red yellow
### End insert of Arch script
# dependency checks probably not needed but they do not hurt
if [ ! "$QT_QPA_PLATFORMTHEME" == "qt6ct" ]; then
notify-send \
'Wrong environment variable' \
'Please set QT_QPA_PLATFORMTHEME=qt6ct.' \
-h string:x-canonical-private-synchronous:sys-notify \
-u critical \
-i dialog-error
mesg="environment variable QT_QPA_PLATFORMTHEME=qt6ct is not set."
echo -e "${red}==> ERROR:${all_off}${bold} ${mesg}${all_off}"
exit 1
fi
if ! command -v breeze-settings6 >/dev/null 2>&1; then
notify-send \
'Missing dependency' \
'Please install breeze.' \
-h string:x-canonical-private-synchronous:sys-notify \
-u critical \
-i dialog-error
mesg="breeze is required to use this script."
echo -e "${red}==> ERROR:${all_off}${bold} ${mesg}${all_off}"
exit 1
fi
if ! command -v qt6ct >/dev/null 2>&1; then
notify-send \
'Missing dependency' \
@ -84,7 +106,7 @@ check_config() {
if [[ ! -f "$user_config_file" ]]; then
echo -e "${bold}------------------------------------------------------------${all_off}"
echo -e "${bold} No config file found so creating a fresh one in:${all_off}"
echo -e "${bold}${blue} $XDG_CONFIG_HOME/$pkgname.conf${all_off}"
echo -e "${bold}${blue} $XDG_CONFIG_HOME/$pkgname/$pkgname.conf${all_off}"
echo
echo -e "${bold} Edit this file before invoking $pkgname again.${all_off}"
echo -e "${bold}------------------------------------------------------------${all_off}"
@ -128,39 +150,37 @@ check_config() {
fi
}
_reset_settings() {
## GTK3
gtk3_settings_file="$XDG_CONFIG_HOME/gtk-3.0/settings.ini"
gtk4_settings_file="$XDG_CONFIG_HOME/gtk-4.0/settings.ini"
qt6ct_settings_file="$XDG_CONFIG_HOME/qt6ct/qt6ct.conf"
gsettings reset org.gnome.desktop.interface color-scheme
gsettings reset org.gnome.desktop.interface gtk-theme
gsettings reset org.gnome.desktop.interface icon-theme
if [[ ! -w "$gtk3_settings_file" ]]; then
touch "$gtk3_settings_file"
fi
if [[ ! -w "$gtk4_settings_file" ]]; then
touch "$gtk4_settings_file"
fi
if [[ ! -w "$qt6ct_settings_file" ]]; then
touch "$qt6ct_settings_file"
fi
}
_set_theme() {
## gtk-theme
## GTK
gsettings set org.gnome.desktop.interface color-scheme "$gtk_color_scheme"
gsettings set org.gnome.desktop.interface gtk-theme "$gtk_theme"
gsettings set org.gnome.desktop.interface icon-theme "$icon_theme"
## GTK2
if [[ -w "$HOME/.gtkrc-2.0" ]]; then
sed -i "s/gtk-theme-name=.*/gtk-theme-name=$gtk_theme/g" \
"$HOME/.gtkrc-2.0"
sed -i "s/gtk-icon-theme-name=.*/gtk-icon-theme-name=$icon_theme/g" \
"$HOME/.gtkrc-2.0"
fi
## GTK3
if [[ -w "$HOME/.config/gtk-3.0/settings.ini" ]]; then
sed -i "s/gtk-application-prefer-dark-theme=.*/gtk-application-prefer-dark-theme=$gtk_prefer_dark_theme/g" \
"$HOME/.config/gtk-3.0/settings.ini"
sed -i "s/gtk-theme-name=.*/gtk-theme-name=$gtk_theme/g" \
"$HOME/.config/gtk-3.0/settings.ini"
sed -i "s/gtk-icon-theme-name=.*/gtk-icon-theme-name=$icon_theme/g" \
"$HOME/.config/gtk-3.0/settings.ini"
fi
## GTK4
if [[ -w "$HOME/.config/gtk-4.0/settings.ini" ]]; then
sed -i "s/gtk-application-prefer-dark-theme=.*/gtk-application-prefer-dark-theme=$gtk_prefer_dark_theme/g" \
"$HOME/.config/gtk-4.0/settings.ini"
sed -i "s/gtk-icon-theme-name=.*/gtk-icon-theme-name=$icon_theme/g" \
"$HOME/.config/gtk-4.0/settings.ini"
sed -i "s/gtk-theme-name=.*/gtk-theme-name=$gtk_theme/g" \
"$HOME/.config/gtk-4.0/settings.ini"
fi
## QT
if [[ -x /usr/lib/plasma-changeicons ]]; then
/usr/lib/plasma-changeicons "$icon_theme" >/dev/null 2>&1
fi
if [[ -w "$HOME/.config/qt5ct/qt5ct.conf" ]]; then
sed -i "s/icon_theme=.*/icon_theme=$icon_theme/g" \
"$HOME/.config/qt5ct/qt5ct.conf"
@ -175,10 +195,6 @@ _set_theme() {
sed -i "s,color_scheme_path=.*,color_scheme_path=$qt_color_scheme_path,g" \
"$HOME/.config/qt6ct/qt6ct.conf"
fi
## workaround if plasma-workspace is installed
if [ -x "$(command -v /usr/lib/plasma-changeicon)" ]; then
/usr/lib/plasma-changeicons "$icon_theme"
fi
}
switch-dark-light() {
@ -186,19 +202,19 @@ switch-dark-light() {
if [[ ! $gtk_color_scheme == ''\''prefer-dark'\''' ]]; then
gtk_color_scheme=prefer-dark
gtk_prefer_dark_theme=true
gtk_theme=adw-gtk3-dark
icon_theme=Papirus-Dark
gtk_prefer_dark_theme=1
gtk_theme=$gtk_theme_dark
icon_theme=$icon_theme_dark
qt_custom_palette=true
qt_color_scheme_path=/usr/share/color-schemes/BreezeDark.colors
qt_color_scheme_path=$kcolorscheme_dark
_set_theme
else
gtk_color_scheme=default
gtk_prefer_dark_theme=false
gtk_theme=adw-gtk3
icon_theme=Papirus
gtk_color_scheme=prefer-light
gtk_prefer_dark_theme=0
gtk_theme=$gtk_theme_light
icon_theme=$icon_theme_light
qt_custom_palette=true
qt_color_scheme_path=/usr/share/color-schemes/BreezeLight.colors
qt_color_scheme_path=$kcolorscheme_light
_set_theme
fi
}
@ -209,20 +225,20 @@ restore-theme-on-login() {
gtk_color_scheme=$(gsettings get org.gnome.desktop.interface color-scheme)
if [[ ! $gtk_color_scheme == ''\''prefer-dark'\''' ]]; then
gtk_color_scheme=default
gtk_prefer_dark_theme=false
gtk_theme=adw-gtk3
icon_theme=Papirus
gtk_color_scheme=prefer-light
gtk_prefer_dark_theme=0
gtk_theme=$gtk_theme_light
icon_theme=$icon_theme_light
qt_custom_palette=true
qt_color_scheme_path=/usr/share/color-schemes/BreezeLight.colors
qt_color_scheme_path=$kcolorscheme_light
_set_theme
else
gtk_color_scheme=prefer-dark
gtk_prefer_dark_theme=true
gtk_theme=adw-gtk3-dark
icon_theme=Papirus-Dark
gtk_prefer_dark_theme=1
gtk_theme=$gtk_theme_dark
icon_theme=$icon_theme_dark
qt_custom_palette=true
qt_color_scheme_path=/usr/share/color-schemes/BreezeDark.colors
qt_color_scheme_path=$kcolorscheme_dark
_set_theme
fi
}
@ -269,6 +285,9 @@ case "$1" in
r)
check_config && restore-theme-on-login
;;
c)
check_config && _reset_settings && preview
;;
p)
check_config && preview
;;
@ -279,6 +298,7 @@ case "$1" in
echo
echo -e "${bold} s) swith between dark and light theme${all_off}"
echo -e "${bold} r) restore theme (usefull only once after login)${all_off}"
echo -e "${bold} c) create sane default GTK/qt6ct settings files${all_off}"
echo -e "${bold} p) Preview settings${all_off}"
;;
esac

View file

@ -5,13 +5,13 @@ kcolorscheme_light="/usr/share/color-schemes/BreezeLight.colors"
kcolorscheme_dark="/usr/share/color-schemes/BreezeDark.colors"
# Name of the light icon theme
icon_theme_light=Papirus
icon_theme_light=breeze
# Name of the dark icon theme
icon_theme_dark=Papirus-Dark
icon_theme_dark=breeze-dark
# Name of the light gtk theme
gtk_theme_light=adw-gtk3
gtk_theme_light=Breeze
# Name of the dark gtk theme
gtk_theme_dark=adw-gtk3-dark
gtk_theme_dark=Breeze-Dark

View file

@ -1,11 +1,11 @@
.\" Text automatically generated by txt2man
.TH night-theme-switcher 1 "05 December 2025" "" ""
.TH night-theme-switcher 1 "08 December 2025" "" ""
.SH NAME
\fBnight-theme-switcher \fP- Wrapper script to switch between dark and light themes.
.SH SYNOPSIS
.nf
.fam C
\fBnts\fP [\fIrsp\fP]
\fBnts\fP [\fIcprs\fP]
.fam T
.fi
.fam T
@ -16,6 +16,10 @@ while using a barebone WM like hyprland or sway.
.SH OPTIONS
.TP
.B
c
create sane default GTK/qt6ct settings files
.TP
.B
p
Preview settings.
.TP