From 18dc03149290504785ebf0f00e0335135f22295a Mon Sep 17 00:00:00 2001 From: "Matthieu Fortin (CPC/CCP)" Date: Tue, 5 Nov 2024 08:00:49 -0500 Subject: [PATCH] updates --- hypr/.config/hypr/hyprland.conf | 4 ++-- scripts/.local/bin/mounttcli | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf index 5ff9279..c60425c 100644 --- a/hypr/.config/hypr/hyprland.conf +++ b/hypr/.config/hypr/hyprland.conf @@ -142,8 +142,8 @@ master { } misc { - force_default_wallpaper = -1 # 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. :( + force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers + disable_hyprland_logo = true # If true disables the random hyprland logo / anime girl background. :( } diff --git a/scripts/.local/bin/mounttcli b/scripts/.local/bin/mounttcli index e4b1f5b..0381d84 100755 --- a/scripts/.local/bin/mounttcli +++ b/scripts/.local/bin/mounttcli @@ -9,7 +9,7 @@ if [ ! -d "$MOUNT_POINT" ]; then mkdir -p "$MOUNT_POINT" 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 echo "Successfully mounted $SMB_SHARE at $MOUNT_POINT"