Install the following packages.
sudo apt install language-pack-ja fcitx-bin fcitx-mozcLog out, then log back in.
There should be a keyboard icon in the bottom right. Right click that icon and 'Configure.'
Install the following packages.
sudo apt install language-pack-ja fcitx-bin fcitx-mozcLog out, then log back in.
There should be a keyboard icon in the bottom right. Right click that icon and 'Configure.'
| #!/usr/bin/env bash | |
| wd="$PWD" | |
| while [[ ! -e "$wd/artisan" ]]; do | |
| if [[ "$wd" = "/" ]]; then | |
| printf "artisan command not found: searched until $wd\n" | |
| exit 1 | |
| fi | |
| wd=${wd%/*} |
Originally by this guy on reddit.