feat(gtk): set cursor theme to dracula
This commit is contained in:
parent
1581b93d10
commit
84796a92a8
4 changed files with 21 additions and 8 deletions
|
@ -41,6 +41,7 @@ exec-once = spotify & sleep 5; hyprctl dispatch movetoworkspacesilent special:sp
|
||||||
|
|
||||||
# Some default env vars.
|
# Some default env vars.
|
||||||
env = XCURSOR_SIZE,24
|
env = XCURSOR_SIZE,24
|
||||||
|
exec-once=hyprctl setcursor Dracula-cursors 24
|
||||||
|
|
||||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||||
input {
|
input {
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
|
|
||||||
"org/gnome/desktop/interface" = {
|
"org/gnome/desktop/interface" = {
|
||||||
color-scheme = "prefer-dark";
|
color-scheme = "prefer-dark";
|
||||||
gtk-theme = "Dracula";
|
|
||||||
icon-theme = "Flat-Remix-Violet-Dark";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,6 @@
|
||||||
(with gnome; [
|
(with gnome; [
|
||||||
gnome-calculator
|
gnome-calculator
|
||||||
seahorse
|
seahorse
|
||||||
adwaita-icon-theme
|
|
||||||
|
|
||||||
]) ++ [
|
]) ++ [
|
||||||
|
|
||||||
|
@ -91,7 +90,7 @@
|
||||||
virt-manager
|
virt-manager
|
||||||
gradle
|
gradle
|
||||||
gradle-completion # not working
|
gradle-completion # not working
|
||||||
jdk19_headless
|
temurin-bin-17
|
||||||
#camunda-modeler
|
#camunda-modeler
|
||||||
|
|
||||||
protonmail-bridge
|
protonmail-bridge
|
||||||
|
@ -105,8 +104,6 @@
|
||||||
libnotify
|
libnotify
|
||||||
libinput
|
libinput
|
||||||
playerctl
|
playerctl
|
||||||
dracula-theme
|
|
||||||
dracula-icon-theme
|
|
||||||
steam-run
|
steam-run
|
||||||
wineWowPackages.stable
|
wineWowPackages.stable
|
||||||
cabextract
|
cabextract
|
||||||
|
@ -150,7 +147,6 @@
|
||||||
swappy
|
swappy
|
||||||
fontfor
|
fontfor
|
||||||
qt5ct
|
qt5ct
|
||||||
lxappearance
|
|
||||||
imagemagick
|
imagemagick
|
||||||
usbutils
|
usbutils
|
||||||
evtest
|
evtest
|
||||||
|
|
|
@ -1,6 +1,24 @@
|
||||||
{ pkgs, ... }:
|
{ 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 = {
|
xdg.configFile = {
|
||||||
"../.themes/Dracula".source = "${pkgs.dracula-theme}/share/themes/Dracula";
|
"../.themes/Dracula".source = "${pkgs.dracula-theme}/share/themes/Dracula";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue