From 5567637cd78c2eb651de5b53da8001b15a146a4c Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 24 Aug 2022 09:19:30 +0200 Subject: Include snap bins if they exist --- .config/shell/sources | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '.config') diff --git a/.config/shell/sources b/.config/shell/sources index a9b11b9..43a3bb0 100644 --- a/.config/shell/sources +++ b/.config/shell/sources @@ -39,6 +39,13 @@ PATH="${PATH}:/usr/local/sbin" PATH="${PATH}:/usr/games/bin" PATH="${PATH}:/opt/bin" +# snaps were a terrible idea and anyone in favour of them should be ashamed +# of themselves +if [ -d "/snap/bin" ] +then + PATH="$PATH:/snap/bin" +fi + # Raku stuff if [ -d "$HOME/.raku/bin" ] then -- cgit v1.1