diff options
author | Saumit <justsaumit@protonmail.com> | 2024-08-25 12:15:26 +0530 |
---|---|---|
committer | Saumit <justsaumit@protonmail.com> | 2024-08-25 12:15:26 +0530 |
commit | aef8c2529bb77190afe61753819669fefaef3179 (patch) | |
tree | ee3e0eefdb2f9a348e705832414f4706399fb60a | |
parent | 3770cf8e66e821135d465d05e720dee9a7986f0c (diff) |
.config: alias config env + rangerdir cleanup + footterm font size
-rw-r--r-- | .config/foot/foot.ini | 2 | ||||
-rw-r--r-- | .config/shell/aliasrc | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.config/foot/foot.ini b/.config/foot/foot.ini index e2fcee3..cc08d77 100644 --- a/.config/foot/foot.ini +++ b/.config/foot/foot.ini @@ -1,5 +1,5 @@ [main] -font=UbuntuMono Nerd Font:size=10 +font=UbuntuMono Nerd Font:size=17 title=soterm [key-bindings] diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index c9e64cc..24cdebf 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -26,7 +26,7 @@ alias \ vim='nvim' \ r='ranger' \ sr='sudo ranger' \ - ncmpcpp='ncmpcpp -b .config/ncmpcpp/keybindings' \ + ncmpcpp='ncmpcpp -b $XDG_CONFIG_HOME/ncmpcpp/keybindings' \ jds='export _JAVA_AWT_WM_NONREPARENTING=1' \ jd='jdownloader' \ yt='ytfzf -lts' \ @@ -64,8 +64,8 @@ alias \ mkd='mkdir -pv' \ myip="curl ipinfo.io/ip && echo """ \ myipc='curl -s ipinfo.io/ip | xargs -I {} geoiplookup {}' \ - neofetch='neofetch --ascii .config/neofetch/arch-ascii.txt' \ - ranger='ranger --choosedir=$HOME/.rangerdir; LASTDIR=`cat $HOME/.rangerdir`; cd "$LASTDIR"' \ + neofetch='neofetch --ascii $XDG_CONFIG_HOME/neofetch/arch-ascii.txt' \ + ranger='ranger --choosedir=$XDG_CONFIG_HOME/ranger/rangerdir; LASTDIR=`cat $XDG_CONFIG_HOME/ranger/rangerdir`; cd "$LASTDIR"' \ recentpacks="grep -i installed /var/log/pacman.log |tac| fzf | cut -d' ' -f4 | "$CLIP" " \ scr='ffmpeg -f x11grab -i :0.0 out.mp4' \ ssw='IMG="pic-sel-$(date +%y-%m-%d--%H-%M-%S).png" && grim -g "$(slurp)" "$GRIM_DEFAULT_DIR/$IMG" && wl-copy < "$GRIM_DEFAULT_DIR/$IMG"' \ |