TROMjaro 2022.09.23
This commit is contained in:
tromjaro/xfce
Packages-Desktop.profile
desktop-overlay
etc
pacman.d
skel
.config
.local
share
Theme-Switcher
applications
desktop-directories
xfce-accessories.directoryxfce-development.directoryxfce-education.directoryxfce-games.directoryxfce-graphics.directoryxfce-multimedia.directoryxfce-network.directoryxfce-office.directoryxfce-other.directoryxfce-screensavers.directoryxfce-settings.directoryxfce-system.directory
icons
tromjaro-layoutsusr
bin
app-finderchaotic-keyring-refreshfix-chaotic-keyringfix-flatpaks-themingfix-themingfix-tweaked-desktop-fileslayout-switcherrefresh-xfcereinstall-for-qttheme-switcher
share
applications
icons
hicolor
scalable
libalpm
var
lib
flatpak
overrides
live-overlay
@ -1,3 +0,0 @@
|
||||
#!/bin/bash
|
||||
xdotool search --onlyvisible --class xfce4-appfinder windowkill || setsid -f xfce4-appfinder
|
||||
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
pacman-key --populate chaotic
|
@ -1,3 +1,2 @@
|
||||
#! /bin/bash
|
||||
sudo pacman-key --populate chaotic &
|
||||
rm ~/.local/bin/fix-chaotic-keyring
|
||||
pacman-key --populate chaotic
|
@ -1,7 +0,0 @@
|
||||
#!/bin/sh
|
||||
while :; do
|
||||
rm -r ~/.themes/* 2> /dev/null
|
||||
rsync -av --progress /usr/share/themes/* ~/.themes/ --exclude Windowck
|
||||
rsync -av --progress ~/.local/share/themes/* ~/.themes/ --exclude Windowck-dark
|
||||
sleep 600
|
||||
done
|
@ -1,37 +0,0 @@
|
||||
#!/bin/sh
|
||||
sync_theme() {
|
||||
# Get the current system theme
|
||||
theme=$(xfconf-query -c xsettings -p /Net/ThemeName)
|
||||
# Find the best match for the xfwm4 theme that corresponds with the current system theme
|
||||
xfwm4_theme=$(find /usr/share/themes/ /usr/local/share/themes/ "$HOME"/.themes/ "$HOME"/.local/share/themes/ -mindepth 2 -maxdepth 2 -type d -name xfwm4 -printf '%h\n' 2>/dev/null | grep -o "/${theme}[^/]*$" | sort | head -n1)
|
||||
# If a match is not found then use the Default theme
|
||||
[ -z "$xfwm4_theme" ] && xfwm4_theme='Default'
|
||||
# Apply the xfwm4 theme
|
||||
xfconf-query -c xfwm4 -p /general/theme -n -t string -s "${xfwm4_theme#/}"
|
||||
# Apply the current theme with gsettings
|
||||
gsettings set org.gnome.desktop.interface gtk-theme "$theme"
|
||||
}
|
||||
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
|
||||
sed -i "s/^icon_theme=.*$/icon_theme=$icon_theme/" "$HOME"/.config/qt5ct/qt5ct.conf
|
||||
sed -i "s/^icon_theme=.*$/icon_theme=$icon_theme/" "$HOME"/.config/qt6ct/qt6ct.conf
|
||||
}
|
||||
while :; do
|
||||
# Get the current system 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)
|
||||
|
||||
# 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
|
||||
|
||||
# The new values become the previous values
|
||||
theme_prev=$theme_new
|
||||
icon_theme_prev=$icon_theme_new
|
||||
|
||||
sleep 3
|
||||
done
|
@ -1,89 +0,0 @@
|
||||
#!/bin/bash
|
||||
pidof -sq -o %PPID -x "$(basename "$0")" && exit
|
||||
data="$HOME"/.local/share/applications/tweaked-desktop-files
|
||||
data2="$HOME"/.local/share/applications/bakkedup-desktop-files
|
||||
|
||||
# Directories where desktop files are stored
|
||||
user="$HOME"/.local/share/applications
|
||||
flatpak_local="$HOME"/.local/share/flatpak/exports/share/applications
|
||||
flatpak_global=/var/lib/flatpak/exports/share/applications
|
||||
pacman_local=/usr/local/share/applications
|
||||
pacman_global=/usr/share/applications
|
||||
snap=/var/lib/snapd/desktop/applications
|
||||
|
||||
detectfiles() {
|
||||
for file in "$user"/*.desktop; do
|
||||
name=$(basename "$file") || continue
|
||||
[ -d "$file" ] || grep -xq "\(flatpak-local\|flatpak-global\|pacman-local\|pacman-global\|snap\)/$name" "$data" && continue
|
||||
if [ -f "$flatpak_local/$name" ]; then
|
||||
echo "flatpak-local/$name" >> "$data"
|
||||
elif [ -f "$flatpak_global/$name" ]; then
|
||||
echo "flatpak-global/$name" >> "$data"
|
||||
elif [ -f "$pacman_local/$name" ]; then
|
||||
echo "pacman-local/$name" >> "$data"
|
||||
elif [ -f "$pacman_global/$name" ]; then
|
||||
echo "pacman-global/$name" >> "$data"
|
||||
elif [ -f "$snap/$name" ]; then
|
||||
echo "snap/$name" >> "$data"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
fixfiles() {
|
||||
lastmod=$(stat -c "%Y" "$data")
|
||||
tmp="$(mktemp)"
|
||||
trap 'rm $tmp' EXIT
|
||||
[ -f "$data" ] && cp "$data" "$tmp" && copied='true'
|
||||
lineno=0
|
||||
[ "$copied" = 'true' ] && while IFS= read -r line; do
|
||||
((lineno++))
|
||||
name=${line#*/}
|
||||
file="$user/$name"
|
||||
# shellcheck disable=2015 # To disable shellcheck error here, line below is intended to work this way
|
||||
echo "$line" | grep -xq '\(flatpak-local\|flatpak-global\|pacman-local\|pacman-global\|snap\)/.\+' && [ -f "$file" ] || { sed -i "${lineno}d" "$tmp" && ((lineno--)) ; continue; }
|
||||
[ -f "$flatpak_local/$name" ] ||
|
||||
[ -f "$flatpak_global/$name" ] ||
|
||||
[ -f "$pacman_local/$name" ] ||
|
||||
[ -f "$pacman_global/$name" ] ||
|
||||
[ -f "$snap/$name" ] ||
|
||||
{ mv "$file" "$file.bak" && echo "$line" >> "$data2"; }
|
||||
done < "$data"
|
||||
|
||||
[ "$copied" = 'true' ] && [ "$(stat -c '%Y' "$data")" = "$lastmod" ] && sort "$tmp" | uniq > "$data"
|
||||
|
||||
[ -n "$(sort "$data2" | uniq -d)" ] && cp "$data2" "$tmp" && sort "$tmp" | uniq > "$data2"
|
||||
|
||||
for bakfile in "$user"/*.desktop.bak; do
|
||||
origfile="${bakfile%.bak}"
|
||||
[ -f "$origfile" ] && continue
|
||||
name=$(basename "$origfile") || continue
|
||||
[ -f "$flatpak_local/$name" ] ||
|
||||
[ -f "$flatpak_global/$name" ] ||
|
||||
[ -f "$pacman_local/$name" ] ||
|
||||
[ -f "$pacman_global/$name" ] ||
|
||||
[ -f "$snap/$name" ] &&
|
||||
mv "$bakfile" "$origfile"
|
||||
done
|
||||
}
|
||||
|
||||
while :; do
|
||||
user_new=$(ls -ad "$user"/*.desktop 2>/dev/null)
|
||||
flatpak_local_new=$(ls -ad "$flatpak_local"/*.desktop 2>/dev/null)
|
||||
flatpak_global_new=$(ls -ad "$flatpak_global"/*.desktop 2>/dev/null)
|
||||
pacman_local_new=$(ls -ad "$pacman_local"/*.desktop 2>/dev/null)
|
||||
pacman_global_new=$(ls -ad "$pacman_global"/*.desktop 2>/dev/null)
|
||||
snap_new=$(ls -ad "$snap"/*.desktop 2>/dev/null)
|
||||
[ "$user_new" != "$user_old" ] && detectfiles
|
||||
[ "$flatpak_local_new" != "$flatpak_local_old" ] ||
|
||||
[ "$flatpak_global_new" != "$flatpak_global_old" ] ||
|
||||
[ "$pacman_local_new" != "$pacman_local_old" ] ||
|
||||
[ "$pacman_global_new" != "$pacman_global_old" ] ||
|
||||
[ "$snap_new" != "$snap_old" ] && fixfiles
|
||||
user_old=$user_new
|
||||
flatpak_local_old=$flatpak_local_new
|
||||
flatpak_global_old=$flatpak_global_new
|
||||
pacman_local_old=$pacman_local_new
|
||||
pacman_global_old=$pacman_global_new
|
||||
snap_old=$snap_new
|
||||
sleep 5
|
||||
done
|
@ -1,65 +0,0 @@
|
||||
#! /bin/bash
|
||||
data="$HOME"/.local/share/tromjaro-layouts
|
||||
icons=$data/icons
|
||||
profiles=$data/profiles
|
||||
enable-top-bar-integration() {
|
||||
# Enable global menus
|
||||
pacman -Qq vala-panel-appmenu-registrar-git ||
|
||||
zensu SKIP_AUTOSNAP= pacman -S --noconfirm vala-panel-appmenu-registrar-git ||
|
||||
{ notify-send 'Error' 'failed installing vala-panel-appmenu-registrar-git !\nmake sure you type the correct password\nEnabling the internet connection might solve the issue'; exit; }
|
||||
pacman -Qq vala-panel-appmenu-registrar-git || exit
|
||||
|
||||
# Hide window borders when maximized
|
||||
xfconf-query -c xfwm4 -p /general/borderless_maximize -n -t bool -s true &
|
||||
# Hide top bar of windows when maximized
|
||||
xfconf-query -c xfwm4 -p /general/titleless_maximize -n -t bool -s true &
|
||||
# Put window buttons on left side
|
||||
xfconf-query -c xfwm4 -p /general/button_layout -n -t string -s "CMH|" &
|
||||
}
|
||||
disable-top-bar-integration() {
|
||||
# Disable global menus
|
||||
! pacman -Qq vala-panel-appmenu-registrar-git ||
|
||||
zensu SKIP_AUTOSNAP= pacman -R --noconfirm vala-panel-appmenu-registrar-git ||
|
||||
{ notify-send 'Error' 'failed removing vala-panel-appmenu-registrar-git !\nmake sure you type the correct password'; exit; }
|
||||
pacman -Qq vala-panel-appmenu-registrar-git && exit
|
||||
killall appmenu-registrar &
|
||||
|
||||
# Hide window borders when maximized
|
||||
xfconf-query -c xfwm4 -p /general/borderless_maximize -n -t bool -s true &
|
||||
# Don't hide top bar of windows when maximized
|
||||
xfconf-query -c xfwm4 -p /general/titleless_maximize -n -t bool -s false &
|
||||
# Put window buttons on right side
|
||||
xfconf-query -c xfwm4 -p /general/button_layout -n -t string -s "|HMC" &
|
||||
}
|
||||
choice=$(
|
||||
yad --no-buttons --center --keep-icon-size --separator='' --use-interp --title 'Layout Switcher' --text-align=center --text 'Changing to or from any layout that has global menus, will require your admin password' --form --columns 3 \
|
||||
--field=!"$icons/windows.png"!'Windows-Like':BTN "kill -USR1 \$YAD_PID; echo -n 'Windows-Like'" \
|
||||
--field=!"$icons/macos.png"!'MacOS-Like':BTN "kill -USR1 \$YAD_PID; echo -n 'MacOS-Like'" \
|
||||
--field=!"$icons/mx.png"!'MX-Like':BTN "kill -USR1 \$YAD_PID; echo -n 'MX-Like'" \
|
||||
--field=!"$icons/gnome.png"!'Gnome-Like':BTN "kill -USR1 \$YAD_PID; echo -n 'Gnome-Like'" \
|
||||
--field=!"$icons/unity.png"!'Unity-Like (default)':BTN "kill -USR1 \$YAD_PID; echo -n 'Unity-Like (default)'" \
|
||||
--field=!"$icons/topx.png"!'TopX-Like':BTN "kill -USR1 \$YAD_PID; echo -n 'TopX-Like'"
|
||||
)
|
||||
case "$choice" in
|
||||
'Windows-Like')
|
||||
disable-top-bar-integration
|
||||
xfce4-panel-profiles load "$profiles"/Windows-Like.tar.bz2 & ;;
|
||||
'Unity-Like (default)')
|
||||
enable-top-bar-integration
|
||||
xfce4-panel-profiles load "$profiles"/Unity-Like.tar.bz2 & ;;
|
||||
'MX-Like')
|
||||
disable-top-bar-integration
|
||||
xfce4-panel-profiles load "$profiles"/MX-Like.tar.bz2 & ;;
|
||||
'MacOS-Like')
|
||||
enable-top-bar-integration
|
||||
xfce4-panel-profiles load "$profiles"/MacOS-Like.tar.bz2 & ;;
|
||||
'Gnome-Like')
|
||||
disable-top-bar-integration
|
||||
xfce4-panel-profiles load "$profiles"/Gnome-Like.tar.bz2 & ;;
|
||||
'TopX-Like')
|
||||
disable-top-bar-integration
|
||||
xfce4-panel-profiles load "$profiles"/TopX-Like.tar.bz2 & ;;
|
||||
*) exit ;;
|
||||
esac
|
||||
|
||||
sleep 5 && notify-send "$choice layout was enabled"
|
@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
xfce4-panel -r && xfwm4 --replace && xfce4-panel
|
||||
xfce4-panel -r && xfwm4 --replace
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
#!/bin/bash
|
||||
rm /var/lib/pacman/db.lck
|
||||
pacman --noconfirm -S qt5-styleplugins qt6gtk2
|
@ -1,62 +0,0 @@
|
||||
#!/bin/bash
|
||||
icons="$HOME"/.local/share/Theme-Switcher
|
||||
|
||||
set_icon_theme() {
|
||||
# Change icon theme in XFCE
|
||||
xfconf-query -c xsettings -p /Net/IconThemeName -n -t string -s "$1"
|
||||
# Change icon theme in qt5ct configuration
|
||||
sed -i "s/^icon_theme=.*$/icon_theme=$1/" "$HOME"/.config/qt5ct/qt5ct.conf
|
||||
}
|
||||
|
||||
set_theme() {
|
||||
if [ "${1##*-}" = 'Light' ]; then
|
||||
yad --image "dialog-question" --title '' --buttons-layout=center --text-align=center --button='DARK':1 --button='LIGHT':0 --text "Select the panels theme\n\nNote: dark panels may result in light icons over a light theme"
|
||||
case $? in
|
||||
1)
|
||||
# Enable dark panels
|
||||
xfconf-query -c xfce4-panel -p /panels/dark-mode -n -t bool -s true
|
||||
# Use the dark icon theme
|
||||
set_icon_theme zafiro-dark
|
||||
;;
|
||||
0)
|
||||
# Disable dark panels
|
||||
xfconf-query -c xfce4-panel -p /panels/dark-mode -n -t bool -s false
|
||||
# Use the light icon theme
|
||||
set_icon_theme zafiro
|
||||
;;
|
||||
*) exit ;;
|
||||
esac
|
||||
else
|
||||
# Use the dark icon theme
|
||||
set_icon_theme zafiro-dark
|
||||
fi
|
||||
# Change the main theme to the chosen one
|
||||
xfconf-query -c xsettings -p /Net/ThemeName -n -t string -s "Skeuos-$1"
|
||||
xfconf-query -c xfwm4 -p /general/theme -n -t string -s "Skeuos-$1-XFWM"
|
||||
gsettings set org.gnome.desktop.interface gtk-theme "Skeuos-$1"
|
||||
notify-send "Skeuos-$1 theme was enabled"
|
||||
}
|
||||
|
||||
export -f set_icon_theme set_theme
|
||||
|
||||
yad --no-buttons --center --keep-icon-size --use-interp --title 'TROMjaro Theme Switcher' --text-align=center --text "A Theme Switcher for TROMjaro's default theme-set (Skeuos) and icon-set (Zafiro)." --form --columns 5 \
|
||||
--field=!"$icons/Blue-Dark.png"!'Blue-Dark':FBTN "set_theme 'Blue-Dark'" \
|
||||
--field=!"$icons/Violet-Dark.png"!'Violet-Dark':FBTN "set_theme 'Violet-Dark'" \
|
||||
--field=!"$icons/Blue-Light.png"!'Blue-Light':FBTN "set_theme 'Blue-Light'" \
|
||||
--field=!"$icons/Violet-Light.png"!'Violet-Light':FBTN "set_theme 'Violet-Light'" \
|
||||
--field=!"$icons/Teal-Dark.png"!'Teal-Dark':FBTN "set_theme 'Teal-Dark'" \
|
||||
--field=!"$icons/Orange-Dark.png"!'Orange-Dark':FBTN "set_theme 'Orange-Dark'" \
|
||||
--field=!"$icons/Teal-Light.png"!'Teal-Light':FBTN "set_theme 'Teal-Light'" \
|
||||
--field=!"$icons/Orange-Light.png"!'Orange-Light':FBTN "set_theme 'Orange-Light'" \
|
||||
--field=!"$icons/Green-Dark.png"!'Green-Dark (default)':FBTN "set_theme 'Green-Dark'" \
|
||||
--field=!"$icons/Brown-Dark.png"!'Brown-Dark':FBTN "set_theme 'Brown-Dark'" \
|
||||
--field=!"$icons/Green-Light.png"!'Green-Light':FBTN "set_theme 'Green-Light'" \
|
||||
--field=!"$icons/Brown-Light.png"!'Brown-Light':FBTN "set_theme 'Brown-Light'" \
|
||||
--field=!"$icons/Magenta-Dark.png"!'Magenta-Dark':FBTN "set_theme 'Magenta-Dark'" \
|
||||
--field=!"$icons/Yellow-Dark.png"!'Yellow-Dark':FBTN "set_theme 'Yellow-Dark'" \
|
||||
--field=!"$icons/Magenta-Light.png"!'Magenta-Light':FBTN "set_theme 'Magenta-Light'" \
|
||||
--field=!"$icons/Yellow-Light.png"!'Yellow-Light':FBTN "set_theme 'Yellow-Light'" \
|
||||
--field=!"$icons/Red-Dark.png"!'Red-Dark':FBTN "set_theme 'Red-Dark'" \
|
||||
--field=!"$icons/Grey-Dark.png"!'Grey-Dark':FBTN "set_theme 'Grey-Dark'" \
|
||||
--field=!"$icons/Red-Light.png"!'Red-Light':FBTN "set_theme 'Red-Light'" \
|
||||
--field=!"$icons/Grey-Light.png"!'Grey-Light':FBTN "set_theme 'Grey-Light'"
|
@ -6,7 +6,7 @@ Exec=sh -c 'XAPP_FORCE_GTKWINDOW_ICON=trade-free-apps firefox --class WebApp-Tra
|
||||
Terminal=false
|
||||
X-MultipleArgs=false
|
||||
Type=Application
|
||||
Icon=trade-free-apps
|
||||
Icon=/usr/share/icons/hicolor/scalable/apps/trade-free-apps.svg
|
||||
Categories=GTK;WebApps;
|
||||
MimeType=text/html;text/xml;application/xhtml_xml;
|
||||
StartupWMClass=WebApp-TradeFreeAPPS6532
|
||||
|
@ -6,7 +6,7 @@ Exec=sh -c 'XAPP_FORCE_GTKWINDOW_ICON=videoneat firefox --class WebApp-VideoNeat
|
||||
Terminal=false
|
||||
X-MultipleArgs=false
|
||||
Type=Application
|
||||
Icon=videoneat
|
||||
Icon=/usr/share/icons/hicolor/scalable/apps/videoneat.svg
|
||||
Categories=GTK;WebApps;
|
||||
MimeType=text/html;text/xml;application/xhtml_xml;
|
||||
StartupWMClass=WebApp-VideoNeatInformYourself3854
|
||||
|
156
tromjaro/xfce/desktop-overlay/usr/share/icons/hicolor/scalable/apps/trade-free-apps.svg
Normal file
156
tromjaro/xfce/desktop-overlay/usr/share/icons/hicolor/scalable/apps/trade-free-apps.svg
Normal file
File diff suppressed because one or more lines are too long
After (image error) Size: 24 KiB |
@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Ebene_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 128 128"
|
||||
enable-background="new 0 0 128 128"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="videoneat.svg"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs151376" /><sodipodi:namedview
|
||||
id="namedview151374"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.3036213"
|
||||
inkscape:cx="32.991534"
|
||||
inkscape:cy="95.067709"
|
||||
inkscape:window-width="1868"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="52"
|
||||
inkscape:window-y="33"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Ebene_1" />
|
||||
<linearGradient
|
||||
id="SVGID_1_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="64"
|
||||
y1="-128.1636"
|
||||
x2="64"
|
||||
y2="256.0287">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#68C1E8"
|
||||
id="stop151355" />
|
||||
<stop
|
||||
offset="0.5"
|
||||
style="stop-color:#5C93E5"
|
||||
id="stop151357" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#395BAC"
|
||||
id="stop151359" />
|
||||
</linearGradient>
|
||||
|
||||
<linearGradient
|
||||
id="SVGID_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="64"
|
||||
y1="40.25"
|
||||
x2="64"
|
||||
y2="104.4549">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#F2F6FD"
|
||||
id="stop151364" />
|
||||
<stop
|
||||
offset="0.5"
|
||||
style="stop-color:#E7EFFB"
|
||||
id="stop151366" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#DBE7F9"
|
||||
id="stop151368" />
|
||||
</linearGradient>
|
||||
|
||||
<rect
|
||||
style="fill:#c17d4f;fill-opacity:1;stroke:#c17d4f;stroke-width:6.55444;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill"
|
||||
id="rect1294"
|
||||
width="116.15513"
|
||||
height="116.15513"
|
||||
x="6.8125296"
|
||||
y="5.9791985"
|
||||
inkscape:export-filename="/home/tio/Downloads/trom hand.png"
|
||||
inkscape:export-xdpi="172.32001"
|
||||
inkscape:export-ydpi="172.32001"
|
||||
ry="58.07756" /><path
|
||||
style="fill:#ffd4b7;fill-opacity:1;stroke-width:0.00494808"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 99.399938,32.394184 c -0.04995,0.0551 -0.648395,0.606482 -1.335661,1.222053 -8.861603,7.984632 -14.634869,14.020003 -19.658872,20.555337 -5.931702,7.722508 -10.889871,16.564766 -15.28365,27.27269 l -0.39985,0.979383 -0.27922,-0.384629 c -0.156177,-0.213014 0,0 -9.578119,-15.5585 -10.074878,-17.46198 -10.074878,-17.46198 -10.074878,-17.46198 -0.0041,0.01046 -5.588307,-0.03613 -11.249454,-0.03613 19.250346,31.438993 19.27349,31.445334 28.418762,45.494244 2.552575,3.701883 3.692765,5.28292 3.745993,5.207543 0.02292,-0.0223 0.261835,-0.730573 0.539688,-1.567568 5.499614,-16.593325 10.897695,-29.361287 16.738302,-39.57755 4.415871,-7.728226 9.230179,-14.585667 17.337697,-24.6954 0.691902,-0.86038 1.233566,-1.5604 1.209016,-1.55783 -0.0245,0.0023 -0.08021,0.0483 -0.129754,0.108347 z"
|
||||
id="path4-3"
|
||||
sodipodi:nodetypes="ccccccccccccccscc" /></svg>
|
After (image error) Size: 3.2 KiB |
@ -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
|
@ -1,11 +0,0 @@
|
||||
[Trigger]
|
||||
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
|
Reference in New Issue
Block a user