Update CROS_INSTALL.md

This commit is contained in:
Syahrial Agni Prasetya 2021-05-10 14:19:52 +07:00 committed by GitHub
parent 81b7d54ae6
commit 8a5cacf3a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,8 +12,28 @@ source ~/.bashrc
Just follow [INSTALL.md](INSTALL.md) but with :
1. Now that `/usr/local` is owned by you, it's better to set `INSTALL_PATH` to somewhere in `/usr/local` in `archbox.conf`, for example `/usr/local/archbox`
2. Remove `/home` from `SHARED_FOLDER` in `archbox.conf`
Then add :
```sh
[[ $DBUS_SESSION_BUS_ADDRESS = "disabled:" ]] && eval "$(dbus-launch)"
```
to `~/.bashrc` in Archbox
## Miscs
### Init Archbox Automatically
Add `archbox -m` to `~/.bashrc`.
Add `archbox -m` to `~/.bashrc` in host.
### Uniform look with ChromeOS
Install [`cros-adapta-gtk-theme`](https://aur.archlinux.org/packages/cros-adapta-gtk-theme/) from AUR and set it with `lxappearance` and `dconf-editor`.
Install [`cros-adapta-gtk-theme`](https://aur.archlinux.org/packages/cros-adapta-gtk-theme/), `ttf-roboto`, and `papirus-icon-theme` and use it with :
```sh
gsettings set org.gnome.desktop.interface gtk-theme "cros-adapta"
gsettings set org.gnome.desktop.interface icon-theme "Papirus"
gsettings set org.gnome.desktop.interface font-name "Roboto 10"
```
For GTK2 apps, use `lxappearance` and for QT5 apps, use `qt5ct`
## Issues
Things that depends on `dbus` may broke if you execute it directly, e.g. :
```
archbox dconf-editor
```
You'll need to enter the shell to use it.