mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
rename base package; create font package
This commit is contained in:
parent
d649d0bd61
commit
fdb315d437
@ -1,10 +1,10 @@
|
||||
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
||||
_pkgname=base-efi
|
||||
_pkgname=base
|
||||
_reponame=arch
|
||||
pkgname="de-p1st-$_pkgname"
|
||||
pkgver=0.1.7
|
||||
pkgver=0.1.8
|
||||
pkgrel=1
|
||||
pkgdesc="base packages for headless Arch installation"
|
||||
pkgdesc="base packages for headless Arch installation on EFI system"
|
||||
arch=('any')
|
||||
url="https://codeberg.org/privacy1st/${_reponame}"
|
||||
license=('MIT')
|
||||
@ -45,7 +45,7 @@ depends+=('de-p1st-gnupg')
|
||||
# task manager
|
||||
depends+=('htop')
|
||||
# fonts
|
||||
depends+=('noto-fonts' 'ttf-material-design-icons-git' 'ttf-unifont')
|
||||
depends+=('de-p1st-font')
|
||||
|
||||
# other
|
||||
# depends+=('usbutils')
|
11
pkg/de-p1st-font/PKGBUILD
Normal file
11
pkg/de-p1st-font/PKGBUILD
Normal file
@ -0,0 +1,11 @@
|
||||
# Maintainer: Daniel Langbein <daniel@systemli.org>
|
||||
_pkgname=font
|
||||
_reponame=arch
|
||||
pkgname="de-p1st-$_pkgname"
|
||||
pkgver=0.0.1
|
||||
pkgrel=1
|
||||
pkgdesc="fonts"
|
||||
arch=('any')
|
||||
url="https://codeberg.org/privacy1st/${_reponame}"
|
||||
license=('MIT')
|
||||
depends=('noto-fonts' 'ttf-material-design-icons-git' 'ttf-unifont')
|
66
pkg/de-p1st-font/README.md
Normal file
66
pkg/de-p1st-font/README.md
Normal file
@ -0,0 +1,66 @@
|
||||
# fonts
|
||||
|
||||
For font configuration, see: [archwiki#font-config](https://wiki.archlinux.org/index.php/Font_configuration)
|
||||
|
||||
|
||||
## types of fonts
|
||||
|
||||
Outline formats
|
||||
|
||||
* TrueType by Apple and Microsoft (file extension: `ttf`)
|
||||
* OpenType by Microsoft, built on TrueType (file extensions: `otf`, `ttf`)
|
||||
|
||||
## installed fonts
|
||||
|
||||
[https://wiki.archlinux.org/index.php/Fonts#Tips_and_tricks](https://wiki.archlinux.org/index.php/Fonts#Tips_and_tricks)
|
||||
|
||||
List all fonts:
|
||||
|
||||
```
|
||||
fc-list
|
||||
```
|
||||
|
||||
To search for monospace fonts supporting a particular Unicode codepoint:
|
||||
|
||||
```
|
||||
fc-match -s monospace:charset=1F4A9
|
||||
```
|
||||
|
||||
## Font packages
|
||||
|
||||
[archwiki](https://wiki.archlinux.org/index.php/Fonts#Font_packages)
|
||||
|
||||
Install fonts with _Unicode_ keyword.
|
||||
|
||||
## installation
|
||||
|
||||
|
||||
```
|
||||
sudo pacman -S --needed noto-fonts
|
||||
```
|
||||
|
||||
```
|
||||
aur sync -c ttf-google-fonts-git
|
||||
```
|
||||
|
||||
```
|
||||
aur sync -c ttf-ms-fonts
|
||||
```
|
||||
|
||||
* https://typeof.net/Iosevka/
|
||||
|
||||
```
|
||||
aur sync -c ttf-iosevka
|
||||
```
|
||||
|
||||
```
|
||||
aur sync -c ttf-iosevka-term
|
||||
```
|
||||
|
||||
## emoji font
|
||||
|
||||
* https://wiki.archlinux.org/index.php/Fonts#Emoji_and_symbols
|
||||
|
||||
```
|
||||
sudo pacman -S --needed noto-fonts-emoji
|
||||
```
|
Loading…
Reference in New Issue
Block a user