From 6d4a64ac014f9b95e0d6df1278d5e069f2950a9f Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Thu, 10 Sep 2020 14:05:06 +0200 Subject: [PATCH] fixed double slashes in PATH modified: .config/qutebrowser/autoconfig.yml modified: .zprofile --- .config/qutebrowser/autoconfig.yml | 1 + .zprofile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/qutebrowser/autoconfig.yml b/.config/qutebrowser/autoconfig.yml index 476623d..2d99f63 100644 --- a/.config/qutebrowser/autoconfig.yml +++ b/.config/qutebrowser/autoconfig.yml @@ -9,6 +9,7 @@ settings: bindings.commands: global: normal: + ',C': spawn -d st castyt {url} ',V': spawn -d mpv {url} ',X': spawn -d dmenuhandler {url} ',c': hint links spawn -d st castyt {hint-url} diff --git a/.zprofile b/.zprofile index 2b87552..b476e7b 100644 --- a/.zprofile +++ b/.zprofile @@ -6,9 +6,9 @@ # to clean up. # Adds `~/.local/bin` to $PATH -export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" +export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" # Adds cargo bin path to $PATH -export PATH="$PATH:$(du "$HOME/.local/share/cargo/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" +export PATH="$PATH:$(du "$HOME/.local/share/cargo/bin" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" # Default programs: export EDITOR="nvim"