2022-09-18 20:05:57 +00:00
|
|
|
#!/bin/bash
|
2023-08-03 14:40:26 +00:00
|
|
|
|
2023-08-06 00:14:02 +00:00
|
|
|
# Exit out if the same script is already running in the background
|
|
|
|
pidof -sq -o %PPID -x "$(basename "$0")" && exit
|
|
|
|
|
|
|
|
# Set the directory paths
|
2023-08-06 13:08:58 +00:00
|
|
|
flatpak_themes_dir="$HOME/.themes"
|
|
|
|
flatpak_icons_dir="$HOME/.icons"
|
2023-08-06 00:14:02 +00:00
|
|
|
|
2023-08-06 13:08:58 +00:00
|
|
|
# Create flatpak icons & themes directories if they don't exist
|
|
|
|
mkdir -p "$flatpak_themes_dir" "$flatpak_icons_dir" ||
|
|
|
|
{ echo "failed to make directories $flatpak_themes_dir & $flatpak_icons_dir"; exit 1; }
|
2023-08-06 00:14:02 +00:00
|
|
|
|
2023-08-08 15:06:38 +00:00
|
|
|
# Enable option for syncing the current theme with XFWM theme if not already enabled
|
|
|
|
[ "$(xfconf-query -c xsettings -p /Xfce/SyncThemes)" != 'true' ] && xfconf-query -c xsettings -p /Xfce/SyncThemes -n -t bool -s true
|
|
|
|
|
2023-08-08 13:58:10 +00:00
|
|
|
xdg_directory_lookup() {
|
|
|
|
# Go through each item in $XDG_DATA_DIRS and find the subdirectory $1
|
|
|
|
while read -r dir; do
|
|
|
|
subdir="${dir%/}/$1"
|
|
|
|
if [ -d "$subdir" ]; then
|
|
|
|
echo "$subdir"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done < <(printf '%s:%s\n' "$HOME/.local/share" "$XDG_DATA_DIRS" | tr ':' '\n')
|
|
|
|
}
|
|
|
|
|
|
|
|
hdpi_theme_fix() {
|
|
|
|
# Get the current window scaling factor (highDPI setting)
|
|
|
|
current_scaling=$(xfconf-query -c xsettings -p /Gdk/WindowScalingFactor)
|
|
|
|
# Get the current XFWM theme
|
|
|
|
current_xfwm_theme=$(xfconf-query -c xfwm4 -p /general/theme)
|
|
|
|
# Get the current mouse cursor size
|
|
|
|
cursor_size=$(xfconf-query -c xsettings -p /Gtk/CursorThemeSize)
|
|
|
|
|
|
|
|
if [ "$current_scaling" -eq '2' ]; then
|
|
|
|
# Increase mouse cursor size if it's less than 45
|
|
|
|
if [ "$cursor_size" -lt 45 ]; then
|
|
|
|
xfconf-query -c xsettings -p /Gtk/CursorThemeSize -s '45'
|
|
|
|
notify-send 'Mouse cursor size increased to 45' "Changed to a larger mouse cursor because you've enabled highDPI on your system"
|
|
|
|
fi
|
|
|
|
for variant in xhdpi hdpi; do
|
|
|
|
# If this variant of the theme is already enabled then break out of the loop
|
|
|
|
[ "${current_xfwm_theme##*-}" = "$variant" ] && break
|
|
|
|
# Store the name for this variant of the theme in highDPI_theme variable
|
|
|
|
highDPI_theme=$current_xfwm_theme-$variant
|
|
|
|
# Find the directory where highDPI_theme is stored
|
|
|
|
highDPI_theme_dir=$(xdg_directory_lookup "themes/$highDPI_theme")
|
|
|
|
# If this directory exists then change to that theme for XFWM
|
|
|
|
if [ -d "$highDPI_theme_dir" ]; then
|
|
|
|
xfconf-query -c xfwm4 -p /general/theme -n -t string -s "$highDPI_theme"
|
|
|
|
notify-send "XFWM theme changed to $highDPI_theme" "Changed to the highDPI variant of your chosen theme because you've enabled highDPI on your system"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
# Decrease mouse cursor size if it's greater than or equal to 45
|
|
|
|
if [ "$cursor_size" -ge 45 ]; then
|
|
|
|
xfconf-query -c xsettings -p /Gtk/CursorThemeSize -s '25'
|
|
|
|
notify-send 'Mouse cursor size decreased to 25' "Changed to a smaller mouse cursor because you've disabled highDPI on your system"
|
|
|
|
fi
|
|
|
|
for variant in xhdpi hdpi; do
|
|
|
|
# Continue looping if this (highDPI) variant of the theme is not enabled
|
|
|
|
[ "${current_xfwm_theme##*-}" != "$variant" ] && continue
|
|
|
|
# Store the name for the normal variant of this theme in normal_theme variable
|
|
|
|
normal_theme=${current_xfwm_theme%-"$variant"}
|
|
|
|
# Find the directory where normal_theme is stored
|
|
|
|
normal_theme_dir=$(xdg_directory_lookup "themes/$normal_theme")
|
|
|
|
# If this directory exists then change to that theme for XFWM
|
|
|
|
if [ -d "$normal_theme_dir" ]; then
|
|
|
|
xfconf-query -c xfwm4 -p /general/theme -n -t string -s "$normal_theme"
|
|
|
|
notify-send "XFWM theme changed to $normal_theme" "Changed to the normal variant of your chosen theme because you've disabled highDPI on your system"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-09-22 14:51:45 +00:00
|
|
|
sync_theme() {
|
2023-08-06 13:08:58 +00:00
|
|
|
# Get the current system theme
|
|
|
|
current_theme=$(xfconf-query -c xsettings -p /Net/ThemeName)
|
2023-08-06 00:14:02 +00:00
|
|
|
|
2023-08-06 13:08:58 +00:00
|
|
|
# Apply the current theme with gsettings
|
|
|
|
gsettings set org.gnome.desktop.interface gtk-theme "$current_theme"
|
2023-08-08 15:06:38 +00:00
|
|
|
|
2023-08-06 13:08:58 +00:00
|
|
|
# Apply the current theme for GTK and Libadwaita apps on flatpak
|
|
|
|
flatpak override --user --env=GTK_THEME="$current_theme"
|
2023-08-06 00:14:02 +00:00
|
|
|
|
2023-08-08 15:06:38 +00:00
|
|
|
# Apply the current theme for XFWM
|
|
|
|
xfconf-query -c xfwm4 -p /general/theme -n -t string -s "$current_theme"
|
|
|
|
|
2023-08-08 13:58:10 +00:00
|
|
|
# Change XFWM theme and mouse cursor size according to the user's highDPI setting
|
|
|
|
hdpi_theme_fix
|
|
|
|
|
2023-08-06 13:08:58 +00:00
|
|
|
# Cleanup flatpak_themes_dir
|
|
|
|
rm -rf "${flatpak_themes_dir:?}"/*
|
2023-08-06 00:14:02 +00:00
|
|
|
|
2023-08-08 13:58:10 +00:00
|
|
|
# Find the directory where the current theme is stored
|
|
|
|
current_theme_dir=$(xdg_directory_lookup "themes/$current_theme")
|
|
|
|
# Copy/sync current_theme_dir to flatpak_themes_dir
|
|
|
|
[ -d "$current_theme_dir" ] &&
|
|
|
|
rsync -av --delete --progress "$current_theme_dir" "$flatpak_themes_dir"
|
2023-08-06 00:14:02 +00:00
|
|
|
}
|
|
|
|
|
2022-09-22 14:51:45 +00:00
|
|
|
sync_font() {
|
2023-08-06 13:08:58 +00:00
|
|
|
# Get the current system font
|
|
|
|
font=$(xfconf-query -c xsettings -p /Gtk/FontName)
|
|
|
|
# Apply the same font for the title of xfce windows
|
|
|
|
xfconf-query -c xfwm4 -p /general/title_font -n -t string -s "$font"
|
2022-09-22 14:51:45 +00:00
|
|
|
}
|
2022-09-15 23:14:20 +00:00
|
|
|
|
2023-08-06 13:08:58 +00:00
|
|
|
# Initial synchronization
|
2022-09-22 14:51:45 +00:00
|
|
|
sync_theme
|
|
|
|
sync_font
|
|
|
|
|
2023-08-06 13:08:58 +00:00
|
|
|
# Monitor when the user changes their system theme or icons or font in XFCE and sync them as needed
|
2022-09-22 14:51:45 +00:00
|
|
|
while read -r line; do
|
2023-08-06 13:08:58 +00:00
|
|
|
case "$line" in
|
|
|
|
'set: /Net/ThemeName') sync_theme ;;
|
2023-08-08 13:58:10 +00:00
|
|
|
'set: /Gdk/WindowScalingFactor') hdpi_theme_fix ;;
|
2023-08-06 13:08:58 +00:00
|
|
|
'set: /Gtk/FontName') sync_font ;;
|
|
|
|
esac
|
2022-09-21 17:56:17 +00:00
|
|
|
done < <(xfconf-query -c xsettings -m)
|