Screen Layout & Rclone fix
- Add screen layout script to autostart_blocking - Fix rclone command in autostart
This commit is contained in:
@ -52,5 +52,5 @@ for i in "${remote_array[@]}"
|
|||||||
do
|
do
|
||||||
local_path="$local_clone_dir"/"$i"
|
local_path="$local_clone_dir"/"$i"
|
||||||
mkdir -p "$local_path"
|
mkdir -p "$local_path"
|
||||||
rclone --vfs-cache-mode writes mount "$i": "$local_path" &
|
rclone mount "$i": "$local_path" &
|
||||||
done
|
done
|
||||||
|
@ -5,8 +5,9 @@
|
|||||||
##############################
|
##############################
|
||||||
# List of processes to run on start
|
# List of processes to run on start
|
||||||
declare -a processes_array=(\
|
declare -a processes_array=(\
|
||||||
"picom --config /home/sravan/.config/picom/picom.conf" \ # Start compositor using configuration file
|
"picom --config /home/sravan/.config/picom/picom.conf" \ # Start compositor using configuration file
|
||||||
"nitrogen --restore" \ # Restore wallpaper
|
"bash /home/sravan/.screenlayout/default-screen-layout.sh" \ # Restore default screen layout
|
||||||
|
"nitrogen --restore" \ # Restore wallpaper
|
||||||
)
|
)
|
||||||
|
|
||||||
# Run processes (ignore if they don't exist)
|
# Run processes (ignore if they don't exist)
|
||||||
|
Reference in New Issue
Block a user