guix
This commit is contained in:
commit
db49f68312
638 changed files with 59743 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
current
|
34
channels.scm
Normal file
34
channels.scm
Normal file
|
@ -0,0 +1,34 @@
|
|||
(list (channel
|
||||
(name 'guix)
|
||||
(url "https://git.savannah.gnu.org/git/guix.git")
|
||||
(branch "master")
|
||||
(commit
|
||||
"710d9050524213a83e4ce9efe9765d7fbc233839")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"9edb3f66fd807b096b48283debdcddccfea34bad"
|
||||
(openpgp-fingerprint
|
||||
"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))
|
||||
(channel
|
||||
(name 'nonguix)
|
||||
(url "https://gitlab.com/nonguix/nonguix")
|
||||
(branch "master")
|
||||
(commit
|
||||
"e2aa9e56d4d1888bf51d7671a18d304750373f89")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
||||
(openpgp-fingerprint
|
||||
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
||||
(channel
|
||||
(name 'rosenthal)
|
||||
(url "https://codeberg.org/hako/rosenthal.git")
|
||||
(branch "trunk")
|
||||
(commit
|
||||
"129ca6fe164bf8b5a37357bab8c5229b611f1df2")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"7677db76330121a901604dfbad19077893865f35"
|
||||
(openpgp-fingerprint
|
||||
"13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7"))))
|
||||
)
|
14
home-config/.bash_profile
Normal file
14
home-config/.bash_profile
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Set up Guix Home profile
|
||||
if [ -f ~/.profile ]; then . ~/.profile; fi
|
||||
|
||||
# Honor per-interactive-shell startup file
|
||||
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
|
||||
|
||||
# Merge search-paths from multiple profiles, the order matters.
|
||||
eval "$(guix package --search-paths \
|
||||
-p $HOME/.config/guix/current \
|
||||
-p $HOME/.guix-profile \
|
||||
-p /run/current-system/profile)"
|
||||
|
||||
# Prepend setuid programs.
|
||||
export PATH=/run/setuid-programs:$PATH
|
24
home-config/.bashrc
Normal file
24
home-config/.bashrc
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Bash initialization for interactive non-login shells and
|
||||
# for remote shells (info "(bash) Bash Startup Files").
|
||||
|
||||
# Export 'SHELL' to child processes. Programs such as 'screen'
|
||||
# honor it and otherwise use /bin/sh.
|
||||
export SHELL
|
||||
|
||||
if [[ $- != *i* ]]
|
||||
then
|
||||
# We are being invoked from a non-interactive shell. If this
|
||||
# is an SSH session (as in "ssh host command"), source
|
||||
# /etc/profile so we get PATH and other essential variables.
|
||||
[[ -n "$SSH_CLIENT" ]] && source /etc/profile
|
||||
|
||||
# Don't do anything else.
|
||||
return
|
||||
fi
|
||||
|
||||
# Source the system-wide file.
|
||||
[ -f /etc/bashrc ] && source /etc/bashrc
|
||||
|
||||
alias ls='ls -p --color=auto'
|
||||
alias ll='ls -l'
|
||||
alias grep='grep --color=auto'
|
31
home-config/alacritty/alacritty.yml
Normal file
31
home-config/alacritty/alacritty.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Colorscheme
|
||||
import:
|
||||
- ~/.config/alacritty/catppuccin-mocha.yml
|
||||
|
||||
# Window settings
|
||||
window:
|
||||
opacity: .85
|
||||
padding:
|
||||
x: 5
|
||||
y: 5
|
||||
|
||||
# Set font
|
||||
font:
|
||||
normal:
|
||||
family: FiraCode Nerd Font Mono
|
||||
style: Regular
|
||||
bold:
|
||||
style: Bold
|
||||
italic:
|
||||
style: Italic
|
||||
bold_italic:
|
||||
style: Bold Italic
|
||||
size: 11
|
||||
offset:
|
||||
x: 0
|
||||
y: 0
|
||||
|
||||
colors:
|
||||
primary:
|
||||
background: '0x14171d'
|
||||
foreground: '0xc7c6c3'
|
78
home-config/alacritty/catppuccin-mocha.yml
Normal file
78
home-config/alacritty/catppuccin-mocha.yml
Normal file
|
@ -0,0 +1,78 @@
|
|||
colors:
|
||||
primary:
|
||||
background: "#1d1d2d" # base
|
||||
foreground: "#CDD6F4" # text
|
||||
# Bright and dim foreground colors
|
||||
dim_foreground: "#CDD6F4" # text
|
||||
bright_foreground: "#CDD6F4" # text
|
||||
|
||||
# Cursor colors
|
||||
cursor:
|
||||
text: "#1E1E2E" # base
|
||||
cursor: "#F5E0DC" # rosewater
|
||||
vi_mode_cursor:
|
||||
text: "#1E1E2E" # base
|
||||
cursor: "#B4BEFE" # lavender
|
||||
|
||||
# Search colors
|
||||
search:
|
||||
matches:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6ADC8" # subtext0
|
||||
focused_match:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6E3A1" # green
|
||||
footer_bar:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6ADC8" # subtext0
|
||||
|
||||
# Keyboard regex hints
|
||||
hints:
|
||||
start:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#F9E2AF" # yellow
|
||||
end:
|
||||
foreground: "#1E1E2E" # base
|
||||
background: "#A6ADC8" # subtext0
|
||||
|
||||
# Selection colors
|
||||
selection:
|
||||
text: "#1E1E2E" # base
|
||||
background: "#F5E0DC" # rosewater
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: "#45475A" # surface1
|
||||
red: "#F38BA8" # red
|
||||
green: "#A6E3A1" # green
|
||||
yellow: "#F9E2AF" # yellow
|
||||
blue: "#89B4FA" # blue
|
||||
magenta: "#F5C2E7" # pink
|
||||
cyan: "#94E2D5" # teal
|
||||
white: "#BAC2DE" # subtext1
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: "#585B70" # surface2
|
||||
red: "#F38BA8" # red
|
||||
green: "#A6E3A1" # green
|
||||
yellow: "#F9E2AF" # yellow
|
||||
blue: "#89B4FA" # blue
|
||||
magenta: "#F5C2E7" # pink
|
||||
cyan: "#94E2D5" # teal
|
||||
white: "#A6ADC8" # subtext0
|
||||
|
||||
# Dim colors
|
||||
dim:
|
||||
black: "#45475A" # surface1
|
||||
red: "#F38BA8" # red
|
||||
green: "#A6E3A1" # green
|
||||
yellow: "#F9E2AF" # yellow
|
||||
blue: "#89B4FA" # blue
|
||||
magenta: "#F5C2E7" # pink
|
||||
cyan: "#94E2D5" # teal
|
||||
white: "#BAC2DE" # subtext1
|
||||
|
||||
indexed_colors:
|
||||
- { index: 16, color: "#FAB387" }
|
||||
- { index: 17, color: "#F5E0DC" }
|
173
home-config/applications/thunderbird.desktop
Normal file
173
home-config/applications/thunderbird.desktop
Normal file
|
@ -0,0 +1,173 @@
|
|||
[Desktop Entry]
|
||||
Name=Thunderbird
|
||||
Comment=Send and receive mail with Thunderbird
|
||||
Comment[ast]=Lleer y escribir corréu electrónicu
|
||||
Comment[ca]=Llegiu i escriviu correu
|
||||
Comment[cs]=Čtení a psaní pošty
|
||||
Comment[da]=Skriv/læs e-post/nyhedsgruppe med Mozilla Thunderbird
|
||||
Comment[de]=E-Mails und Nachrichten mit Thunderbird lesen und schreiben
|
||||
Comment[el]=Διαβάστε και γράψτε γράμματα με το Mozilla Thunderbird
|
||||
Comment[es]=Lea y escriba correos y noticias con Thunderbird
|
||||
Comment[fi]=Lue ja kirjoita sähköposteja
|
||||
Comment[fr]=Lire et écrire des courriels
|
||||
Comment[gl]=Lea e escriba correo electrónico
|
||||
Comment[he]=קריאה/כתיבה של דוא״ל/חדשות באמצעות Mozilla Thunderbird
|
||||
Comment[hr]=Čitajte/šaljite e-poštu s Thunderbird
|
||||
Comment[hu]=Levelek írása és olvasása a Thunderbirddel
|
||||
Comment[it]=Per leggere e scrivere email
|
||||
Comment[ja]=メールの読み書き
|
||||
Comment[ko]=Mozilla Thunderbird 메일/뉴스 읽기 및 쓰기 클라이언트
|
||||
Comment[nl]=E-mail/nieuws lezen en schrijven met Mozilla Thunderbird
|
||||
Comment[pl]=Czytanie i wysyłanie e-maili
|
||||
Comment[pt_BR]=Leia e escreva suas mensagens
|
||||
Comment[ru]=Читайте и пишите письма
|
||||
Comment[sk]=Čítajte a píšte poštu pomocou programu Thunderbird
|
||||
Comment[sv]=Läs och skriv e-post
|
||||
Comment[ug]=ئېلخەت ۋە خەۋەرلەرنى Mozilla Thunderbird دا كۆرۈش ۋە يېزىش
|
||||
Comment[uk]=Читання та написання листів
|
||||
Comment[vi]=Đọc và soạn thư điện tử
|
||||
Comment[zh_CN]=阅读邮件或新闻
|
||||
Comment[zh_TW]=以 Mozilla Thunderbird 讀寫郵件或新聞
|
||||
GenericName=Mail Client
|
||||
GenericName[ast]=Client de correu
|
||||
GenericName[ca]=Client de correu
|
||||
GenericName[cs]=Poštovní klient
|
||||
GenericName[da]=E-postklient
|
||||
GenericName[de]=E-Mail-Anwendung
|
||||
GenericName[el]=Λογισμικό αλληλογραφίας
|
||||
GenericName[es]=Cliente de correo
|
||||
GenericName[fi]=Sähköpostiohjelma
|
||||
GenericName[fr]=Client de messagerie
|
||||
GenericName[gl]=Cliente de correo electrónico
|
||||
GenericName[he]=לקוח דוא״ל
|
||||
GenericName[hr]=Klijent e-pošte
|
||||
GenericName[hu]=Levelezőkliens
|
||||
GenericName[it]=Client email
|
||||
GenericName[ja]=電子メールクライアント
|
||||
GenericName[ko]=메일 클라이언트
|
||||
GenericName[nl]=E-mailprogramma
|
||||
GenericName[pl]=Klient poczty
|
||||
GenericName[pt_BR]=Cliente de E-mail
|
||||
GenericName[ru]=Почтовый клиент
|
||||
GenericName[sk]=Poštový klient
|
||||
GenericName[ug]=ئېلخەت دېتالى
|
||||
GenericName[uk]=Поштова програма
|
||||
GenericName[vi]=Phần mềm khách quản lý thư điện tử
|
||||
GenericName[zh_CN]=邮件新闻客户端
|
||||
GenericName[zh_TW]=郵件用戶端
|
||||
Exec=thunderbird %u
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=thunderbird
|
||||
Categories=Network;Email;
|
||||
MimeType=message/rfc822;x-scheme-handler/mailto;application/x-xpinstall;
|
||||
StartupNotify=true
|
||||
Actions=ComposeMessage;OpenAddressBook;
|
||||
|
||||
[Desktop Action ComposeMessage]
|
||||
Name=Write new message
|
||||
Name[ar]=اكتب رسالة جديدة
|
||||
Name[ast]=Redactar mensaxe nuevu
|
||||
Name[be]=Напісаць новы ліст
|
||||
Name[bg]=Съставяне на ново съобщение
|
||||
Name[br]=Skrivañ ur gemennadenn nevez
|
||||
Name[ca]=Escriu un missatge nou
|
||||
Name[cs]=Napsat novou zprávu
|
||||
Name[da]=Skriv en ny meddelelse
|
||||
Name[de]=Neue Nachricht verfassen
|
||||
Name[el]=Σύνταξη νέου μηνύματος
|
||||
Name[es_AR]=Escribir un nuevo mensaje
|
||||
Name[es_ES]=Redactar nuevo mensaje
|
||||
Name[et]=Kirjuta uus kiri
|
||||
Name[eu]=Idatzi mezu berria
|
||||
Name[fi]=Kirjoita uusi viesti
|
||||
Name[fr]=Rédiger un nouveau message
|
||||
Name[fy_NL]=Skriuw in nij berjocht
|
||||
Name[ga_IE]=Scríobh teachtaireacht nua
|
||||
Name[gd]=Sgrìobh teachdaireachd ùr
|
||||
Name[gl]=Escribir unha nova mensaxe
|
||||
Name[he]=כתיבת הודעה חדשה
|
||||
Name[hr]=Piši novu poruku
|
||||
Name[hu]=Új üzenet írása
|
||||
Name[hy_AM]=Գրել նոր նամակ
|
||||
Name[is]=SKrifa nýjan póst
|
||||
Name[it]=Scrivi nuovo messaggio
|
||||
Name[ja]=新しいメッセージを作成する
|
||||
Name[ko]=새 메시지 작성
|
||||
Name[lt]=Rašyti naują laišką
|
||||
Name[nb_NO]=Skriv ny melding
|
||||
Name[nl]=Nieuw bericht aanmaken
|
||||
Name[nn_NO]=Skriv ny melding
|
||||
Name[pl]=Nowa wiadomość
|
||||
Name[pt_BR]=Nova mensagem
|
||||
Name[pt_PT]=Escrever nova mensagem
|
||||
Name[rm]=Scriver in nov messadi
|
||||
Name[ro]=Scrie un mesaj nou
|
||||
Name[ru]=Создать новое сообщение
|
||||
Name[si]=නව ලිපියක් ලියන්න
|
||||
Name[sk]=Nová e-mailová správa
|
||||
Name[sl]=Sestavi novo sporočilo
|
||||
Name[sq]=Shkruani mesazh të ri
|
||||
Name[sr]=Писање нове поруке
|
||||
Name[sv_SE]=Skriv ett nytt meddelande
|
||||
Name[ta_LK]=புதிய செய்தியை எழுதுக
|
||||
Name[tr]=Yeni ileti yaz
|
||||
Name[uk]=Написати нового листа
|
||||
Name[vi]=Viết thư mới
|
||||
Name[zh_CN]=编写新消息
|
||||
Name[zh_TW]=寫一封新訊息
|
||||
Exec=/usr/bin/thunderbird -compose
|
||||
|
||||
[Desktop Action OpenAddressBook]
|
||||
Name=Open address book
|
||||
Name[ar]=افتح دفتر العناوين
|
||||
Name[ast]=Abrir llibreta de direiciones
|
||||
Name[be]=Адкрыць адрасную кнігу
|
||||
Name[bg]=Отваряне на адресник
|
||||
Name[br]=Digeriñ ur c'harned chomlec'hioù
|
||||
Name[ca]=Obre la llibreta d'adreces
|
||||
Name[cs]=Otevřít Adresář
|
||||
Name[da]=Åbn adressebog
|
||||
Name[de]=Adressbuch öffnen
|
||||
Name[el]=Άνοιγμα ευρετηρίου διευθύνσεων
|
||||
Name[es_AR]=Abrir libreta de direcciones
|
||||
Name[es_ES]=Abrir libreta de direcciones
|
||||
Name[et]=Ava aadressiraamat
|
||||
Name[eu]=Ireki helbide-liburua
|
||||
Name[fi]=Avaa osoitekirja
|
||||
Name[fr]=Ouvrir un carnet d'adresses
|
||||
Name[fy_NL]=Iepenje adresboek
|
||||
Name[ga_IE]=Oscail leabhar seoltaí
|
||||
Name[gd]=Fosgail leabhar-sheòlaidhean
|
||||
Name[gl]=Abrir a axenda de enderezos
|
||||
Name[he]=פתיחת ספר כתובות
|
||||
Name[hr]=Otvori adresar
|
||||
Name[hu]=Címjegyzék megnyitása
|
||||
Name[hy_AM]=Բացել Հասցեագիրքը
|
||||
Name[is]=Opna nafnaskrá
|
||||
Name[it]=Apri rubrica
|
||||
Name[ja]=アドレス帳を開く
|
||||
Name[ko]=주소록 열기
|
||||
Name[lt]=Atverti adresų knygą
|
||||
Name[nb_NO]=Åpne adressebok
|
||||
Name[nl]=Adresboek openen
|
||||
Name[nn_NO]=Opne adressebok
|
||||
Name[pl]=Książka adresowa
|
||||
Name[pt_BR]=Catálogo de endereços
|
||||
Name[pt_PT]=Abrir livro de endereços
|
||||
Name[rm]=Avrir il cudeschet d'adressas
|
||||
Name[ro]=Deschide agenda de contacte
|
||||
Name[ru]=Открыть адресную книгу
|
||||
Name[si]=ලිපින පොත විවෘත කරන්න
|
||||
Name[sk]=Otvoriť adresár
|
||||
Name[sl]=Odpri adressar
|
||||
Name[sq]=Hapni libër adresash
|
||||
Name[sr]=Отвори адресар
|
||||
Name[sv_SE]=Öppna adressboken
|
||||
Name[ta_LK]=முகவரி பத்தகத்தை திறக்க
|
||||
Name[tr]=Adres defterini aç
|
||||
Name[uk]=Відкрити адресну книгу
|
||||
Name[vi]=Mở sổ địa chỉ
|
||||
Name[zh_CN]=打开通讯录
|
||||
Name[zh_TW]=開啟通訊錄
|
||||
Exec=/usr/bin/thunderbird -addressbook
|
BIN
home-config/fonts/BrailleCc0-DOeDd.ttf
Executable file
BIN
home-config/fonts/BrailleCc0-DOeDd.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/FiraCodeNerdFontMono-Regular.ttf
Executable file
BIN
home-config/fonts/FiraCodeNerdFontMono-Regular.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/FiraMono-Bold.ttf
Normal file
BIN
home-config/fonts/FiraMono-Bold.ttf
Normal file
Binary file not shown.
BIN
home-config/fonts/FiraMono-Medium.ttf
Normal file
BIN
home-config/fonts/FiraMono-Medium.ttf
Normal file
Binary file not shown.
BIN
home-config/fonts/FiraMono-Regular.ttf
Normal file
BIN
home-config/fonts/FiraMono-Regular.ttf
Normal file
Binary file not shown.
BIN
home-config/fonts/fa-regular-400.ttf
Executable file
BIN
home-config/fonts/fa-regular-400.ttf
Executable file
Binary file not shown.
1
home-config/fonts/windows/.uuid
Normal file
1
home-config/fonts/windows/.uuid
Normal file
|
@ -0,0 +1 @@
|
|||
9b49157c-372f-47c1-b290-e492c2bcf108
|
BIN
home-config/fonts/windows/Candara.ttf
Executable file
BIN
home-config/fonts/windows/Candara.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/Candarab.ttf
Executable file
BIN
home-config/fonts/windows/Candarab.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/Candarai.ttf
Executable file
BIN
home-config/fonts/windows/Candarai.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/Candaral.ttf
Executable file
BIN
home-config/fonts/windows/Candaral.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/Candarali.ttf
Executable file
BIN
home-config/fonts/windows/Candarali.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/Candaraz.ttf
Executable file
BIN
home-config/fonts/windows/Candaraz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/CharisSIL-B.ttf
Executable file
BIN
home-config/fonts/windows/CharisSIL-B.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/CharisSIL-BI.ttf
Executable file
BIN
home-config/fonts/windows/CharisSIL-BI.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/CharisSIL-I.ttf
Executable file
BIN
home-config/fonts/windows/CharisSIL-I.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/CharisSIL-R.ttf
Executable file
BIN
home-config/fonts/windows/CharisSIL-R.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/FSEX300.ttf
Executable file
BIN
home-config/fonts/windows/FSEX300.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/arial.ttf
Executable file
BIN
home-config/fonts/windows/arial.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/arialbd.ttf
Executable file
BIN
home-config/fonts/windows/arialbd.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/arialbi.ttf
Executable file
BIN
home-config/fonts/windows/arialbi.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/ariali.ttf
Executable file
BIN
home-config/fonts/windows/ariali.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/ariblk.ttf
Executable file
BIN
home-config/fonts/windows/ariblk.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/calibri.ttf
Executable file
BIN
home-config/fonts/windows/calibri.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/calibrib.ttf
Executable file
BIN
home-config/fonts/windows/calibrib.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/calibrii.ttf
Executable file
BIN
home-config/fonts/windows/calibrii.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/calibril.ttf
Executable file
BIN
home-config/fonts/windows/calibril.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/calibrili.ttf
Executable file
BIN
home-config/fonts/windows/calibrili.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/calibriz.ttf
Executable file
BIN
home-config/fonts/windows/calibriz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/cambria.ttc
Executable file
BIN
home-config/fonts/windows/cambria.ttc
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/cambriab.ttf
Executable file
BIN
home-config/fonts/windows/cambriab.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/cambriai.ttf
Executable file
BIN
home-config/fonts/windows/cambriai.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/cambriaz.ttf
Executable file
BIN
home-config/fonts/windows/cambriaz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/comic.ttf
Executable file
BIN
home-config/fonts/windows/comic.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/comicbd.ttf
Executable file
BIN
home-config/fonts/windows/comicbd.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/comici.ttf
Executable file
BIN
home-config/fonts/windows/comici.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/comicz.ttf
Executable file
BIN
home-config/fonts/windows/comicz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/consola.ttf
Executable file
BIN
home-config/fonts/windows/consola.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/consolab.ttf
Executable file
BIN
home-config/fonts/windows/consolab.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/consolai.ttf
Executable file
BIN
home-config/fonts/windows/consolai.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/consolaz.ttf
Executable file
BIN
home-config/fonts/windows/consolaz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/constan.ttf
Executable file
BIN
home-config/fonts/windows/constan.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/constanb.ttf
Executable file
BIN
home-config/fonts/windows/constanb.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/constani.ttf
Executable file
BIN
home-config/fonts/windows/constani.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/constanz.ttf
Executable file
BIN
home-config/fonts/windows/constanz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/corbel.ttf
Executable file
BIN
home-config/fonts/windows/corbel.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/corbelb.ttf
Executable file
BIN
home-config/fonts/windows/corbelb.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/corbeli.ttf
Executable file
BIN
home-config/fonts/windows/corbeli.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/corbell.ttf
Executable file
BIN
home-config/fonts/windows/corbell.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/corbelli.ttf
Executable file
BIN
home-config/fonts/windows/corbelli.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/corbelz.ttf
Executable file
BIN
home-config/fonts/windows/corbelz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/cour.ttf
Executable file
BIN
home-config/fonts/windows/cour.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/courbd.ttf
Executable file
BIN
home-config/fonts/windows/courbd.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/courbi.ttf
Executable file
BIN
home-config/fonts/windows/courbi.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/couri.ttf
Executable file
BIN
home-config/fonts/windows/couri.ttf
Executable file
Binary file not shown.
1972
home-config/fonts/windows/fonts.dir
Executable file
1972
home-config/fonts/windows/fonts.dir
Executable file
File diff suppressed because it is too large
Load diff
1972
home-config/fonts/windows/fonts.scale
Executable file
1972
home-config/fonts/windows/fonts.scale
Executable file
File diff suppressed because it is too large
Load diff
BIN
home-config/fonts/windows/framd.ttf
Executable file
BIN
home-config/fonts/windows/framd.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/framdit.ttf
Executable file
BIN
home-config/fonts/windows/framdit.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/georgia.ttf
Executable file
BIN
home-config/fonts/windows/georgia.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/georgiab.ttf
Executable file
BIN
home-config/fonts/windows/georgiab.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/georgiai.ttf
Executable file
BIN
home-config/fonts/windows/georgiai.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/georgiaz.ttf
Executable file
BIN
home-config/fonts/windows/georgiaz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/impact.ttf
Executable file
BIN
home-config/fonts/windows/impact.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/l_10646.ttf
Executable file
BIN
home-config/fonts/windows/l_10646.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/lucon.ttf
Executable file
BIN
home-config/fonts/windows/lucon.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoepr.ttf
Executable file
BIN
home-config/fonts/windows/segoepr.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoeprb.ttf
Executable file
BIN
home-config/fonts/windows/segoeprb.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoesc.ttf
Executable file
BIN
home-config/fonts/windows/segoesc.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoescb.ttf
Executable file
BIN
home-config/fonts/windows/segoescb.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoeui.ttf
Executable file
BIN
home-config/fonts/windows/segoeui.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoeuib.ttf
Executable file
BIN
home-config/fonts/windows/segoeuib.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoeuii.ttf
Executable file
BIN
home-config/fonts/windows/segoeuii.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoeuil.ttf
Executable file
BIN
home-config/fonts/windows/segoeuil.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoeuisl.ttf
Executable file
BIN
home-config/fonts/windows/segoeuisl.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/segoeuiz.ttf
Executable file
BIN
home-config/fonts/windows/segoeuiz.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguibl.ttf
Executable file
BIN
home-config/fonts/windows/seguibl.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguibli.ttf
Executable file
BIN
home-config/fonts/windows/seguibli.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguiemj.ttf
Executable file
BIN
home-config/fonts/windows/seguiemj.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguihis.ttf
Executable file
BIN
home-config/fonts/windows/seguihis.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguili.ttf
Executable file
BIN
home-config/fonts/windows/seguili.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguisb.ttf
Executable file
BIN
home-config/fonts/windows/seguisb.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguisbi.ttf
Executable file
BIN
home-config/fonts/windows/seguisbi.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguisli.ttf
Executable file
BIN
home-config/fonts/windows/seguisli.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/seguisym.ttf
Executable file
BIN
home-config/fonts/windows/seguisym.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/symbol.ttf
Executable file
BIN
home-config/fonts/windows/symbol.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/tahoma.ttf
Executable file
BIN
home-config/fonts/windows/tahoma.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/tahomabd.ttf
Executable file
BIN
home-config/fonts/windows/tahomabd.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/times.ttf
Executable file
BIN
home-config/fonts/windows/times.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/timesbd.ttf
Executable file
BIN
home-config/fonts/windows/timesbd.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/timesbi.ttf
Executable file
BIN
home-config/fonts/windows/timesbi.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/timesi.ttf
Executable file
BIN
home-config/fonts/windows/timesi.ttf
Executable file
Binary file not shown.
BIN
home-config/fonts/windows/trebuc.ttf
Executable file
BIN
home-config/fonts/windows/trebuc.ttf
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue