From d6e44c1b0cbd2f52c1f213f4de19d7c9d8a10083 Mon Sep 17 00:00:00 2001 From: zachir Date: Thu, 11 Jul 2024 09:33:12 -0500 Subject: Update hypr config options for v0.41.2 Two changes, for cursor warping and spawning the new window as master. --- hypr/hyprland.conf | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 7f33a01..74dab8d 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -82,7 +82,12 @@ general { col.active_border = rgba(198844ee) col.inactive_border = rgba(1b1d1cee) layout = master - no_cursor_warps = false +} +#}}} + +#{{{ cursor +cursor { + no_warps = false } #}}} @@ -147,7 +152,7 @@ master { special_scale_factor = 0.55 mfact = 0.55 # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more - new_is_master = false + new_status = inherit new_on_top = true no_gaps_when_only = false orientation = left -- cgit v1.2.3 From f995945828966933168d9bffebab4f384a1855f4 Mon Sep 17 00:00:00 2001 From: zachir Date: Thu, 11 Jul 2024 09:35:44 -0500 Subject: Fix some xdg path blunders These broke adb, and the xcursor path. --- sh/aliases | 3 +++ sh/profile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sh/aliases b/sh/aliases index 1537161..1b6606e 100644 --- a/sh/aliases +++ b/sh/aliases @@ -80,3 +80,6 @@ alias s='sudo systemctl' # XDG dirs fix alias svn="svn --config-dir \"$XDG_CONFIG_HOME\"/subversion" +alias adb="HOME="$XDG_DATA_HOME"/android adb" +alias wget="wget --hsts-file=\"$XDG_DATA_HOME/wget-hsts\"" +alias yarn="yarn --use-yarnrc $XDG_CONFIG_HOME/yarn/config" diff --git a/sh/profile b/sh/profile index b18500d..e2e155d 100644 --- a/sh/profile +++ b/sh/profile @@ -51,6 +51,9 @@ export RENPY_PATH_TO_SAVES="$XDG_DATA_HOME" export XINITRC="$XDG_CONFIG_HOME"/X11/xinitrc export XAUTHORITY="$XDG_RUNTIME_DIR"/X11/Xauthority export VIMINIT="set nocp | source ${XDG_CONFIG_HOME:-$HOME.config}/vim/vimrc" +export ANDROID_USER_HOME="$XDG_DATA_HOME"/android +export XCURSOR_PATH="/usr/share/icons:$XDG_DATA_HOME/icons" +export PYTHONSTARTUP="$XDG_CONFIG_HOME"/python/pythonrc # Scaling export QT_AUTO_SCREEN_SCALE_FACTOR=0 -- cgit v1.2.3