From 8033039e9c7a96c2425697ad739e3297b396961f Mon Sep 17 00:00:00 2001 From: patsy Date: Tue, 23 Jun 2026 21:56:02 +0200 Subject: [PATCH] first completed vault trasfer one sided completed --- VS_code_tips.md | 15 +++++++++++++++ index.md | 8 ++++++++ locale_and_system_language.md | 18 ++++++++++++++++++ systemd_services.md | 9 +++++++++ vs code tips.md | 6 ------ 5 files changed, 50 insertions(+), 6 deletions(-) create mode 100644 VS_code_tips.md create mode 100644 index.md create mode 100644 locale_and_system_language.md create mode 100644 systemd_services.md delete mode 100644 vs code tips.md diff --git a/VS_code_tips.md b/VS_code_tips.md new file mode 100644 index 0000000..94b529b --- /dev/null +++ b/VS_code_tips.md @@ -0,0 +1,15 @@ +# VS Code Tips + +## Workspaces +- A workspace saves multiple folders open together in one window +- File → Add Folder to Workspace → add as many as needed +- File → Save Workspace As → saves as `.code-workspace` file +- Double-click the `.code-workspace` file to restore everything +- Useful when you constantly switch between project and notes + +# VS Code on EndeavourOS + +## Installation +- Do NOT use `code` from pacman — open-source rebuild, known stability issues +- Use AUR version: `yay -S visual-studio-code-bin` +- This is the official Microsoft binary — stable and feature-complete \ No newline at end of file diff --git a/index.md b/index.md new file mode 100644 index 0000000..11a8f3f --- /dev/null +++ b/index.md @@ -0,0 +1,8 @@ +# Knowledge Vault + +## Index +- [systemd & services](systemd_services.md) +- [Locale & System Language](locale_and_system_language.md) +- [ssh_keys_and_agent](ssh_keys_and_agent.md) - SSH keypair setup, config, agent, Forgejo auth +- [VS Code Tips and Guide](VS_code_tips.md) +- [git_basics](git_basics.md) — git push syntax, remote vs branch diff --git a/locale_and_system_language.md b/locale_and_system_language.md new file mode 100644 index 0000000..4288203 --- /dev/null +++ b/locale_and_system_language.md @@ -0,0 +1,18 @@ +# Locale & System Language + +## Concepts +- `locale` = all country/language settings (text, numbers, time, currency, sorting) +- Each `LC_*` variable controls one aspect — they can be mixed independently +- `LC_MESSAGES` = language the OS uses to talk to you +- `LC_COLLATE` = sort order (e.g. ß = ss in German) +- Settings live in `/etc/locale.conf` but KDE overrides this via System Settings + +## On EndeavourOS + KDE +- Set locale in: System Settings → Region & Language +- KDE has two sections: Language (text) and Formats (numbers/time/currency) — set them independently +- `/etc/locale.gen` — uncomment locales you need, then run `sudo locale-gen` +- Diagnose: `locale` shows current settings, `locale -a` shows what's installed + +## Useful commands +- `man 7 locale` — full explanation of all LC_* variables +- Search inside man: `/SEARCHTERM` then `n` for next match \ No newline at end of file diff --git a/systemd_services.md b/systemd_services.md new file mode 100644 index 0000000..69791a4 --- /dev/null +++ b/systemd_services.md @@ -0,0 +1,9 @@ +# systemd Services + +## Service doesn't start on boot +**Symptom:** works after `systemctl restart ` but not after reboot +**Diagnose:** `systemctl is-enabled ` +**Result:** `disabled` = never told to autostart +**Fix:** `sudo systemctl enable ` + +**Example:** bluetooth on EndeavourOS \ No newline at end of file diff --git a/vs code tips.md b/vs code tips.md deleted file mode 100644 index 7cda6e1..0000000 --- a/vs code tips.md +++ /dev/null @@ -1,6 +0,0 @@ -# VS Code on EndeavourOS - -## Installation -- Do NOT use `code` from pacman — open-source rebuild, known stability issues -- Use AUR version: `yay -S visual-studio-code-bin` -- This is the official Microsoft binary — stable and feature-complete \ No newline at end of file