vault backup: 2023-07-30 00:49:41
This commit is contained in:
8
.obsidian/app.json
vendored
8
.obsidian/app.json
vendored
@@ -1,5 +1,11 @@
|
|||||||
{
|
{
|
||||||
"newFileLocation": "folder",
|
"newFileLocation": "folder",
|
||||||
"newFileFolderPath": "Tenmado",
|
"newFileFolderPath": "Tenmado",
|
||||||
"attachmentFolderPath": "Files"
|
"attachmentFolderPath": "Files",
|
||||||
|
"pdfExportSettings": {
|
||||||
|
"pageSize": "Letter",
|
||||||
|
"landscape": false,
|
||||||
|
"margin": "0",
|
||||||
|
"downscalePercent": 100
|
||||||
|
}
|
||||||
}
|
}
|
||||||
3
.obsidian/appearance.json
vendored
3
.obsidian/appearance.json
vendored
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
"accentColor": "",
|
"accentColor": "",
|
||||||
"cssTheme": "Atom"
|
"cssTheme": "Atom",
|
||||||
|
"baseFontSize": 15
|
||||||
}
|
}
|
||||||
32
.obsidian/workspace.json
vendored
32
.obsidian/workspace.json
vendored
@@ -41,14 +41,26 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Tenmado/Git.md",
|
"file": "Tenmado/Linux - Desktop Entries.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "854472b104f6e806",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "Tenmado/Docker Compose.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"currentTab": 3
|
"currentTab": 4
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "vertical"
|
"direction": "vertical"
|
||||||
@@ -114,7 +126,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Tenmado/Git.md",
|
"file": "Tenmado/Docker Compose.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
@@ -131,7 +143,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "outgoing-link",
|
"type": "outgoing-link",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Tenmado/Git.md",
|
"file": "Tenmado/Docker Compose.md",
|
||||||
"linksCollapsed": false,
|
"linksCollapsed": false,
|
||||||
"unlinkedCollapsed": true
|
"unlinkedCollapsed": true
|
||||||
}
|
}
|
||||||
@@ -154,7 +166,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Tenmado/Git.md"
|
"file": "Tenmado/Docker Compose.md"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -183,13 +195,15 @@
|
|||||||
"command-palette:Open command palette": false
|
"command-palette:Open command palette": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"active": "9f432a9bce2719b4",
|
"active": "854472b104f6e806",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"Tenmado/Git.md",
|
|
||||||
"Git",
|
|
||||||
"Tenmado/Dotfiles.md",
|
"Tenmado/Dotfiles.md",
|
||||||
"Tenmado/Linux - Desktop Entries 1.md",
|
"Tenmado/Docker Compose.md",
|
||||||
|
"Tenmado/Git.md",
|
||||||
"Tenmado/Linux - Desktop Entries.md",
|
"Tenmado/Linux - Desktop Entries.md",
|
||||||
|
"Tenmado/Linux - Games Live Streaming.md",
|
||||||
|
"Git",
|
||||||
|
"Tenmado/Linux - Desktop Entries 1.md",
|
||||||
"README.md",
|
"README.md",
|
||||||
"Refence Notes",
|
"Refence Notes",
|
||||||
"Templates",
|
"Templates",
|
||||||
|
|||||||
@@ -51,3 +51,31 @@ services:
|
|||||||
start_period: 40s
|
start_period: 40s
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#Public/Notta
|
||||||
|
## Caddy
|
||||||
|
|
||||||
|
#Public/Notta
|
||||||
|
## Syncthing
|
||||||
|
```bash
|
||||||
|
---
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
syncthing:
|
||||||
|
image: lscr.io/linuxserver/syncthing:latest
|
||||||
|
container_name: syncthing
|
||||||
|
hostname: syncthing
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ="America/Los_Angeles"
|
||||||
|
volumes:
|
||||||
|
- /path/to/appdata/config:/config
|
||||||
|
- /path/to/data1:/data1
|
||||||
|
- /path/to/data2:/data2
|
||||||
|
ports:
|
||||||
|
- 8384:8384 # Web UI
|
||||||
|
- 22000:22000/tcp # TCP file transfers
|
||||||
|
- 22000:22000/udp # QUIC file transfers
|
||||||
|
- 21027:21027/udp # Receive local discovery broadcasts
|
||||||
|
restart: unless-stopped
|
||||||
|
```
|
||||||
|
|||||||
13
Tenmado/Linux - Games Live Streaming.md
Normal file
13
Tenmado/Linux - Games Live Streaming.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#Public/Notta
|
||||||
|
|
||||||
|
## Sunshine
|
||||||
|
**Sunshine** is the application that needs to be installed from the server side, **Moonlight** would be the app to use on **Clients**
|
||||||
|
|
||||||
|
> [!NOTE] Video tutorial location
|
||||||
|
> Follow steps on video located in *Global/Videos/Linux/Sunshine & Moonlight Set Up*
|
||||||
|
|
||||||
|
## Video-less set up
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user