Compare commits

..

13 Commits

Author SHA1 Message Date
eSh
be2b24d26d use only filenames for post scripts 2022-09-18 15:12:36 +02:00
eSh
3b6e886667 move services and timers on user level 2022-09-18 15:12:36 +02:00
eSh
4ff7f7a0b3 start the timers right away 2022-09-18 15:12:36 +02:00
eSh
184bdec3c4 add more accuracy for timers 2022-09-18 15:12:36 +02:00
eSh
5e22263904 use xargs to enable systemd timers 2022-09-18 15:12:36 +02:00
eSh
9a62cf6bf1 add systemd timers for periodic fixes 2022-09-18 15:12:36 +02:00
496dcd36f7 Update 'PKGBUILD' 2022-09-17 16:39:44 +02:00
291b1b56da Merge pull request 'sync font for the title of xfce windows' () from rokosun/fixes-package:rokosun-patch-1 into main
Reviewed-on: 
2022-09-17 16:38:56 +02:00
b9163d1c3a sync font for the title of xfce windows
font for the title of xfce windows now sync with the rest of the system
2022-09-17 14:41:12 +02:00
65367cdb69 added dependencies
xfce4-appfinder
xdotool
rsync
2022-09-17 12:51:55 +02:00
43b6d31c19 Update 'PKGBUILD' 2022-09-16 17:57:38 +02:00
084cb192ce Update 'alpm-hooks/chaotic-keyring-refresh.hook' 2022-09-16 17:57:08 +02:00
301bd1d572 Update 'bin/standalone/fix-chaotic-keyring' 2022-09-16 17:56:38 +02:00
4 changed files with 11 additions and 5 deletions

@ -1,12 +1,14 @@
# Maintainer: TROM <contact@tromsite.com>
pkgname=tromjaro-fixes
pkgver=1.0.0
pkgver=1.1.1
pkgrel=1
pkgdesc="Various fixes for TROMjaro OS"
arch=(any)
url=""
license=(unknown)
depends=()
depends=('xfce4-appfinder'
'xdotool'
'rsync')
provides=('tromjaro-fixes')
backup=()
options=(!strip)

@ -8,4 +8,4 @@ Target = *
[Action]
Description = Refreshing the chaotic-aur keyring...
When = PreTransaction
Exec = /usr/bin/chaotic-keyring-refresh
Exec = /usr/bin/fix-chaotic-keyring

@ -23,12 +23,17 @@ sync_icon_theme() {
theme_new=$(xfconf-query -c xsettings -p /Net/ThemeName)
# Get the current icon theme
icon_theme_new=$(xfconf-query -c xsettings -p /Net/IconThemeName)
# Get the current font name
font_new=$(xfconf-query -c xsettings -p /Gtk/FontName)
# Run sync_theme if the new system theme doesn't match the previous one
[ "$theme_new" != "$theme_prev" ] && sync_theme
# Run sync_icon_theme if the new icon theme doesn't match the previous one
[ "$icon_theme_new" != "$icon_theme_prev" ] && sync_icon_theme
# If the new font doesn't match the previous one, apply the new font for the title of xfce windows
[ "$font_new" != "$font_prev" ] && xfconf-query -c xfwm4 -p /general/title_font -n -t string -s "$font_new"
# The new values become the previous values
theme_prev=$theme_new
icon_theme_prev=$icon_theme_new
font_prev=$font_new

@ -1,3 +1,2 @@
#!/bin/bash
sudo pacman-key --populate chaotic &
rm ~/.local/bin/fix-chaotic-keyring
pacman-key --populate chaotic