#!/bin/bash

# Hide the "snap" folder from the user's home
snap_hidden=$(grep -r snap ~/.hidden)
if [[ $snap_hidden != *"snap"* ]]; then
	echo "snap" >> ~/.hidden
fi
