This commit is contained in:
Matthieu Fortin (CPC/CCP) 2024-11-05 08:00:49 -05:00
parent 596f85e4cd
commit 18dc031492
2 changed files with 3 additions and 3 deletions

View file

@ -142,8 +142,8 @@ master {
} }
misc { misc {
force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers
disable_hyprland_logo = false # If true disables the random hyprland logo / anime girl background. :( disable_hyprland_logo = true # If true disables the random hyprland logo / anime girl background. :(
} }

View file

@ -9,7 +9,7 @@ if [ ! -d "$MOUNT_POINT" ]; then
mkdir -p "$MOUNT_POINT" mkdir -p "$MOUNT_POINT"
fi fi
sudo mount -t cifs "$SMB_SHARE" "$MOUNT_POINT" -o username="$USER",password="$PASSWORD" sudo mount -t cifs "$SMB_SHARE" "$MOUNT_POINT" -o username="$USER",password="$PASSWORD",gid=1000,uid=1000
if mountpoint -q "$MOUNT_POINT"; then if mountpoint -q "$MOUNT_POINT"; then
echo "Successfully mounted $SMB_SHARE at $MOUNT_POINT" echo "Successfully mounted $SMB_SHARE at $MOUNT_POINT"