Updates to fix dependencies
This commit is contained in:
@@ -2,8 +2,6 @@
|
||||
# ~/.config/fish/configs/arch_config.fish
|
||||
#
|
||||
|
||||
alias sway_config='nano $HOME/.config/sway/config' # Open the fish Config in Text editor
|
||||
|
||||
alias git_update='$HOME/.config/fish/scripts/git-update.sh'
|
||||
|
||||
alias mount_all='$HOME/.config/fish/scripts/mount.sh'
|
||||
@@ -13,8 +11,8 @@ alias print_cam='ssh honney@192.168.1.184'
|
||||
|
||||
function updateall
|
||||
# Get current Discord version (if installed)
|
||||
if pacman -Qq discord >/dev/null 2>&1
|
||||
set version_before (pacman -Qq discord)
|
||||
if pacman -Q discord >/dev/null 2>&1
|
||||
set version_before (pacman -Q discord)
|
||||
else
|
||||
set version_before ""
|
||||
end
|
||||
@@ -25,8 +23,8 @@ function updateall
|
||||
flatpak update
|
||||
|
||||
# Get new Discord version (if installed)
|
||||
if pacman -Qq discord >/dev/null 2>&1
|
||||
set version_after (pacman -Qq discord)
|
||||
if pacman -Q discord >/dev/null 2>&1
|
||||
set version_after (pacman -Q discord)
|
||||
else
|
||||
set version_after ""
|
||||
end
|
||||
@@ -51,20 +49,6 @@ function cleanup
|
||||
end
|
||||
end
|
||||
|
||||
function scenedetectenv
|
||||
source ~/.venvs/scenedetect-env/bin/activate.fish
|
||||
set -gx PATH ~/.venvs/scenedetect-env/bin $PATH
|
||||
end
|
||||
|
||||
function y
|
||||
set tmp (mktemp -t "yazi-cwd.XXXXXX")
|
||||
yazi $argv --cwd-file="$tmp"
|
||||
if read -z cwd < "$tmp"; and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
|
||||
builtin cd -- "$cwd"
|
||||
end
|
||||
rm -f -- "$tmp"
|
||||
end
|
||||
|
||||
set -x QT_QPA_PLATFORMTHEME qt5ct
|
||||
|
||||
set -x XCURSOR_THEME "DJ-FOX-C"
|
||||
|
||||
Reference in New Issue
Block a user