12021-07-05
昨日(12021年7月5日)の日記です。 天気は、晴れ。 蒸し暑くなってきました。 電波は普通。 高専Wi-Fiは使い物になりません。
Arch Linux
自分のArch Linuxでしたことを記録します。
Konsole
Alacrittyを最初に使っていたのですが、 日本語のインライン入力ができないので、 代わりにKonsoleを落としました。
$ sudo pacman -S konsole
Visual Studio Code
Visual Studio Codeをインストールしました。
$ sudo pacman -S code
しかし、code
はOSSなので、
完全な機能を有していないため、
入れ直しました。
$ sudo pacman -Rs code $ yay -S visual-studio-code-bin
スクリーンショット
しのなぎさんイチオシのスクリーンショットソフトウェア!
$ sudo pacman -S flameshot
GitHubでssh認証
$ mkdir .ssh $ cd ~/.ssh $ ssh-keygen -t ed25519 -P "" -f id_25519_github.pem -C "myname" $ vim config
Host github github.com HostName github.com IdentityFile ~/.ssh/id_25519_github.pem User git
これでgit cloneできるようになりました!わーい!