From 795f7d0011ed02e47ee5b65b4a794aa59474eae0 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Wed, 19 Aug 2020 12:12:43 -0400 Subject: [PATCH] Fix Picom Not Starting - Fix picom config path in autostart --- autostart_blocking.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autostart_blocking.sh b/autostart_blocking.sh index 6324e75..1d234c4 100755 --- a/autostart_blocking.sh +++ b/autostart_blocking.sh @@ -5,8 +5,8 @@ ############################## # List of processes to run on start declare -a processes_array=(\ - "picom --config ~/.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 + "nitrogen --restore" \ # Restore wallpaper ) # Run processes (ignore if they don't exist)