Work memo with Manjaro i3 in TECLAST X4.
I put a mouseless window manager in the X4, which is supposed to be 2-in-1 on the touch screen, and I am straying.
――Preparing an environment where you can write with Manjaro, I just wanted to try it
--TECLAST X4 11.6 inches --USB flash memory 8GB
It is a tablet PC with a delicate weight to carry around.
--Manjaro i3, worked --Tiling type likes! --You can now access GitHub, watch Twitter, and post on Qiita.
--Transparent with Picom! Wanted to try --Neither tmux nor Vim even hit the rc file --I put VSCode, but just put it and settings.json/keybindings.json remains as it is
ESC
key when the boot logo is displayed.--For Mod, Win key
#Searching for a nearby repository (fasttrack takes a long time for a total scan, so
$ sudo pacman-mirrors --geoip
$ sudo pacman -Syu
#If it is already included, it will be treated as a reinstall
$ sudo pacman -S gvim git zsh
#This is also just in case
$ sudo pacman -S ntp
$ timedatectrl status
$ sudo timedatectrl set-ntp true
$ yay -S google-chrome
$ yay -S visual-studio-code-bin
#Backup tool
$ yay -S timeshift
* Timeshift from dmenu-Initial setting with launcher
$ zsh
$ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
$ setopt EXTENDED_GLOB
for rcfile in "${ZDOTDIR:-$HOME}"/.zprezto/runcoms/^README.md(.N); do
ln -s "$rcfile" "${ZDOTDIR:-$HOME}/.${rcfile:t}"
done
$ chsh -s /usr/bin/zsh
Reference: https://dev.classmethod.jp/articles/zsh-prezto/
$ sudo pacman -S fcitx-im fcitx-configtool fcitx-mozc fcitx-gtk2 fcitx-gtk3 fcitx-qt5
~/.xprofile
# Key repeat
xset r rate 200 30 (key repeat)
# ctrl/Replace caps
setxkbmap -option "ctrl:nocaps"
# Japanese input method
export LANG="ja_JP.UTF-8"
export XMODIFIERS="@im=fcitx"
export XMODIFIER="@im=fcitx"
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export DefaultIMModule=fcitx
~/.i3/config
# Autostart applications
exec --no-startup-id fcitx
$ sudo pacman -S adobe-source-han-sans-jp-fonts
$ sudo pacman -S noto-fonts-emoji
/usr/bin/start_conky_maia
#!/bin/bash
LC_ALL=C conky -c /usr/share/conky/conky1.10_shortcuts_maia &&
LC_ALL=C conky -c /usr/share/conky/conky_maia &&
exit 0
$ yay -S tlp powertop
$ sudo tlp start
$ nitrogen
~/.i3/config
#############################
## user settings ##
#############################
#Japanese input
exec --no-startup-id fcitx
# Alt +To bind window close with F4
bindsym Mod1+F4 kill
#Shortcut key to start the browser
bindsym $mod+Shift+Return exec google-chrome-stable
#Change focus target movement to match vim
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
#Moving the focused window itself
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
#Specifying the direction to divide
bindsym $mod+backslash split h;exec notify-send 'tile horizontally'
bindsym $mod+minus split v;exec notify-send 'tile vertically'
bindsym $mod+Ctrl+Shift+h exec xdg-open /usr/share/doc/manjaro/i3_help.pdf
The mouselessness has been achieved brilliantly and the touch screen is not utilized! Consider the opportunity to touch somehow! In any case, it's been a long time since I tried the work and Qiita, but it was good as a change of mood because it was the end of the year.
Recommended Posts