Files
dwm/autostart.sh
Sravan Balaji a60b1c5d2f Rofi Launcher w/ Greenclip Manager
- Add greenclip daemon to autostart
- Add background processes section to autostart
- Remove references to dmenu
- Add rofi run and clipboard shortcuts
- Update man page to reference rofi instead of dmenu
2020-11-06 21:02:40 -05:00

52 lines
889 B
Bash
Executable File

#!/bin/bash
############################
# System Tray Applications #
############################
# PulseAudio volume control
volctl &
# Nyrna
nyrna &
# Blueman
blueman-tray &
# Network Manager Applet
nm-applet &
# KDE Connect
kdeconnect-indicator &
########################
# Background Processes #
########################
# Deadd Notification Center
deadd-notification-center &
# Greenclip
greenclip daemon &
# Redshift
redshift-gtk &
#####################
# Cloud Drive Rsync #
#####################
# 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