plasma-desktop: Update activation script to remove gtk-4.0 config

This commit is contained in:
Payas Relekar 2023-12-19 21:31:50 +05:30
parent 51733f1d96
commit 0c93c17aa6

View file

@ -36,10 +36,13 @@
qt.platformTheme = "kde";
system.activationScripts.remove_gtkrc_2_0.text = ''
system.activationScripts.remove_gtk_conf.text = ''
if [ -f "/home/payas/.gtkrc-2.0" ]; then
rm /home/payas/.gtkrc-2.0;
fi
if [ -d "/home/payas/.config/gtk-4.0" ]; then
rm -rf /home/payas/.config/gtk-4.0
fi
'';
nixpkgs = {