vault backup: 2023-07-17 17:13:58

This commit is contained in:
lenovo_slim
2023-07-17 17:13:58 -07:00
parent 3b0f26839d
commit 1d78ecc175
3 changed files with 99 additions and 5 deletions

6
.obsidian/app.json vendored
View File

@@ -1 +1,5 @@
{}
{
"newFileLocation": "folder",
"newFileFolderPath": "Tenmado",
"attachmentFolderPath": "Files"
}

View File

@@ -14,8 +14,33 @@
"type": "empty",
"state": {}
}
},
{
"id": "657edfc05cc08cd7",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "README.md",
"mode": "source",
"source": false
}
}
},
{
"id": "a072d1b7e91691d6",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Tenmado/Linux - Desktop Entries.md",
"mode": "source",
"source": false
}
}
}
]
],
"currentTab": 2
}
],
"direction": "vertical"
@@ -81,6 +106,7 @@
"state": {
"type": "backlink",
"state": {
"file": "Tenmado/Linux - Desktop Entries.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -97,6 +123,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "Tenmado/Linux - Desktop Entries.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
@@ -118,7 +145,9 @@
"type": "leaf",
"state": {
"type": "outline",
"state": {}
"state": {
"file": "Tenmado/Linux - Desktop Entries.md"
}
}
},
{
@@ -146,6 +175,14 @@
"command-palette:Open command palette": false
}
},
"active": "03f88f218a42dcc6",
"lastOpenFiles": []
"active": "a072d1b7e91691d6",
"lastOpenFiles": [
"Tenmado/Linux - Desktop Entries 1.md",
"Tenmado/Linux - Desktop Entries.md",
"README.md",
"Refence Notes",
"Templates",
"Files",
"Tenmado"
]
}

View File

@@ -0,0 +1,53 @@
# Ubuntu Based Sytems
**.desktop files are store in:**
```bash
~/home/user/.local/share/applications
```
- All files needs to end with ***.desktop*** anything before the ***dot*** can be anything
- Files can be edited with **nano** or any other editor
Follow the following example to create **entries** when using **AppImages**:
```bash
[Desktop Entry]
Type=Application
Name=Application_Name
Comment=Same_as_application_name
Icon=Icon_location_full_path
Exec=AppImage_location_full_path
Terminal=false
Categories=Internet,Utilities,etc #it can be any of these or other options
```
**to unzip AppImages:*
```bash
```
# Apt package manager, well maintained apps
**exa:** A 'ls' replacement, it can show awesome icons as well, ***note: a nerdfont needs to be installed***
**installation:**
```bash
sudo apt install exa
```
__caffeine:__ Prevent screen from going to sleep
**installation:**
```bash
sudo apt install caffeine
```
**wireguard:**
```bash
sudo dnf install wireguard-tools # same package might work on other distros
```
create ***.conf*** file and place it in > ***/etc/wireguard/name.conf***
**cheat sheet:**
```bash
wg-quick up name #you only need the name of the .conf file!
wg-quick down name
```