Specify Autostart Location, README & LICENSE updates, and Add config.h
- Remove config.h from gitignore - Move config.def.h modifications to config.h - Restore config.def.h to original version - Specify location of autostart instead of searching certain locations - Rename autostart.sh to autostart_blocking.sh - Add myself to license - Change README to markdown and add personal changes
This commit is contained in:
27
autostart_blocking.sh
Executable file
27
autostart_blocking.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Local cloud storage directory
|
||||
local_clone_dir="$HOME/Cloud"
|
||||
|
||||
# List of remotes as defined in rclone
|
||||
declare -a remote_array=(\
|
||||
"OneDrive - Personal" \
|
||||
"Google Drive - Personal" \
|
||||
)
|
||||
|
||||
# Mount Remotes
|
||||
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" &
|
||||
done
|
||||
|
||||
# Start compositor using configuration file
|
||||
picom --config ~/.config/picom/picom.conf &
|
||||
|
||||
# Restore wallpaper
|
||||
nitrogen --restore &
|
||||
|
||||
# Blue light filter (Farmington Hills, MI)
|
||||
redshift -l 42.48531:-83.37716 &
|
Reference in New Issue
Block a user