Compare commits

..

20 Commits

Author SHA1 Message Date
864d69b582 Merge pull request 'testing' (#13) from testing into main
Reviewed-on: #13
2022-09-29 19:03:13 +02:00
3cf00d0cd2 small typo 2022-09-29 18:19:19 +02:00
9fa5ce277e Add 'alpm-hooks/reinstall-for-qt6.hook' 2022-09-29 17:52:23 +02:00
1a9ed580a0 Update 'alpm-hooks/reinstall-for-qt5.hook' 2022-09-29 17:52:01 +02:00
c07cb59ff0 Add 'bin/standalone/reinstall-for-qt6' 2022-09-29 17:51:19 +02:00
4c96bb9406 Update 'bin/standalone/reinstall-for-qt5' 2022-09-29 17:50:55 +02:00
700235c52e Using the AUR to build these packages
They need to be built against the system's qt5-base and qt6-base versions, else all qt apps will fail to work
2022-09-29 17:33:48 +02:00
9f9713a673 Update 'PKGBUILD' 2022-09-29 00:03:38 +02:00
11f5d9da18 removed timeshift autosnap config 2022-09-28 22:25:01 +02:00
58b415ae8d Delete 'timeshift-autosnap.conf' 2022-09-28 22:24:35 +02:00
275b811f0f added timeshift-autosnap.conf file 2022-09-28 18:02:05 +02:00
2268c4c2bd Add 'timeshift-autosnap.conf' 2022-09-28 17:57:22 +02:00
ca054b9b6e added export QT_AUTO_SCREEN_SCALE_FACTOR=1 2022-09-28 17:55:45 +02:00
a729acbbef added "xset b off" to remove the beep sound 2022-09-28 17:47:28 +02:00
d909158646 No need to edit qt configuration files anymore 2022-09-28 16:28:05 +02:00
61afd40bfa Update 'PKGBUILD' 2022-09-28 15:57:47 +02:00
66feb5daf6 added tromjaro-fixes.sh 2022-09-28 15:56:31 +02:00
af82c8bd40 Update 'tromjaro-fixes.sh' 2022-09-28 15:46:39 +02:00
2f029b03a7 create tromjaro-fixes.sh 2022-09-28 15:43:44 +02:00
22bcfe821b Update 'PKGBUILD' 2022-09-28 15:42:16 +02:00
7 changed files with 45 additions and 41 deletions

View File

@ -1,6 +1,6 @@
# Maintainer: TROM <contact@tromsite.com>
pkgname=tromjaro-fixes
pkgver=1.3.0
pkgver=1.3.1
pkgrel=1
pkgdesc="Various fixes for TROMjaro OS"
arch=(any)
@ -11,15 +11,15 @@ depends=('xfce4-appfinder'
'rsync'
'inotify-tools'
'qt5-styleplugins'
'qt5ct'
'qt6ct'
'qt6gtk2'
'qqc2-desktop-style')
provides=('tromjaro-fixes')
backup=()
options=(!strip)
source=('scalable.zip::https://www.drive.tromsite.com/s/y8Gm7q6wLrXmtEN/download')
sha256sums=('SKIP')
source=('scalable.zip::https://www.drive.tromsite.com/s/y8Gm7q6wLrXmtEN/download'
'tromjaro-fixes.sh')
sha256sums=('SKIP'
'SKIP')
install='fixes-package.install'
prepare() {
cp -R ../bin ../flatpak-overrides ../alpm-hooks ../systemd .
@ -43,11 +43,16 @@ package() {
install -d ${pkgdir}/usr/lib/systemd/user
install -Dm644 ${srcdir}/systemd/services/* ${pkgdir}/usr/lib/systemd/user
# copy zafiro icons dark
# copy zafiro dark icons
install -d ${pkgdir}/usr/local/share/icons/zafiro-dark/apps/scalable
install -Dm755 ${srcdir}/scalable/* ${pkgdir}/usr/local/share/icons/zafiro-dark/apps/scalable
# copy zafiro icons
install -d ${pkgdir}/usr/local/share/icons/zafiro/apps/scalable
install -Dm755 ${srcdir}/scalable/* ${pkgdir}/usr/local/share/icons/zafiro/apps/scalable
# copy tromjaro-fixes.sh
install -d ${pkgdir}/etc/profile.d/
install -Dm644 ${srcdir}/tromjaro-fixes.sh ${pkgdir}/etc/profile.d/
}

View File

@ -2,10 +2,9 @@
Operation = Upgrade
Type = Package
Target = qt5-base
Target = qt6-base
[Action]
Description = Reinstalling needed packages for theming QT applications...
When = PostTransaction
Exec = /usr/bin/reinstall-for-qt
Exec = /usr/bin/reinstall-for-qt5

View File

@ -0,0 +1,10 @@
[Trigger]
Operation = Upgrade
Type = Package
Target = qt6-base
[Action]
Description = Reinstalling needed packages for theming QT applications...
When = PostTransaction
Exec = /usr/bin/reinstall-for-qt6

View File

@ -12,36 +12,6 @@ sync_theme() {
gsettings set org.gnome.desktop.interface gtk-theme "$theme"
}
setvalue() {
grep -qz "^\[Appearance\][^\[]*$1=$2" "$file" && return
if grep -qz "^\[Appearance\][^\[]*$1=" "$file"; then
sed -i "/\[Appearance\]/,/^\s*$1=/{s/^\s*$1=.*$/$1=$2/}" "$file"
else
sed -i "/\[Appearance\]/a $1=$2" "$file"
fi
}
sync_icon_theme() {
# Get the current icon theme
icon_theme=$(xfconf-query -c xsettings -p /Net/IconThemeName)
# Apply the same theme in qt5ct and qt6ct configuration
for file in "$HOME"/.config/qt5ct/qt5ct.conf "$HOME"/.config/qt6ct/qt6ct.conf; do
# Create the config directory
dir=$(dirname "$file")
mkdir -p "$dir" || { echo "failed to make directory $dir"; continue; }
# Create the config file appropriately
if grep -q '^\[Appearance\]' "$file"; then
setvalue 'icon_theme' "$icon_theme"
setvalue 'style' 'gtk2'
elif grep -q '\S' "$file"; then
tail -n1 "$file" | grep -qx '\s*' && begin='' || begin='\n'
printf '%b[Appearance]\nicon_theme=%s\nstyle=gtk2\n' "$begin" "$icon_theme" >> "$file"
else
printf '[Appearance]\nicon_theme=%s\nstyle=gtk2\n' "$icon_theme" > "$file"
fi
done
}
sync_font() {
# Get the current system font
font=$(xfconf-query -c xsettings -p /Gtk/FontName)
@ -50,13 +20,11 @@ sync_font() {
}
sync_theme
sync_icon_theme
sync_font
while read -r line; do
case "$line" in
'set: /Net/ThemeName') sync_theme ;;
'set: /Net/IconThemeName') sync_icon_theme ;;
'set: /Gtk/FontName') sync_font ;;
esac
done < <(xfconf-query -c xsettings -m)

View File

@ -2,4 +2,4 @@
parent_process=$(ps -p $PPID -o comm=)
[ "$parent_process" = 'pacman' ] || [ "$parent_process" = 'pamac-daemon' ] || exit
rm /var/lib/pacman/db.lck
pacman --noconfirm -S qt5-styleplugins qt6gtk2
pamac build --no-confirm qt5-styleplugins

View File

@ -0,0 +1,5 @@
#!/bin/bash
parent_process=$(ps -p $PPID -o comm=)
[ "$parent_process" = 'pacman' ] || [ "$parent_process" = 'pamac-daemon' ] || exit
rm /var/lib/pacman/db.lck
pamac build --no-confirm qt6gtk2

17
tromjaro-fixes.sh Normal file
View File

@ -0,0 +1,17 @@
# Sync the QT with GTK
export QT_QPA_PLATFORMTHEME="gtk2"
export QT_QUICK_CONTROLS_STYLE="gtk2"
export QT_AUTO_SCREEN_SCALE_FACTOR=1
# Show color output in less
export LESS=-R
export LESS_TERMCAP_mb=$'\e[1;31m'
export LESS_TERMCAP_md=$'\e[1;36m'
export LESS_TERMCAP_me=$'\e[0m'
export LESS_TERMCAP_so=$'\e[01;44;33m'
export LESS_TERMCAP_se=$'\e[0m'
export LESS_TERMCAP_us=$'\e[1;32m'
export LESS_TERMCAP_ue=$'\e[0m'
# Disable the beep sound
xset b off