Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #337

Merged
merged 3 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/docs/Keyboard Shortcuts Cheat Sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ These group of shortcuts are defined in the directory **scripts/configuration/ke
<br />`ALT` + `SHIFT` + `6` : Start streaming.
<br />`ALT` + `SHIFT` + `7` : Stop streaming.

## SimplESCreenRecorder
## SimpleSCreenRecorder

`SUPER`/ `META` + `S` : Start recording.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ echo "" > "$LOG_FILE"
(echo "$HOME/.config/BraveSoftware/" >> "$LOG_FILE")
(echo "$HOME/config/")
(echo "$HOME/config/" >> "$LOG_FILE")
(echo "$HOME/.local/share/nvim/site/")
(echo "$HOME/.local/share/nvim/site/" >> "$LOG_FILE")
(echo "$HOME/Developer/")
(echo "$HOME/Developer/" >> "$LOG_FILE")
(echo "$HOME/Documents/")
Expand Down Expand Up @@ -168,7 +170,16 @@ elif [ "$MY_HOST_NAME" == "$HOSTNAME" ]; then
(echo "<> Syncing the directory: ~/config/ to $external_storage_drive_02_backup_path ...")
(echo "<> Syncing the directory: ~/config/ to $external_storage_drive_02_backup_path ..." >> "$LOG_FILE")
(rsync -avh --delete --quiet -e ~/config/* "$external_storage_drive_02_backup_path" 2>&1 | tee -a "$LOG_FILE")
# Sync ~/Developer/
# Sync ~/.local/share/nvim/site/
external_storage_drive_01_backup_path="/media/$USER/$EXTERNAL_STORAGE_DRIVE_01_TAG/SYNC/hosts/$MY_HOST_NAME/.local/share/nvim/site/"
(echo "<> Syncing the directory: ~/.local/share/nvim/site/ to $external_storage_drive_01_backup_path ...")
(echo "<> Syncing the directory: ~/.local/share/nvim/site/ to $external_storage_drive_01_backup_path ..." >> "$LOG_FILE")
(rsync -avh --delete --quiet -e ~/.local/share/nvim/site/* "$external_storage_drive_01_backup_path" 2>&1 | tee -a "$LOG_FILE")
external_storage_drive_02_backup_path="/media/$USER/$EXTERNAL_STORAGE_DRIVE_02_TAG/SYNC/hosts/$MY_HOST_NAME/.local/share/nvim/site/"
(echo "<> Syncing the directory: ~/.local/share/nvim/site/ to $external_storage_drive_02_backup_path ...")
(echo "<> Syncing the directory: ~/.local/share/nvim/site/ to $external_storage_drive_02_backup_path ..." >> "$LOG_FILE")
(rsync -avh --delete --quiet -e ~/.local/share/nvim/site/* "$external_storage_drive_02_backup_path" 2>&1 | tee -a "$LOG_FILE")
# Sync ~/Developer/
external_storage_drive_01_backup_path="/media/$USER/$EXTERNAL_STORAGE_DRIVE_01_TAG/SYNC/hosts/$MY_HOST_NAME/Developer/"
(echo "<> Syncing the directory: ~/Developer/ to $external_storage_drive_01_backup_path ...")
(echo "<> Syncing the directory: ~/Developer/ to $external_storage_drive_01_backup_path ..." >> "$LOG_FILE")
Expand Down
Loading