feat(gtk): set cursor theme to dracula

This commit is contained in:
matt1432 2023-10-03 11:08:17 -04:00
parent 1581b93d10
commit 84796a92a8
4 changed files with 21 additions and 8 deletions

View file

@ -41,6 +41,7 @@ exec-once = spotify & sleep 5; hyprctl dispatch movetoworkspacesilent special:sp
# Some default env vars.
env = XCURSOR_SIZE,24
exec-once=hyprctl setcursor Dracula-cursors 24
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
input {

View file

@ -17,8 +17,6 @@
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
gtk-theme = "Dracula";
icon-theme = "Flat-Remix-Violet-Dark";
};
};
}

View file

@ -68,7 +68,6 @@
(with gnome; [
gnome-calculator
seahorse
adwaita-icon-theme
]) ++ [
@ -91,7 +90,7 @@
virt-manager
gradle
gradle-completion # not working
jdk19_headless
temurin-bin-17
#camunda-modeler
protonmail-bridge
@ -105,8 +104,6 @@
libnotify
libinput
playerctl
dracula-theme
dracula-icon-theme
steam-run
wineWowPackages.stable
cabextract
@ -150,7 +147,6 @@
swappy
fontfor
qt5ct
lxappearance
imagemagick
usbutils
evtest

View file

@ -1,8 +1,26 @@
{ pkgs, ... }:
{
gtk = {
enable = true;
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
iconTheme = {
name = "Flat-Remix-Violet-Dark";
package = pkgs.flat-remix-icon-theme;
};
cursorTheme = {
name = "Dracula-cursors";
package = pkgs.dracula-icon-theme;
};
};
xdg.configFile = {
"../.themes/Dracula".source = "${pkgs.dracula-theme}/share/themes/Dracula";
"../.themes/Dracula".source = "${pkgs.dracula-theme}/share/themes/Dracula";
"Kvantum/Dracula".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula";
"Kvantum/Dracula-Solid".source = "${pkgs.dracula-theme}/share/Kvantum/Dracula-Solid";