Selaa lähdekoodia

Add Manjaro KDE page

HON95 3 vuotta sitten
vanhempi
commit
5c6dd54bfc
4 muutettua tiedostoa jossa 64 lisäystä ja 5 poistoa
  1. 3 2
      config/pc/applications.md
  2. 0 3
      config/pc/kubuntu.md
  3. 60 0
      config/pc/manjaro-kde.md
  4. 1 0
      index.md

+ 3 - 2
config/pc/applications.md

@@ -189,9 +189,10 @@ Note: Since Steam requires 32-bit (i386) variants of certain NVIDIA packages, an
 ### Config
 
 - Location:
-    - Linux: `~/.config/Code/User/settings.json`
+    - Linux (Ubuntu): `~/.config/Code/User/settings.json`
+    - Linux (Arch): `~/.config/Code - OSS/User/settings.json`
     - Windows: `%APPDATA%\Code\User\settings.json`
-- [Example](https://github.com/HON95/configs/blob/master/pc/vscode/settings.json).
+- [Example](https://github.com/HON95/configs/blob/master/vscode/settings.json).
 
 ## ZSH (personal) (Linux)
 

+ 0 - 3
config/pc/kubuntu.md

@@ -13,9 +13,6 @@ breadcrumbs:
 
 ## Installation
 
-1. (Bugfix) Disconnect all network interfaces.
-    - This will prevent an APT bug crashing the installer at the very end.
-    - This seems to be fixed in the latest version.
 1. Use the guided partitioner.
     - The manual installer is broken and can't create encrypted volumes.
 

+ 60 - 0
config/pc/manjaro-kde.md

@@ -0,0 +1,60 @@
+---
+title: Manjaro (KDE)
+breadcrumbs:
+- title: Configuration
+- title: PC
+---
+{% include header.md %}
+
+### Using
+{:.no_toc}
+
+- Manjaro 21.1 (KDE edition)
+
+## Installation
+
+Nothing special.
+
+## Setup
+
+1. Packages:
+    - Install upgrades: `sudo pacman -Syu`
+    - Install extra stuff: `sudo pacman -S curl vim nmap`
+1. Setup default editor:
+    - Create a new profile file: `/etc/profile.d/editor.sh`
+    - Set the editor: `export EDITOR=vim`
+    - Set the visual editor: `export VISUAL=vim`
+1. Setup sudo:
+    - Login as root to avoid locking yourself out: `sudo -i`
+    - Enter the sudo editor by running `visudo` and add passwordless sudo for the `wheel` group by setting `%wheel ALL=(ALL) NOPASSWD: ALL`.
+    - Remove the old wheel sudo config: `rm /etc/sudoers.d/10-installer`
+1. Make sure the correct graphics drivers are in use (e.g. the proprietary Nvidia driver).
+1. Fix the displays (positions, resolutions, refresh rates).
+1. Enable numlock on boot (search for it).
+1. Appearance:
+   - Change to the dark theme.
+   - Make all fonts 1 size smaller.
+1. Shortcuts:
+   - Disable web search keywords.
+1. Setup panels for all screens. Only show tasks for the current screen.
+1. Setup clipboard (avoid storing copied passwords and such):
+    - Open the clipboard settings from the taskbar.
+    - Select "ignore selection" to avoid copying when selecting text.
+    - Set the history size to 1 (effectively disabling the history).
+1. Setup firewall:
+    - Install IPTables: `sudo pacman -S iptables`
+    - Enable the IPTables services: `sudo systemctl enable iptables.service ip6tables.service`
+    - Download my IPTables script: `wget https://raw.githubusercontent.com/HON95/scripts/master/linux/iptables/iptables.sh -O /etc/iptables/config.sh`
+    - Make it executable: `chmod +x /etc/iptables/config.sh`
+    - Modify it.
+    - Run it: `/etc/iptables/config.sh`
+1. Firefox:
+    - Disable middle mouse paste by setting `middlemouse.paste` to false in `about:config`.
+    - Enable middle mouse "drag scrolling" by setting `general.autoScroll` to true in `about:config`.
+    - Disable external media keys by setting `media.hardwaremediakeys.enabled` to false in `about:config`.
+
+### Extra
+
+1. Install applications: See [PC Applications](/config/pc/applications/).
+
+{% include footer.md %}

+ 1 - 0
index.md

@@ -104,6 +104,7 @@ Random collection of config notes and miscellaneous stuff. _Technically not a wi
 ### PC
 
 - [Kubuntu](/config/pc/kubuntu/)
+- [Manjaro (KDE)](/config/pc/manjaro-kde/)
 - [Windows](/config/pc/windows/)
 - [PC Applications](/config/pc/applications/)