From b3a500c3e04c5aaa7b861bead5afc9f1d867a42b Mon Sep 17 00:00:00 2001 From: ZachIR Date: Mon, 30 Jun 2025 00:25:23 -0500 Subject: Update st xresources font to Fira Code --- X11/xresources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X11/xresources b/X11/xresources index d5c4550..7115b96 100644 --- a/X11/xresources +++ b/X11/xresources @@ -30,7 +30,7 @@ st.termname: st-256color st.shell: /usr/bin/tmux ! The following options options can be reloaded via USR1 signal. -!st.font: mononoki Nerd Font Mono:pixelsize=12:antialias=true:autohint=true; +!st.font: Fira Code Nerd Font Mono:pixelsize=12:antialias=true:autohint=true; !st.font2: Symbola:pixelsize=12:antialias=true:autohint=true; st.borderpx: 3 ! st alpha -- cgit v1.2.3 From faa34b8084be0814a05512e009d9ffa1ea349670 Mon Sep 17 00:00:00 2001 From: ZachIR Date: Mon, 30 Jun 2025 00:25:49 -0500 Subject: Fix zplug install in XDG dir --- zsh/zshrc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/zsh/zshrc b/zsh/zshrc index 532fb15..0e87993 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -1,5 +1,13 @@ #zmodload zsh/zprof -if [ -d "$HOME/.zplug" ]; then +if [ -n "$ZPLUG_HOME" ]; then + if [ -d "$ZPLUG_HOME" ]; then + export ZPLUG_INSTALLED="y" + source "$ZPLUG_HOME/init.zsh" + fi +elif [ -d "$XDG_DATA_HOME/zplug" ]; then + export ZPLUG_INSTALLED="y" + source "$XDG_DATA_HOME/zplug/init.zsh" +elif [ -d "$HOME/.zplug" ]; then export ZPLUG_INSTALLED="y" source "$HOME/.zplug/init.zsh" fi -- cgit v1.2.3