From f7175b21a3a6cc6965b0ea77e7c47535ce83beec Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 5 Jun 2024 09:09:47 -0500 Subject: Add better/more XDG support Implements XDG support for more programs that support it, in various levels of hackiness. --- hypr/hyprland.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 26d5441..633c832 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -20,7 +20,7 @@ exec-once = lxqt-policykit-agent exec-once = import-gsettings gtk-theme 'Flat-Remix-GTK-Green-Darkest-Solid' exec-once = import-gsettings icon-theme 'Mint-X-Grey' exec-once = import-gsettings cursor-theme 'Breeze' -exec-once = xrdb ~/.Xresources +exec-once = xrdb -load "$XDG_CONFIG_HOME"/X11/xresources exec-once = com.github.wwmm.easyeffects exec-once = mpd #}}} -- cgit v1.2.3 From f5b4c3138b0bf7db458f4979b958640b1f19d777 Mon Sep 17 00:00:00 2001 From: zachir Date: Wed, 5 Jun 2024 09:10:50 -0500 Subject: Fix cursor support Hyprcursor and Xcursor were rendering differently; this should be fixed now that they use the same size (32px) and theme. --- hypr/hyprland.conf | 4 ++-- xsettingsd/xsettingsd.conf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'hypr') diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 633c832..657a731 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -28,9 +28,9 @@ exec-once = mpd #{{{ env # Environment variables set at launch env = HYPRCURSOR_THEME,BreezeHypr -env = HYPRCURSOR_SIZE,36 +env = HYPRCURSOR_SIZE,32 env = XCURSOR_THEME,BreezeX-Black -env = XCURSOR_SIZE,36 +env = XCURSOR_SIZE,32 #}}} # Source a file (multi-file configs) diff --git a/xsettingsd/xsettingsd.conf b/xsettingsd/xsettingsd.conf index 8fa8d9b..27d09c3 100644 --- a/xsettingsd/xsettingsd.conf +++ b/xsettingsd/xsettingsd.conf @@ -1,6 +1,6 @@ Net/ThemeName "Flat-Remix-GTK-Green-Darkest-Solid" Net/IconThemeName "Mint-X" -Gtk/CursorThemeName "Adwaita" +Gtk/CursorThemeName "BreezeX-Black" Net/EnableEventSounds 1 EnableInputFeedbackSounds 0 Xft/Antialias 1 -- cgit v1.2.3