diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2022-03-18 14:57:17 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2022-03-18 14:57:17 -0500 |
commit | 5c70a39157f55f5a1c4a946c33da3d35d49e0d56 (patch) | |
tree | 7ee1e3b352409131c0bf2b4fb11083e6a550f58d | |
parent | 1bfe9b4360a4c5708915325adb4a573180b9f7bd (diff) | |
parent | b8f11eab9e79d617d0f0d92117a0dd18323622ea (diff) | |
download | dotconfig-5c70a39157f55f5a1c4a946c33da3d35d49e0d56.tar.xz dotconfig-5c70a39157f55f5a1c4a946c33da3d35d49e0d56.zip |
fixed zprofile for vooif
-rw-r--r-- | zsh/profile/zprofile.voidx250 | 1 | ||||
-rwxr-xr-x | zsh/zscripts/aliasrc.zsh | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/zsh/profile/zprofile.voidx250 b/zsh/profile/zprofile.voidx250 index 4bc5886..d590c9e 100644 --- a/zsh/profile/zprofile.voidx250 +++ b/zsh/profile/zprofile.voidx250 @@ -1,5 +1,6 @@ #!/usr/bin/env zsh export ZPLUGINS="/home/timmy/.local/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh" +export XDG_DATA_DIRS="/var/lib/flatpak/exports/share:$XDG_DATA_DIRS" source /home/timmy/.config/zsh/zprofile diff --git a/zsh/zscripts/aliasrc.zsh b/zsh/zscripts/aliasrc.zsh index 16bb675..f9822b7 100755 --- a/zsh/zscripts/aliasrc.zsh +++ b/zsh/zscripts/aliasrc.zsh @@ -48,6 +48,10 @@ alias \ mv="mv -iv" \ rm="rm -v" \ +# Default formatting +alias \ + yt-dlp="yt-dlp -o '%(uploader)s - %(title)s.%(ext)s'" \ + # Clean home directory alias \ startdwm="\startx $XDG_CONFIG_HOME/x11/xinitdwmrc" \ |