Skip to content

Commit

Permalink
Merge pull request #337 from mydroidandi/development
Browse files Browse the repository at this point in the history
Development
estebanways authored Dec 3, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents d7dd3ca + b144cda commit 0bedef8
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/docs/Keyboard Shortcuts Cheat Sheet.md
Original file line number Diff line number Diff line change
@@ -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.

Original file line number Diff line number Diff line change
@@ -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/")
@@ -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")

0 comments on commit 0bedef8

Please sign in to comment.