aboutsummaryrefslogtreecommitdiff
path: root/manjaro-startup.md
diff options
context:
space:
mode:
authorHumphrey Lin <[email protected]>2020-11-30 10:48:19 +0000
committerHumphrey Lin <[email protected]>2020-11-30 10:48:19 +0000
commit06d6429e795777effa4a2fb5f3b3c71445f3d135 (patch)
treea6238d966be89dc2d155cc9ae20f9ba70f4a8d40 /manjaro-startup.md
parent6c0e55563b7ae36b8d3b5fa81d731cbcf9db4312 (diff)
downloaddotfiles-06d6429e795777effa4a2fb5f3b3c71445f3d135.tar.gz
dotfiles-06d6429e795777effa4a2fb5f3b3c71445f3d135.tar.bz2
dotfiles-06d6429e795777effa4a2fb5f3b3c71445f3d135.zip
Add a setup documents for manjaro
Diffstat (limited to 'manjaro-startup.md')
-rw-r--r--manjaro-startup.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/manjaro-startup.md b/manjaro-startup.md
new file mode 100644
index 0000000..59d9024
--- /dev/null
+++ b/manjaro-startup.md
@@ -0,0 +1,36 @@
+# Manjaro Startup Notes
+
+Update software: `sudo pacman -Syu` #TODO: What is it different from `sudo pacman -Syyu`
+
+Install some useful software:
+
+```bash
+sudo pacman -S yay
+yay -S google-chrome
+```
+
+## Natural Scrolling
+
+Open the `/etc/X11/xorg.conf.d/30-touchpad.conf` file, then add the natural scrolling option:
+
+```
+Section "InputClass"
+ ...
+ Option "Natural Scrolling" "true"
+ ...
+EndSection
+```
+
+## (China Specific) Install Proxy
+
+Use the command `sudo pacman -S ss-qt5`. In I3WM, it is difficult to set global proxy. It would be better to use SwitchyOmega in Chrome. First use `google-chrome-stable --proxy-server="<proxy_address>"` to launch chrome and download SwitchyOmega then use chrome as usual.
+
+## (China Specific) Install input sources
+
+Install fcitx first: `sudo pacman -S fcitx-im fcitx-configtool fcitx-googlepinyin`. Then add the following content to `~/.xprofile`.
+
+```
+export GTK_IM_MODULE=fcitx
+export QT_IM_MODULE=fcitx
+export XMODIFIERS="@im=fcitx"
+```