You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Desktop settings
|
|
|
|
### My desktop configuration repository
|
|
|
|
|
|
|
|
## Structure
|
|
|
|
```text
|
|
|
|
desktop-settings
|
|
|
|
|- home
|
|
|
|
| |- skel
|
|
|
|
| |- desktop.dconf
|
|
|
|
| \- setup.sh
|
|
|
|
|- packages
|
|
|
|
| |- hf-firefox-config
|
|
|
|
| |- hf-meta-build
|
|
|
|
| |- hf-meta-cli
|
|
|
|
| |- hf-meta-full
|
|
|
|
| |- hf-meta-gnome
|
|
|
|
| |- hf-meta-gui
|
|
|
|
| |- hf-meta-i3
|
|
|
|
| |- hackfront.gpg
|
|
|
|
| \- install-repo.sh
|
|
|
|
\- firefox-config.js
|
|
|
|
```
|
|
|
|
|
|
|
|
## Installation (system-wide stuff)
|
|
|
|
- Add GPG key to pacman
|
|
|
|
```bash
|
|
|
|
wget -O hackfront.gpg https://cdn.hackfront.eu/archlinux/hackfront.gpg
|
|
|
|
/usr/bin/pacman-key --add ./hackfront.gpg
|
|
|
|
/usr/bin/pacman-key --lsign-key 266614324C8C25EF7895A08357FB8942702CAF60
|
|
|
|
```
|
|
|
|
- Add repository to `/etc/pacman.conf`
|
|
|
|
```text
|
|
|
|
...
|
|
|
|
|
|
|
|
[hackfront]
|
|
|
|
Server = https://cdn.hackfront.eu/archlinux/$repo/os/$arch
|
|
|
|
```
|
|
|
|
- Sync repository database
|
|
|
|
```bash
|
|
|
|
sudo pacman -Syu
|
|
|
|
```
|
|
|
|
- Install full meta-package
|
|
|
|
```bash
|
|
|
|
sudo pacman -S hf-meta-full
|
|
|
|
```
|