Compare commits
30 Commits
tio-patch-
...
43221f6357
Author | SHA1 | Date | |
---|---|---|---|
43221f6357 | |||
03e57e6eaf | |||
ab29eb9af5 | |||
357e464269 | |||
d4c07e8919 | |||
8b63ce497f | |||
08a72d4659 | |||
05f4dae9e3 | |||
7d12c48835 | |||
db8328bd8b | |||
358094c4bf | |||
cfa7771ec0 | |||
ac76a669a9 | |||
c6037978e6 | |||
7b07f05111 | |||
b800bf0bcc | |||
d389039f0d | |||
82cd64a07d | |||
56e049367d | |||
b7c64c8305 | |||
0cdccf7d72 | |||
3e259fb09e | |||
66c21a8192 | |||
0fffd21076 | |||
dabc52d7c2 | |||
72dc4f5c0d | |||
c2fc6dd83b | |||
d3cddde72f | |||
d63a3ccf33 | |||
4811e675d8 |
6
PKGBUILD
6
PKGBUILD
@ -1,7 +1,7 @@
|
|||||||
# Maintainer: TROM <contact@tromsite.com>
|
# Maintainer: TROM <contact@tromsite.com>
|
||||||
pkgname=tromjaro-fixes
|
pkgname=tromjaro-fixes
|
||||||
pkgver=1.6
|
pkgver=1.8
|
||||||
pkgrel=1
|
pkgrel=6
|
||||||
pkgdesc="Various fixes for TROMjaro OS"
|
pkgdesc="Various fixes for TROMjaro OS"
|
||||||
arch=(any)
|
arch=(any)
|
||||||
url=""
|
url=""
|
||||||
@ -11,7 +11,7 @@ depends=('xfce4-appfinder'
|
|||||||
'rsync'
|
'rsync'
|
||||||
'inotify-tools'
|
'inotify-tools'
|
||||||
'qt5-styleplugins'
|
'qt5-styleplugins'
|
||||||
'qt6gtk2'
|
'qt6gtk2-git'
|
||||||
'qqc2-desktop-style')
|
'qqc2-desktop-style')
|
||||||
provides=('tromjaro-fixes')
|
provides=('tromjaro-fixes')
|
||||||
backup=()
|
backup=()
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Set the directory paths
|
|
||||||
shared_themes_dir=/usr/share/themes/
|
|
||||||
home_local_themes_dir="$HOME/.local/share/themes/"
|
|
||||||
source_theme_dirs=("$shared_themes_dir" "$home_local_themes_dir")
|
|
||||||
target_themes_dir="$HOME/.themes"
|
|
||||||
|
|
||||||
shared_icons_dir=/usr/share/icons/
|
|
||||||
home_local_icons_dir="$HOME/.local/share/icons/"
|
|
||||||
source_icon_dirs=("$shared_icons_dir" "$home_local_icons_dir")
|
|
||||||
target_icons_dir="$HOME/.icons"
|
|
||||||
|
|
||||||
# Function to synchronize themes and icons from source to target directory
|
|
||||||
sync_themes_and_icons() {
|
|
||||||
rsync -av --delete --progress "${source_theme_dirs[@]}" "$target_themes_dir"
|
|
||||||
rsync -av --delete --progress "${source_icon_dirs[@]}" "$target_icons_dir"
|
|
||||||
echo "Directories $target_themes_dir and $target_icons_dir are synchronized with source directories"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Create the target and local directories if they don't exist
|
|
||||||
mkdir -p "$target_themes_dir" "$home_local_themes_dir" "$target_icons_dir" "$home_local_icons_dir" ||
|
|
||||||
{ echo "failed to make directories $target_themes_dir & $home_local_themes_dir & $target_icons_dir & $home_local_icons_dir"; exit 1; }
|
|
||||||
|
|
||||||
echo "Set watch for theme directories: ${source_theme_dirs[@]}, and icon directories: ${source_icon_dirs[@]}"
|
|
||||||
|
|
||||||
# Start watching for file changes in the source theme and icon directories
|
|
||||||
inotifywait -qmr -e 'modify,attrib,move,move_self,create,delete,delete_self,unmount' "${source_theme_dirs[@]}" "${source_icon_dirs[@]}" |
|
|
||||||
while read -r events; do
|
|
||||||
sync_themes_and_icons
|
|
||||||
done
|
|
@ -1,22 +1,142 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Exit out if the same script is already running in the background
|
||||||
|
pidof -sq -o %PPID -x "$(basename "$0")" && exit
|
||||||
|
|
||||||
|
# Set the directory/file paths
|
||||||
|
flatpak_themes_dir="$HOME/.themes"
|
||||||
|
flatpak_icons_dir="$HOME/.icons"
|
||||||
|
profile="$HOME/.profile"
|
||||||
|
|
||||||
|
# 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; }
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
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')
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function for setting variables in ~/.profile
|
||||||
|
profile_set_variable() {
|
||||||
|
# Return if the variable is already set to the correct value
|
||||||
|
grep -xq "\s*export\s\+$1=$2\s*" "$profile" && return
|
||||||
|
# If the variable is set to a different value then remove that line
|
||||||
|
grep -q "^\s*export\s\+$1=" "$profile" && sed -i "/^\s*export\s\+$1=/d" "$profile"
|
||||||
|
|
||||||
|
# Set the variable to the correct value under a comment mentioning this script
|
||||||
|
if grep -xq '\s*#\s*Values set by the fix-theming script\s*' "$profile"; then
|
||||||
|
sed -i "/^\s*#\s*Values set by the fix-theming script\s*$/a export $1=$2" "$profile"
|
||||||
|
elif grep -q '\s' "$profile"; then
|
||||||
|
tail -n1 "$profile" | grep -qx '\s*' && begin='' || begin='\n'
|
||||||
|
printf '%b# Values set by the fix-theming script\nexport %s=%s\n' "$begin" "$1" "$2" >> "$profile"
|
||||||
|
else
|
||||||
|
printf '# Values set by the fix-theming script\nexport %s=%s\n' "$1" "$2" > "$profile"
|
||||||
|
fi
|
||||||
|
# Set variable logout_required to true
|
||||||
|
logout_required='true'
|
||||||
|
}
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
unset logout_required
|
||||||
|
|
||||||
|
if [ "$current_scaling" -eq '2' ]; then
|
||||||
|
# Increase mouse cursor size if it's equal to 25
|
||||||
|
if [ "$cursor_size" -eq 25 ]; 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
|
||||||
|
# Increase scaling for QT apps
|
||||||
|
for var in QT_SCALE_FACTOR QT_AUTO_SCREEN_SCALE_FACTOR QT_ENABLE_HIGHDPI_SCALING; do
|
||||||
|
profile_set_variable "$var" 2
|
||||||
|
done
|
||||||
|
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"
|
||||||
|
[ "$1" != 'no_hdpi_notification' ] && 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 equal to 45
|
||||||
|
if [ "$cursor_size" -eq 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
|
||||||
|
# Decrease scaling for QT apps
|
||||||
|
unset logout_required
|
||||||
|
for var in QT_SCALE_FACTOR QT_AUTO_SCREEN_SCALE_FACTOR QT_ENABLE_HIGHDPI_SCALING; do
|
||||||
|
profile_set_variable "$var" 1
|
||||||
|
done
|
||||||
|
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
|
||||||
|
# Show popup menu about logout if it's required
|
||||||
|
[ "$logout_required" = 'true' ] &&
|
||||||
|
[ "$1" != 'no_hdpi_notification' ] &&
|
||||||
|
yad --image "dialog-question" --title "Alert" --buttons-layout=center --text-align=center --button=yad-yes:0 --button=yad-no:1 --text 'Logout is required in order to apply the DPI preferences to the QT apps.\nWould you like to logout now?' &&
|
||||||
|
xfce4-session-logout --logout
|
||||||
|
}
|
||||||
|
|
||||||
sync_theme() {
|
sync_theme() {
|
||||||
# Get the current system theme
|
# Get the current system theme
|
||||||
theme=$(xfconf-query -c xsettings -p /Net/ThemeName)
|
current_theme=$(xfconf-query -c xsettings -p /Net/ThemeName)
|
||||||
# Enable syncing the current theme with xfwm4 if not already enabled
|
|
||||||
[ "$(xfconf-query -c xsettings -p /Xfce/SyncThemes)" != 'true' ] && xfconf-query -c xsettings -p /Xfce/SyncThemes -n -t bool -s true
|
|
||||||
# Apply the current theme with gsettings
|
# Apply the current theme with gsettings
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "$theme"
|
gsettings set org.gnome.desktop.interface gtk-theme "$current_theme"
|
||||||
|
|
||||||
# Apply the current theme for GTK apps in flatpak
|
# Apply the current theme for GTK and Libadwaita apps on flatpak
|
||||||
|
flatpak override --user --env=GTK_THEME="$current_theme"
|
||||||
# Define the path to the flatpak override directory
|
|
||||||
flatpak_override_dir="$HOME/.local/share/flatpak/overrides"
|
# Apply the current theme for XFWM
|
||||||
# Create the directory if it doesn't exist
|
xfconf-query -c xfwm4 -p /general/theme -n -t string -s "$current_theme"
|
||||||
[ -d "$flatpak_override_dir" ] || mkdir -p "$flatpak_override_dir" || { echo 'failed creating directory!'; return 1; }
|
|
||||||
# Write the theme configuration to the global override file
|
# Change XFWM theme and mouse cursor size according to the user's highDPI setting
|
||||||
echo "[Environment]
|
hdpi_theme_fix 'no_hdpi_notification'
|
||||||
GTK_THEME=$theme" > "$flatpak_override_dir/global"
|
|
||||||
|
# Cleanup flatpak_themes_dir
|
||||||
|
rm -rf "${flatpak_themes_dir:?}"/*
|
||||||
|
|
||||||
|
# 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"
|
||||||
}
|
}
|
||||||
|
|
||||||
sync_font() {
|
sync_font() {
|
||||||
@ -26,13 +146,15 @@ sync_font() {
|
|||||||
xfconf-query -c xfwm4 -p /general/title_font -n -t string -s "$font"
|
xfconf-query -c xfwm4 -p /general/title_font -n -t string -s "$font"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Initial synchronization
|
||||||
sync_theme
|
sync_theme
|
||||||
sync_font
|
sync_font
|
||||||
|
|
||||||
# Monitor when the user changes their system theme or font in XFCE and sync them as needed
|
# Monitor when the user changes their system theme or icons or font in XFCE and sync them as needed
|
||||||
while read -r line; do
|
while read -r line; do
|
||||||
case "$line" in
|
case "$line" in
|
||||||
'set: /Net/ThemeName') sync_theme ;;
|
'set: /Net/ThemeName') sync_theme ;;
|
||||||
|
'set: /Gdk/WindowScalingFactor') hdpi_theme_fix ;;
|
||||||
'set: /Gtk/FontName') sync_font ;;
|
'set: /Gtk/FontName') sync_font ;;
|
||||||
esac
|
esac
|
||||||
done < <(xfconf-query -c xsettings -m)
|
done < <(xfconf-query -c xsettings -m)
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
[Context]
|
[Context]
|
||||||
filesystems=~/.config/gtk-4.0;~/.themes;~/.icons;xdg-config/gtk-4.0;xdg-config/Kvantum:ro;
|
filesystems=~/.config/gtk-4.0;~/.themes;~/.icons;xdg-config/gtk-4.0;
|
||||||
|
|
||||||
[Environment]
|
|
||||||
QT_STYLE_OVERRIDE=kvantum
|
|
@ -1,15 +0,0 @@
|
|||||||
# This service unit is for fix-flatpaks-theming script
|
|
||||||
#
|
|
||||||
|
|
||||||
[Unit]
|
|
||||||
Description=Fix flatpak theming script
|
|
||||||
StartLimitIntervalSec=0
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
Restart=always
|
|
||||||
RestartSec=1
|
|
||||||
ExecStart=/usr/bin/fix-flatpaks-theming
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=default.target
|
|
@ -1,6 +1,5 @@
|
|||||||
# Sync the QT with GTK
|
# Sync the QT with GTK
|
||||||
export QT_QPA_PLATFORMTHEME="gtk2"
|
export QT_QPA_PLATFORMTHEME="gtk2"
|
||||||
export QT_QUICK_CONTROLS_STYLE="gtk2"
|
|
||||||
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
||||||
|
|
||||||
# Show color output in less
|
# Show color output in less
|
||||||
|
Reference in New Issue
Block a user