From 1d78ecc175c02db1009370907888441d57093e57 Mon Sep 17 00:00:00 2001 From: lenovo_slim Date: Mon, 17 Jul 2023 17:13:58 -0700 Subject: [PATCH] vault backup: 2023-07-17 17:13:58 --- .obsidian/app.json | 6 +++- .obsidian/workspace.json | 45 ++++++++++++++++++++++--- Tenmado/Linux - Desktop Entries.md | 53 ++++++++++++++++++++++++++++++ 3 files changed, 99 insertions(+), 5 deletions(-) create mode 100644 Tenmado/Linux - Desktop Entries.md diff --git a/.obsidian/app.json b/.obsidian/app.json index 9e26dfe..6f018b3 100644 --- a/.obsidian/app.json +++ b/.obsidian/app.json @@ -1 +1,5 @@ -{} \ No newline at end of file +{ + "newFileLocation": "folder", + "newFileFolderPath": "Tenmado", + "attachmentFolderPath": "Files" +} \ No newline at end of file diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index 14b4033..40e1685 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -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" + ] } \ No newline at end of file diff --git a/Tenmado/Linux - Desktop Entries.md b/Tenmado/Linux - Desktop Entries.md new file mode 100644 index 0000000..1f82773 --- /dev/null +++ b/Tenmado/Linux - Desktop Entries.md @@ -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 + + +```