mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-21 14:23:32 +01:00
added after install and syncLocalSettings.json
This commit is contained in:
parent
a1f57b67b8
commit
ab3820fe8c
@ -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]
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
35
config/code/syncLocalSettings.json
Normal file
35
config/code/syncLocalSettings.json
Normal 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
20
docs/afterinstall.md
Normal 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"
|
||||||
|
],
|
||||||
|
```
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user