added after install and syncLocalSettings.json

This commit is contained in:
Rick van Lieshout 2022-08-03 21:59:52 +02:00
parent a1f57b67b8
commit ab3820fe8c
5 changed files with 64 additions and 1 deletions

View File

@ -10,6 +10,7 @@ and this project adheres to date versioning.
- Fixed i3lock re-using the last image - Fixed i3lock re-using the last image
- Set up /etc/environment sharing - Set up /etc/environment sharing
- Added in greenclip again - Added in greenclip again
- added after install and syncLocalSettings.json
## [2022-07-26] ## [2022-07-26]

View File

@ -25,7 +25,7 @@ Older versions:
| OS | Arch Linux | | OS | Arch Linux |
| Terminal | xfce4-terminal | | Terminal | xfce4-terminal |
| Editor | nano | | Editor | nano |
| Code editor | vscode / jetbrains stuff | | Code editor | vscode |
| Browser | Firefox | | Browser | Firefox |
| File manager | If I have to use one ... Nautilus | | File manager | If I have to use one ... Nautilus |
| Music | Tidal through [Tidal-hifi](https://github.com/Mastermindzh/tidal-hifi) | | Music | Tidal through [Tidal-hifi](https://github.com/Mastermindzh/tidal-hifi) |
@ -49,3 +49,7 @@ Some things are handled by window class/title or have custom resolutions set, th
## getting icons ## getting icons
Copy/paste icons from this url: [https://fontawesome.com/v5/cheatsheet](https://fontawesome.com/v5/cheatsheet) Copy/paste icons from this url: [https://fontawesome.com/v5/cheatsheet](https://fontawesome.com/v5/cheatsheet)
## after-install
After install read [./docs/afterinstall.md](./docs/afterinstall.md)

View File

@ -0,0 +1,35 @@
{
"ignoreUploadFiles": [
"state.*",
"syncLocalSettings.json",
".DS_Store",
"sync.lock",
"projects.json",
"projects_cache_vscode.json",
"projects_cache_git.json",
"projects_cache_svn.json",
"gpm_projects.json",
"gpm-recentItems.json"
],
"ignoreUploadFolders": [
"workspaceStorage",
"History",
"globalStorage",
"GlobalStorage"
],
"ignoreExtensions": [],
"gistDescription": "Visual Studio Code Settings Sync Gist",
"downloadPublicGist": false,
"supportedFileExtensions": [
"json",
"code-snippets"
],
"openTokenLink": true,
"disableUpdateMessage": false,
"githubEnterpriseUrl": null,
"askGistDescription": false,
"customFiles": {},
"hostName": null,
"universalKeybindings": false,
"autoUploadDelay": 20
}

20
docs/afterinstall.md Normal file
View File

@ -0,0 +1,20 @@
# after install
<!-- toc -->
- [Set up vscode settings sync + globalstorage](#set-up-vscode-settings-sync--globalstorage)
<!-- tocstop -->
## Set up vscode settings sync + globalstorage
After setting up settings sync make sure that the "ignoreUploadFolders" in [~/.config/Code/User/syncLocalSettings.json](~/.config/Code/User/syncLocalSettings.json) includes "globalstorages":
```sh
"ignoreUploadFolders": [
"workspaceStorage",
"History",
"globalStorage",
"GlobalStorage"
],
```

View File

@ -117,6 +117,9 @@ function install_config {
echo "" >~/.custom echo "" >~/.custom
echo "" >~/.variables echo "" >~/.variables
# files to be copied once
cp "$PWD"/config/code/syncLocalSettings.json ~/.config/Code/User/
# system fixes # system fixes
echo fs.inotify.max_user_watches=524288 | sudo tee /etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system echo fs.inotify.max_user_watches=524288 | sudo tee /etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system
mkdir -p ~/Pictures/Screenshots mkdir -p ~/Pictures/Screenshots