theming updates

This commit is contained in:
Rouven Seifert 2023-12-12 17:43:53 +01:00
parent 9e8e5053fd
commit 9f6221d8b1
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 9 additions and 16 deletions

View file

@ -117,16 +117,16 @@ in
farPattern = "Opal"; farPattern = "Opal";
extraConfig.Create = "near"; extraConfig.Create = "near";
}; };
channels.FSR = {
nearPattern = "FSR";
farPattern = "FSR";
extraConfig.Create = "near";
};
channels.unispam = { channels.unispam = {
nearPattern = "Uni Spam"; nearPattern = "Uni Spam";
farPattern = "Uni Spam"; farPattern = "Uni Spam";
extraConfig.Create = "near"; extraConfig.Create = "near";
}; };
# channels.modules = {
# nearPattern = "Module";
# farPattern = "Module";
# extraConfig.Create = "near";
# };
channels.trash = { channels.trash = {
nearPattern = "Trash"; nearPattern = "Trash";
farPattern = "Gel&APY-schte Elemente"; farPattern = "Gel&APY-schte Elemente";

View file

@ -9,7 +9,6 @@
zip zip
unzip unzip
man-pages man-pages
wpa_supplicant_gui
pcmanfm pcmanfm
xdg-utils # used for xdg-open xdg-utils # used for xdg-open
appimage-run appimage-run
@ -23,10 +22,10 @@
drawio drawio
leafpad leafpad
imv imv
remmina
# sound # sound
pavucontrol pavucontrol
x32edit
spotify spotify
# bluetooth # bluetooth
@ -34,7 +33,6 @@
# internet # internet
google-chrome google-chrome
tor-browser-bundle-bin
filezilla filezilla
dbeaver dbeaver
@ -49,14 +47,14 @@
gajim gajim
# games # games
prismlauncher # minecraft, but it actually works # not anymore lol prismlauncher
superTuxKart superTuxKart
# yubikey and password stuff # yubikey and password stuff
yubikey-manager yubikey-manager
yubikey-manager-qt yubikey-manager-qt
yubioath-flutter yubioath-flutter
bitwarden # bitwarden
# misc # misc
neofetch # obligatory neofetch # obligatory
@ -68,6 +66,7 @@
rnote rnote
libreoffice libreoffice
mosh mosh
ansible
# programming languages # programming languages
cargo cargo

View file

@ -1,7 +1,6 @@
{ pkgs, nix-colors, ... }: { pkgs, nix-colors, ... }:
{ {
home.packages = with pkgs; [ libsForQt5.qtstyleplugin-kvantum ];
colorScheme = nix-colors.colorSchemes.dracula; colorScheme = nix-colors.colorSchemes.dracula;
# theme hardcoded to dracula, too lazy to make all this base16 # theme hardcoded to dracula, too lazy to make all this base16
@ -31,9 +30,4 @@
package = pkgs.dracula-theme; package = pkgs.dracula-theme;
size = 16; size = 16;
}; };
xdg.configFile = {
"Kvantum/Dracula/Dracula.kvconfig".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula/Dracula.kvconfig";
"Kvantum/Dracula/Dracula.svg".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula/Dracula.svg";
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=Dracula";
};
} }