From 93850623ddd3e547333872ed78176641e61c9f6e Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 3 Dec 2025 13:50:17 -0800 Subject: [PATCH] fixes --- .config/alacritty/alacritty.toml | 12 ++++++++---- .config/hypr/hyprland.conf | 8 +++++++- .config/hypr/hyprsunset.conf | 4 ++-- .config/zsh/.zshrc | 10 ++++++++++ .zshenv | 7 ------- 5 files changed, 27 insertions(+), 14 deletions(-) diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index 80aa8ee..104f3c5 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -2,18 +2,22 @@ TERM = "xterm-256color" [font] -size = 16 +size = 17 [font.normal] -family = "Monospace" -style = "Regular" +family = "Hack" [font.offset] x = 0 y = 0 +# Try setting this +[font.glyph_offset] +x = 0 +y = 0 + [window] -opacity = 0.9 +opacity = 0.95 [general] import = ["/home/opal/.config/alacritty/theme.toml"] diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 88d56e1..b43658a 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -4,6 +4,7 @@ monitor=HDMI-A-1,3840x2160,0x0,1.5 monitor=DP-2,2560x2880,2560x0,1.6 +monitor=DP-3,2560x2880,2560x0,1.6 #monitor=DP-1,2560x2880,0x0,2.0 monitor=eDP-1,1920x1200,6400x0,1.0 @@ -25,9 +26,10 @@ $menu = ~/.config/rofi/launchers/type-7/launcher.sh # exec-once = nm-applet & # exec-once = waybar & hyprpaper & firefox +exec = hyprpaper +exec-once = keepassxc exec-once = waybar & exec-once = hypridle & -exec = hyprpaper exec-once = hyprsunset exec-once = /usr/bin/udiskie & exec-once = /usr/bin/nm-applet & @@ -315,6 +317,10 @@ windowrulev2 = suppressevent maximize, class:.* # Fix some dragging issues with XWayland windowrulev2 = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0 +# For KeePassXC +windowrulev2 = float, class:^(org.keepassxc.KeePassXC)$ +windowrulev2 = center, class:^(org.keepassxc.KeePassXC)$ + xwayland { force_zero_scaling = true use_nearest_neighbor = true diff --git a/.config/hypr/hyprsunset.conf b/.config/hypr/hyprsunset.conf index adb92f4..a7d2451 100644 --- a/.config/hypr/hyprsunset.conf +++ b/.config/hypr/hyprsunset.conf @@ -1,4 +1,4 @@ -max-gamma = 100 +max-gamma = 200 profile { time = 7:00 @@ -7,5 +7,5 @@ profile { profile { time = 18:00 - temperature = 2000 + temperature = 3000 } diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index bfa7cdf..5ed5877 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -14,6 +14,14 @@ compinit export EDITOR="nvim" +HISTFILE=$ZDOTDIR/.zsh_history +HISTSIZE=10000 +SAVEHIST=10000 + +# Options to make history nicer +setopt HIST_IGNORE_DUPS HIST_IGNORE_SPACE + + ####################################################### # PROMPT ####################################################### @@ -118,6 +126,8 @@ alias ga='git add' alias gpull='git pull' alias gcom='git commit -m' +alias h='history 1' + ####################################################### # FUNCTIONS ####################################################### diff --git a/.zshenv b/.zshenv index 01ec92a..826714b 100644 --- a/.zshenv +++ b/.zshenv @@ -1,8 +1 @@ export ZDOTDIR="$HOME/.config/zsh" - -HISTFILE=$ZDOTDIR/.zsh_history -HISTSIZE=10000 -SAVEHIST=10000 - -# Options to make history nicer -setopt HIST_IGNORE_DUPS HIST_IGNORE_SPACE