Modifiche a 'rsync/rsync-Linux-backup.sh',
aggiunto script 'rsync/rsync-Scheda-SD.sh', aggiunti file di VSCodium 'keybindings.json' e 'settings.json' aggiunto file stow-ignore
This commit is contained in:
parent
ef227a3661
commit
e6bc1786e3
5 changed files with 90 additions and 1 deletions
24
.stow-local-ignore
Normal file
24
.stow-local-ignore
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Comments and blank lines are allowed.
|
||||
|
||||
RCS
|
||||
.+,v
|
||||
|
||||
CVS
|
||||
\.\#.+ # CVS conflict files / emacs lock files
|
||||
\.cvsignore
|
||||
|
||||
\.svn
|
||||
_darcs
|
||||
\.hg
|
||||
|
||||
\.git
|
||||
\.gitignore
|
||||
|
||||
.+~ # emacs backup files
|
||||
\#.*\# # emacs autosave files
|
||||
|
||||
^/README.*
|
||||
^/LICENSE.*
|
||||
^/COPYING
|
||||
|
||||
config-files.code-workspace
|
26
codium/.config/VSCodium/User/keybindings.json
Normal file
26
codium/.config/VSCodium/User/keybindings.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Place your key bindings in this file to override the defaultsauto[]
|
||||
[
|
||||
{
|
||||
"key": "ctrl+shift+l",
|
||||
"command": "-dendron.lookupSchema",
|
||||
"when": "dendron:pluginActive && shellExecutionSupported"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+m ctrl+shift+l",
|
||||
"command": "md-shortcut.toggleImage",
|
||||
"when": "editorTextFocus && markdownShortcuts:enabled"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+l",
|
||||
"command": "-md-shortcut.toggleImage",
|
||||
"when": "editorTextFocus && markdownShortcuts:enabled"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+m ctrl+l",
|
||||
"command": "md-shortcut.toggleLink"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+[Semicolon]",
|
||||
"command": "workbench.action.terminal.new"
|
||||
}
|
||||
]
|
38
codium/.config/VSCodium/User/settings.json
Normal file
38
codium/.config/VSCodium/User/settings.json
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"extensions.autoUpdate": false,
|
||||
"workbench.colorTheme": "Monokai",
|
||||
"editor.minimap.enabled": false,
|
||||
"editor.fontSize": 18,
|
||||
"zenMode.hideLineNumbers": false,
|
||||
"breadcrumbs.enabled": false,
|
||||
"workbench.iconTheme": "material-icon-theme",
|
||||
"workbench.colorCustomizations": {
|
||||
"[Material Theme Ocean High Contrast]": {
|
||||
"activityBarBadge.background": "#80CBC4",
|
||||
"activityBar.activeBorder": "#80CBC4",
|
||||
"list.activeSelectionForeground": "#80CBC4",
|
||||
"list.inactiveSelectionForeground": "#80CBC4",
|
||||
"list.highlightForeground": "#80CBC4",
|
||||
"scrollbarSlider.activeBackground": "#80CBC450",
|
||||
"editorSuggestWidget.highlightForeground": "#80CBC4",
|
||||
"textLink.foreground": "#80CBC4",
|
||||
"progressBar.background": "#80CBC4",
|
||||
"pickerGroup.foreground": "#80CBC4",
|
||||
"tab.activeBorder": "#80CBC4",
|
||||
"notificationLink.foreground": "#80CBC4",
|
||||
"editorWidget.resizeBorder": "#80CBC4",
|
||||
"editorWidget.border": "#80CBC4",
|
||||
"settings.modifiedItemIndicator": "#80CBC4",
|
||||
"settings.headerForeground": "#80CBC4",
|
||||
"panelTitle.activeBorder": "#80CBC4",
|
||||
"breadcrumb.activeSelectionForeground": "#80CBC4",
|
||||
"menu.selectionForeground": "#80CBC4",
|
||||
"menubar.selectionForeground": "#80CBC4",
|
||||
"editor.findMatchBorder": "#80CBC4",
|
||||
"selection.background": "#80CBC440",
|
||||
"statusBarItem.remoteBackground": "#80CBC4"
|
||||
}
|
||||
},
|
||||
"materialTheme.accent": "Teal",
|
||||
"workbench.statusBar.visible": false
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Partizione "Data"
|
||||
rsync -av --exclude 'imm-disco' --exclude 'Immagini/temp' --exclude 'musica-altro' --exclude 'VMs' --delete /Data/ /media/luca/Linux-backup/Data/
|
||||
rsync -av --exclude 'imm-disco' --exclude 'Immagini/temp' --exclude 'musica-altro' --exclude 'VMs' --exclude 'SCGP/Immagini' --exclude 'telefono/download' --delete /Data/ /media/luca/Linux-backup/Data/
|
||||
|
||||
#rsync -av /Data/imm-disco/ /media/luca/Linux-backup/imm-disco/
|
||||
|
||||
|
|
1
rsync/rsync-Scheda-SD.sh
Normal file
1
rsync/rsync-Scheda-SD.sh
Normal file
|
@ -0,0 +1 @@
|
|||
rsync -av --delete --exclude ".thumbnails" /home/luca/Musica/ /media/luca/3335-3239/Music/
|
Loading…
Reference in a new issue