From 81f908b5c613a27c9c29bd5d54e6a62bd16b1310 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Mon, 24 Aug 2020 01:20:18 -0400 Subject: [PATCH] Screen Layout & Rclone fix - Add screen layout script to autostart_blocking - Fix rclone command in autostart --- autostart.sh | 2 +- autostart_blocking.sh | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/autostart.sh b/autostart.sh index 00f2dd8..8598aa9 100755 --- a/autostart.sh +++ b/autostart.sh @@ -52,5 +52,5 @@ for i in "${remote_array[@]}" do local_path="$local_clone_dir"/"$i" mkdir -p "$local_path" - rclone --vfs-cache-mode writes mount "$i": "$local_path" & + rclone mount "$i": "$local_path" & done diff --git a/autostart_blocking.sh b/autostart_blocking.sh index 1d234c4..485447d 100755 --- a/autostart_blocking.sh +++ b/autostart_blocking.sh @@ -5,8 +5,9 @@ ############################## # List of processes to run on start declare -a processes_array=(\ - "picom --config /home/sravan/.config/picom/picom.conf" \ # Start compositor using configuration file - "nitrogen --restore" \ # Restore wallpaper + "picom --config /home/sravan/.config/picom/picom.conf" \ # Start compositor using configuration file + "bash /home/sravan/.screenlayout/default-screen-layout.sh" \ # Restore default screen layout + "nitrogen --restore" \ # Restore wallpaper ) # Run processes (ignore if they don't exist)