home: sorting

This commit is contained in:
Guanran Wang 2023-11-25 17:02:50 +08:00
parent 383e1d09cd
commit 28c29867a8
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
85 changed files with 103 additions and 1425 deletions

View file

@ -1,7 +0,0 @@
<driconf>
<device>
<application name="Default">
<option name="vblank_mode" value="0" />
</application>
</device>
</driconf>

View file

@ -1,49 +0,0 @@
#!/bin/sh
#
# X init RC config (for bspwm)
# ~/.xinitrc
#
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS=@im=@fcitx
export SDL_IM_MOODULE=fcitx
export GLFW_IM_MODULE=ibus
export MOZ_ENABLE_XINPUT2=1
#export QT_STYLE_OVERWRITE=Adwaita-dark
#export GAMEMODERUNEXEC="env __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia __VK_LAYER_NV_optimus=NVIDIA_ONLY"
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec bspwm

View file

@ -1,33 +0,0 @@
#!/bin/sh
# Send a notification if the laptop battery is either low
# or is fully charged.
export DISPLAY=:0
export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
# Battery percentage at which to notify
WARNING_LEVEL=20
BATTERY_DISCHARGING=$(acpi -b | grep "Battery 0" | grep -c "Discharging")
BATTERY_LEVEL=$(acpi -b | grep "Battery 0" | grep -P -o '[0-9]+(?=%)')
# Use two files to store whether we've shown a notification or not (to prevent multiple notifications)
EMPTY_FILE=/tmp/batteryempty
FULL_FILE=/tmp/batteryfull
# Reset notifications if the computer is charging/discharging
if [ "$BATTERY_DISCHARGING" -eq 1 ] && [ -f $FULL_FILE ]; then
rm $FULL_FILE
elif [ "$BATTERY_DISCHARGING" -eq 0 ] && [ -f $EMPTY_FILE ]; then
rm $EMPTY_FILE
fi
# If the battery is charging and is full (and has not shown notification yet)
if [ "$BATTERY_LEVEL" -gt 95 ] && [ "$BATTERY_DISCHARGING" -eq 0 ] && [ ! -f $FULL_FILE ]; then
notify-send "Battery Charged" "Battery is fully charged." -i "battery" -r 9991
touch $FULL_FILE
# If the battery is low and is not charging (and has not shown notification yet)
elif [ "$BATTERY_LEVEL" -le $WARNING_LEVEL ] && [ "$BATTERY_DISCHARGING" -eq 1 ] && [ ! -f $EMPTY_FILE ]; then
notify-send "Low Battery" "${BATTERY_LEVEL}% of battery remaining." -u critical -i "battery-alert" -r 9991
touch $EMPTY_FILE
fi

View file

@ -1,23 +0,0 @@
#!/bin/sh
# Send a notification displaying that the battery is charging or discharging
# Pass 1 as an argument for charging, 0 for discharging
# Example usage: chargingnotify 1
# Check if argument is passed
[ $# != 1 ] && printf '0 or 1 must be passed as an argument.\nUsage: %s 0|1\n' "$0" && exit
export XAUTHORITY=/home/guanranwang/.Xauthority
export DISPLAY=:0
export DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
BATTERY_CHARGING=$1
BATTERY_LEVEL=$(acpi -b | grep "Battery 0" | grep -P -o '[0-9]+(?=%)')
# Send notifications
if [ "$BATTERY_CHARGING" -eq 1 ]; then
notify-send "Charging" "${BATTERY_LEVEL}% of battery charged." -u low -i "battery-charging" -t 5000 -r 9991
elif [ "$BATTERY_CHARGING" -eq 0 ]; then
notify-send "Discharging" "${BATTERY_LEVEL}% of battery remaining." -u low -i "battery" -t 5000 -r 9991
fi

View file

@ -1,14 +0,0 @@
#!/bin/sh
#
# Script for Hyprland
# ~/.local/share/bin/hyprland-cleanup
#
hyprctl keyword windowrule "workspace 1 silent, alacritty"
hyprctl keyword windowrule "workspace 2 silent, firefox"
/usr/bin/alacritty &
/usr/bin/flatpak run com.google.Chrome &
sleep 5
hyprctl keyword windowrule "workspace unset, alacritty"
hyprctl keyword windowrule "workspace unset, firefox"

View file

@ -1,15 +0,0 @@
#!/bin/sh
HYPRGAMEMODE=$(hyprctl getoption animations:enabled | awk 'NR==2{print $2}')
if [ "$HYPRGAMEMODE" = 1 ] ; then
hyprctl --batch "\
keyword animations:enabled 0;\
keyword decoration:drop_shadow 0;\
keyword decoration:blur 0;\
keyword general:gaps_in 0;\
keyword general:gaps_out 0;\
keyword general:border_size 2;\
keyword decoration:rounding 0"
exit
fi
hyprctl reload

View file

@ -1,3 +0,0 @@
#!/bin/sh
sudo wget -O /etc/hosts https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts

View file

@ -1 +0,0 @@
hrtf = true

View file

@ -1,32 +0,0 @@
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<its:rules version="1.0" xmlns:its="http://www.w3.org/2005/11/its">
<its:translateRule selector="/fontconfig/*[not(self::description)]" translate="no"/>
</its:rules>
<!--
https://caniuse.com/extended-system-fonts
GitHub uses this for code blocks.
-->
<match target="pattern">
<test qual="any" name="family"><string>ui-monospace</string></test>
<edit name="family" mode="assign" binding="same"><string>monospace</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>ui-sans-serif</string></test>
<edit name="family" mode="assign" binding="same"><string>sans-serif</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>ui-serif</string></test>
<edit name="family" mode="assign" binding="same"><string>serif</string></edit>
</match>
<match target="pattern">
<test qual="any" name="family"><string>-apple-system</string></test>
<edit name="family" mode="assign" binding="same"><string>sans-serif</string></edit>
</match>
</fontconfig>

View file

@ -1,6 +0,0 @@
CFLAGS="-march=native -O2 -pipe -fno-plt"
CXXFLAGS="-march=native -O2 -pipe -fno-plt"
MAKEFLAGS="-j$(nproc)"
BUILDENV=(!distcc color ccache !check !sign)
BUILDDIR=/tmp/makepkg
COMPRESSXZ=(xz -c -z - --threads=0)

View file

@ -1 +0,0 @@
L %t/discord-ipc-0 - - - - app/com.discordapp.Discord/discord-ipc-0

View file

@ -1,249 +0,0 @@
[Desktop Entry]
Name[af]=dconf Redigeerder
Name[an]=Editor de dconf
Name[ar]=محرر dconf
Name[as]=dconf
Name[be]=рэдактар dconf
Name[bg]=Редактор за Dconf
Name[bn_IN]=dconf
Name[bs]=Uređivač dconf
Name[ca]=Editor del dconf
Name[ca@valencia]=Editor del dconf
Name[cs]=Editor dconf
Name[da]=dconf-redigering
Name[de]=dconf-Editor
Name[el]=επεξεργαστής Dconf
Name[en_GB]=dconf Editor
Name[eo]=dconf-Redaktilo
Name[es]=Editor de dconf
Name[et]=dconf redaktor
Name[eu]=dconf editorea
Name[fa]=ویرایشگر dconf
Name[fi]=dconf-muokkain
Name[fr]=Éditeur dconf
Name[fur]=Editôr di dconf
Name[gl]=Editor dconf
Name[he]=עורך dconf
Name[hi]=dconf
Name[hr]=dconf uređivač
Name[hu]=dconf szerkesztő
Name[id]=Penyunting dconf
Name[is]=dconf ritill
Name[it]=Editor dconf
Name[ja]=dconf
Name[kk]=dconf түзетушісі
Name[ko]=dconf
Name[lt]=dconf Redaktorius
Name[lv]=dconf redaktors
Name[ml]=dconf ി
Name[mr]=
Name[ms]=Penyunting dconf
Name[nb]=dconf redigering
Name[ne]=dconf
Name[nl]=dconf-bewerker
Name[oc]=Editor dconf
Name[pa]=dconf
Name[pl]=Edytor dconf
Name[pt]=Editor dconf
Name[pt_BR]=Editor dconf
Name[ro]=Editor dconf
Name[ru]=Редактор dconf
Name[sk]=Editor systému dconf
Name[sl]=Urejevalnik dconf
Name[sr]=дконф уређивач
Name[sr@latin]=dkonf uređivač
Name[sv]=dconf-redigerare
Name[ta]=ி ிி
Name[te]=ి
Name[tg]=Муҳаррири dconf
Name[th]= dconf
Name[tr]=dconf Düzenleyici
Name[uk]=Редактор dconf
Name[vi]=Trình son tho dconf
Name[zh_CN]=dconf
Name[zh_HK]=dconf
Name[zh_TW]=dconf
Name[ug]=dconf تەھرىرلىگۈچى
Name=dconf Editor
GenericName[be]=Рэдактар канфігурацыі для dconf
GenericName[bg]=Редактор на настройки за Dconf
GenericName[ca]=Editor de configuracions per al dconf
GenericName[ca@valencia]=Editor de configuracions per al dconf
GenericName[cs]=Editor nastavení pro dconf
GenericName[da]=Konfigurationsredigering til dconf
GenericName[de]=Konfigurationseditor für dconf
GenericName[el]=Επεξεργαστής ρυθμίσεων για το Dconf
GenericName[en_GB]=Configuration editor for dconf
GenericName[es]=Editor de configuración para dconf
GenericName[eu]=Dconf-en konfigurazioaren editorea
GenericName[fa]=ویرایشگر پیکربندی برای dconf
GenericName[fi]=Asetusmuokkain dconfille
GenericName[fr]=Éditeur de configuration pour dconf
GenericName[fur]=Editôr di configurazion par dconf
GenericName[gl]=Editor de configuración para dconf
GenericName[he]=עורך תצורה עבור dconf
GenericName[hr]=Uređivač podešavanja za dconf
GenericName[hu]=Konfigurációszerkesztő a dconf-hoz
GenericName[id]=Penyunting konfigurasi bagi dconf
GenericName[it]=Editor di configurazione per dconf
GenericName[ja]=dconf
GenericName[kk]=dconf үшін баптаулар түзеткіші
GenericName[ko]=dconf
GenericName[lt]=Konfigūracijos redaktorius dconf
GenericName[lv]=dconf konfigurācijas redaktors
GenericName[ml]=Dconf ി ി ി
GenericName[ms]=Penyunting konfigurasi untuk dconf
GenericName[nb]=Konfigurasjonsredigering fo dconf
GenericName[ne]=dconf ि
GenericName[nl]=Configuratiebewerker voor dconf
GenericName[oc]=Editor de configuracion per dconf
GenericName[pl]=Edytor konfiguracji dconf
GenericName[pt]=Editor de configurações para dconf
GenericName[pt_BR]=Editor de configuração para dconf
GenericName[ro]=Editor de configurații pentru dconf
GenericName[ru]=Редактор конфигурации для dconf
GenericName[sk]=Editor konfigurácie systému dconf
GenericName[sl]=Urejevalnik nastavitev za dconf
GenericName[sr]=Уређивач подешавања за дконф
GenericName[sr@latin]=Uređivač podešavanja za dkonf
GenericName[sv]=Konfigurationsredigerare för dconf
GenericName[tr]=Dconf için yapılandırma düzenleyicisi
GenericName[uk]=Редактор налаштувань для dconf
GenericName[zh_CN]=dconf
GenericName[zh_TW]=dconf
GenericName=Configuration editor for dconf
Comment[an]=Edita toda la configuración d'a base de datos dreitament
Comment[ar]=تحرير قاعدة بيانات إعداداتك بأكملها بطريقة مباشرة
Comment[as]=
Comment[be]=Непасрэднае рэдагаванне ўсёй канфігурацыйнай базы даных
Comment[bg]=Редактиране на цялата база от данни с настройки
Comment[bn_IN]= ি ি
Comment[bs]=Neposredno uredite vašu bazu sa podešavanjima
Comment[ca]=Editeu directament la base de dades de configuració
Comment[ca@valencia]=Editeu directament la base de dades de configuració
Comment[cs]=Přímo upravujte celou svoji databázi nastavení
Comment[da]=Redigér direkte i hele din konfigurationsdatabase
Comment[de]=Direkter Zugriff auf Ihre gesamte Konfigurationsdatenbank
Comment[el]=Άμεση επεξεργασία όλης της βάσης με τα δεδομένα των ρυθμίσεων
Comment[en_GB]=Directly edit your entire configuration database
Comment[eo]=Rekte redakti vian totan agordan datumbazon
Comment[es]=Edite toda la configuración de la base de datos directamente
Comment[et]=Seadistuste andmebaasi vahetu muutmine
Comment[eu]=Editatu zuzenean zure konfigurazioaren datu-base osoa
Comment[fa]=به صورت مستقیم پایگاهدادهٔ پیکربندی خود را ویرایش کنید
Comment[fi]=Muokkaa suoraan koko asetustietokantaasi
Comment[fr]=Modifier directement toute votre base de données de configuration
Comment[fur]=Modifiche diretementri l'intîr database de configurazion
Comment[gl]=Edite directamente toda a súa base de datos de configuración
Comment[he]=עריכה ישירה של כל מסד נתוני התצורה שלך
Comment[hi]= ि ि
Comment[hr]=Izravno uređujete svoju cjelokupnu bazu podataka podešavanja
Comment[hu]=A konfigurációs adatbázis közvetlen szerkesztése
Comment[id]=Menyunting langsung seluruh basis data konfigurasi Anda
Comment[is]=Breyta beint uppsetningargrunni kerfis
Comment[it]=Modifica direttamente l'intero database di configurazione
Comment[ja]=
Comment[kk]=Баптаулар дерекқорын тікелей түзетіңіз
Comment[ko]=
Comment[lt]=Tiesiogiai redaguokite savo visą konfigūracijos duomenų bazę
Comment[lv]=Tieši rediģē visu savu konfigurācijas datubāzi
Comment[ml]= ി ി
Comment[mr]= ि
Comment[ms]=Sunting terus keseluruhan pangkalan data konfigurasi anda
Comment[nb]=Rediger konfigurasjonsdatabasen direkte
Comment[ne]= ि
Comment[nl]=De gehele configuratie-database rechtstreeks bewerken
Comment[oc]=Modificar dirèctament tota vòstra basa de donadas de configuracion
Comment[pa]= ਿ
Comment[pl]=Bezpośrednia modyfikacja bazy danych konfiguracji
Comment[pt]=Edite diretamente toda a sua base de dados de configuração
Comment[pt_BR]=Edite diretamente todo o seu banco de dados de configuração
Comment[ro]=Editați în mod direct întreaga dumneavoastră bază de date cu configurări
Comment[ru]=Прямое редактирование базы данных настроек среды
Comment[sk]=Priama úprava celej vašej databázy nastavení
Comment[sl]=Neposredno urejanje celotne podatkovne zbirke nastavitev
Comment[sr]=Непосредно уредите вашу базу са подешавањима
Comment[sr@latin]=Neposredno uredite vašu bazu sa podešavanjima
Comment[sv]=Redigera hela din konfigurationsdatabas direkt
Comment[ta]= ி ி ி
Comment[te]=ి ి ి
Comment[tg]=Тамоми пойгоҳи иттилооти танзимоти худро бевосита таҳрир кунед
Comment[th]=
Comment[tr]=Yapılandırma veri tabanınızın tamamını doğrudan düzenleyin
Comment[uk]=Безпосереднє редагування бази даних налаштувань
Comment[vi]=Sa trc tiếp toàn b cơ s d liu cu hình ca bn
Comment[zh_CN]=
Comment[zh_HK]=
Comment[zh_TW]=
Comment[ug]=سەپلىمە ساندىنىنى بىۋاسىتە تەھرىرلەيدۇ
Comment=Directly edit your entire configuration database
Keywords[af]=instellings;konfigurasie;
Keywords[an]=opcions;configuración;
Keywords[as]=settings;configuration;
Keywords[be]=настройкі;налады;канфігурацыя;настаўленні;
Keywords[bg]=настройки;конфигурации;settings;configuration;
Keywords[bs]=podešavanja;postavke;konfiguracija;
Keywords[ca]=paràmetres;configuració;
Keywords[ca@valencia]=paràmetres;configuració;
Keywords[cs]=nastavení;konfigurace;
Keywords[da]=indstillinger;valgmuligheder;valg;konfiguration;
Keywords[de]=Einstellungen;Konfiguration;
Keywords[el]=ρυθμίσεις;διαμόρφωση;settings;configuration;
Keywords[en_GB]=settings;configuration;
Keywords[eo]=agordoj;
Keywords[es]=configuración;ajustes;
Keywords[et]=seadistus;sätted;seaded;konfiguratsioon;
Keywords[eu]=ezarpenak;konfigurazioa;
Keywords[fa]=settings;configuration;تنظیمات;پیکربندی;
Keywords[fi]=settings;configuration;asetukset;määritykset;
Keywords[fr]=paramètres;configuration;
Keywords[fur]=impostazions; configurazion;
Keywords[gl]=preferencias;configuración;
Keywords[he]=הגדרות;תצורה;קונפיגורציה;
Keywords[hi]=ि; ि;
Keywords[hr]=postavke;podešavanje;
Keywords[hu]=beállítások;konfiguráció;
Keywords[id]=pengaturan;konfigurasi;
Keywords[is]=stillingar;uppsetning;
Keywords[it]=impostazione;impostazioni;configurazione;
Keywords[ja]=settings;configuration;;gsettings;gschema;
Keywords[kk]=settings;configuration;баптаулар;қалаулар;
Keywords[ko]=settings;configuration;;
Keywords[lt]=nustatymai;konfigūracija;
Keywords[lv]=iestatījumi;konfigurācija;
Keywords[ml]=settings;configuration;
Keywords[ms]=tetapan;konfigurasi;
Keywords[nb]=innstillinger;konfigurasjon;
Keywords[ne]=ि;ि;
Keywords[nl]=instellingen;configuratie;settings;configuration;
Keywords[oc]=paramètres;configuracion;
Keywords[pa]=ਿ;;settings;configuration;
Keywords[pl]=ustawienia;konfiguracja;preferencje;opcje;rejestr;
Keywords[pt]=definições;configuração;
Keywords[pt_BR]=ajustes;configuração;
Keywords[ro]=settings;configuration;configurări;configurație;setări;
Keywords[ru]=настройка;параметры;конфигурация;
Keywords[sk]=nastavenia;konfigurácia;
Keywords[sl]=nastavitve;konfiguracija;sistem;prilagajanje;
Keywords[sr]=подешавања;поставке;конфигурација;podešavanja;postavke;konfiguracija;podesavanja;settings;configuration;
Keywords[sr@latin]=podešavanja;postavke;konfiguracija;podešavanja;postavke;konfiguracija;podesavanja;settings;configuration;
Keywords[sv]=inställningar;konfiguration;
Keywords[ta]=;ி;
Keywords[tg]=танзимот;конфигуратсия;
Keywords[th]=;;
Keywords[tr]=ayarlar;yapılandırma;
Keywords[uk]=параметри;налаштування;
Keywords[vi]=settings;cài;đt;cai;dat;configuration;cu;hình;cau;hinh;
Keywords[zh_CN]=settings;configuration;;;;
Keywords[zh_HK]=settings;configuration;;;
Keywords[zh_TW]=settings;configuration;;;;
Keywords[ug]=settings;configuration;تەڭشەكلەر;سەپلىمە;
Keywords=settings;configuration;
Exec=flatpak run --branch=stable --arch=x86_64 --command=start-dconf-editor ca.desrt.dconf-editor
Terminal=false
Type=Application
StartupNotify=true
Categories=GNOME;GTK;System;
#DBusActivatable=true
Icon=ca.desrt.dconf-editor
X-Flatpak=ca.desrt.dconf-editor

View file

@ -1,99 +0,0 @@
[Desktop Entry]
Name=Easy Effects
GenericName[cs]=Ekvalizér, kompresor a jiné zvukové efekty
GenericName[de]=Equalizer, Kompressor und andere Audioeffekte
GenericName[fr_FR]=Égaliseur, Compresseur et autres effets audio
GenericName[gl]=Ecualizador, compresor e outros efectos de son
GenericName[hr]=Ekvalizator, kompresor i drugi audio efekti
GenericName[id_ID]=Equalizer, Compressor and Other Audio Effects
GenericName[it_IT]=Equalizzatore, Compressore e Altri Effetti Audio
GenericName[nl]=Equalizer, compressor en overige audio-effecten
GenericName[pl]=Korektor, kompresor i inne efekty audio
GenericName[pt_BR]=Equalizador, Compressor e Outros Efeitos de Áudio
GenericName[ru]=Эквалайзер, компрессор и прочие звуковые эффекты
GenericName[sk]=Ekvalizér, kompresor a ďalšie audio efekty
GenericName[sv]=Equalizer, kompressor och andra ljudeffekter
GenericName[da]=Equalizer, Kompressor og Andre Lydeffekter
GenericName[nb_NO]=Tonekontroll, kompressor og andre lydeffekter
GenericName[es_MX]=Ecualizador, Compresor y Otros Efectos de Sonido
GenericName[es_CO]=Ecualizador, Compresor y Otros Efectos de Sonido
GenericName[tr]=Ekolayzır, Sıkıştırıcı ve Diğer Ses Efektleri
GenericName[zh_CN]=
GenericName[ro]=Egalizator, compresor și Alte Efecte Audio
GenericName[es_VE]=Ecualizador, Compresor y Otros Efectos de Sonido
GenericName[ja]=
GenericName[ko]=,
GenericName[es]=Ecualizador, compresor y otros efectos de sonido
GenericName[bg]=Еквалайзер, Компресор и други звукови ефекти
GenericName[uk]=Еквалайзер, компресор та інші звукові ефекти
GenericName[eu]=Ekualizatzailea, konprimatzailea eta beste audio-efektu batzuk
GenericName[nn]=Equalizer, kompressor og andre lydeffektar
GenericName[ca]=Equalitzador, Compressor i Altres Efectes d'Àudio
GenericName=Equalizer, Compressor and Other Audio Effects
Comment[cs]=Zvukové efekty pro programy využívající PipeWire
Comment[de]=Audio Effekte für PipeWire Anwendungen
Comment[fr_FR]=Effets audio pour les applications utilisant le serveur audio PipeWire
Comment[gl]=Efectos de son para aplicacións PipeWire
Comment[hr]=Zvučni efekti za PipeWire aplikacije
Comment[id_ID]=Efek Audio untuk Aplikasi PipeWire
Comment[it_IT]=Effetti Audio per Applicazioni Pipewire
Comment[nl]=Audio-effecten voor PipeWire-apps
Comment[pl]=Efekty dźwiękowe dla aplikacji PipeWire
Comment[pt_BR]=Efeitos de áudio para aplicativos que utilizam PipeWire
Comment[ru]=Звуковые эффекты для приложений PipeWire
Comment[sk]=Zvukové efekty pre aplikácie využívajúce PipeWire
Comment[sv]=Ljudeffekter för PipeWire-applikationer
Comment[da]=Lyd Effekter for PipeWire Applikationer
Comment[nb_NO]=Lydeffekter for PipeWire-programmer
Comment[es_MX]=Efectos de audio para aplicaciones PipeWire
Comment[es_CO]=Efectos de audio paras las aplicaciones PipeWire
Comment[tr]=PipeWire Uygulamaları için Ses Efektleri
Comment[zh_CN]=使 PipeWire
Comment[ja]=PipeWire
Comment[ko]=PipeWire
Comment[es]=Efectos de sonido para las aplicaciones PipeWire
Comment[af]=Oudio-effekte vir PipeWire toepassing
Comment[bg]=Звукови ефекти за приложения, използващи PipeWire
Comment[uk]=Аудіоефекти для додатків PipeWire
Comment[eu]=Audio-efektuak PipeWire aplikazioetarako
Comment[nn]=Lydeffektar for PipeWire-applikasjonar
Comment[ca]=Efectes d'àudio per a aplicacions PipeWire
Comment=Audio Effects for PipeWire Applications
Keywords[cs]=limiter;kompresor;dozvuk;ekvalizér;automatická hlasitost;
Keywords[de]=Limiter;Kompressor;Hall;Equalizer;Autovolumen;
Keywords[fr_FR]=limiteur ; compresseur ; réverbération ; égaliseur ; autovolume ;
Keywords[gl]=limitador;compresor;reverberación;ecualizador;volume automático;
Keywords[hr]=graničnik;kompresor;odjek;ekvalizator;automatska glasnoća zvuka;
Keywords[id_ID]=limiter;compressor;reverberation;equalizer;autovolume;
Keywords[it_IT]=limiter;compressore;riverbero;equalizzatore;autovolume;
Keywords[nl]=limiter;compressor;galm;equalizer;autovolume;
Keywords[pl]=limiter;kompresor;pogłos;korektor;autogłośność;
Keywords[pt_BR]=limitador;compressor;reverberação;equalizador;autovolume;
Keywords[ru]=лимитер;компрессор;ревербератор;эквалайзер;автогромкость;
Keywords[sk]=obmedzovač;kompresor;ozvena;ekvalizér;automatická hlasitosť;
Keywords[sv]=begränsare;kompressor;eko;utjämnare;autovolym;
Keywords[da]=begrænser;kompressor;efterklang;equalizer;autovolume;
Keywords[es_MX]=limitador;compresor;reverberación;ecualizador;autovolumen;
Keywords[es_CO]=limitador;compresor;reverberación;ecualizador;autovolumen;
Keywords[tr]=sınırlayıcı,kompresör,yankı,ekolayzır,otomatikses;yükseltici;sıkıştırıcı;
Keywords[zh_CN]=;;;;;
Keywords[ro]=limitator;compresor;reverberație;egalizator;autovolum
Keywords[es_VE]=limitador;compresor;reverberación;ecualizador;autovolumen;
Keywords[ja]=;;;;;
Keywords[ko]=limiter;compressor;reverberation;equalizer;autovolume;;;;;;;;;
Keywords[es]=limitador;compresor;reverberación;ecualizador;autovolumen;
Keywords[bg]=ограничител;компресор;ехо;еквалайзер;автосила;
Keywords[uk]=обмежувач;компресор;реверберація;еквалайзер;автогучність;
Keywords[eu]=mugatzailea;konprimatzailea;durunda;ekualizadorea;bolumen automatikoa;
Keywords[nn]=limiter;compressor;reverbation;equalizer;autovolume;
Keywords[ca]=limitador;compressor;reverberació;equalitzador;autovolum;
Keywords=limiter;compressor;reverberation;equalizer;autovolume;
Categories=GTK;AudioVideo;Audio;
Exec=flatpak run --branch=stable --arch=x86_64 --command=easyeffects com.github.wwmm.easyeffects
Icon=com.github.wwmm.easyeffects
StartupNotify=true
#DBusActivatable=true
X-GNOME-UsesNotifications=true
Terminal=false
Type=Application
X-Flatpak=com.github.wwmm.easyeffects

View file

@ -1,119 +0,0 @@
[Desktop Entry]
Name[be]=Amberol
Name[ca]=Amberol
Name[cs]=Amberol
Name[da]=Amberol
Name[de]=Amberol
Name[el]=Amberol
Name[en_GB]=Amberol
Name[es]=Amberol
Name[eu]=Amberol
Name[fa]=امبرول
Name[fi]=Amberol
Name[fr]=Amberol
Name[fur]=Amberol
Name[gl]=Amberol
Name[he]=אמברול
Name[hr]=Amberol
Name[hu]=Amberol
Name[id]=Amberol
Name[is]=Amberol
Name[it]=Amberol
Name[ka]=Amberol
Name[ko]=
Name[lt]=Amberol
Name[nl]=Amberol
Name[oc]=Amberol
Name[pl]=Amberol
Name[pt]=Amberol
Name[pt_BR]=Amberol
Name[ru]=Amberol
Name[sl]=Amberol
Name[sr]=Амберол
Name[sv]=Amberol
Name[tr]=Amberol
Name[uk]=Амберол
Name[zh_CN]=Amberol
Name=Amberol
GenericName[be]=Музычны прайгравальнік
GenericName[ca]=Reproductor de música
GenericName[cs]=Přehrávač hudby
GenericName[da]=Musikafspiller
GenericName[de]=Musikwiedergabe
GenericName[el]=Αναπαραγωγή μουσικής
GenericName[en_GB]=Music Player
GenericName[es]=Reproductor de música
GenericName[eu]=Musika-erreproduzigailua
GenericName[fa]=پخشکنندهٔ آهنگ
GenericName[fi]=Musiikkisoitin
GenericName[fr]=Lecteur de musique
GenericName[fur]=Riprodutôr musicâl
GenericName[gl]=Reprodutor de música
GenericName[he]=נגן מוזיקה
GenericName[hr]=Glazbeni reproduktor
GenericName[hu]=Zenelejátszó
GenericName[id]=Pemutar Musik
GenericName[is]=Tónlistarspilari
GenericName[it]=Lettore musicale
GenericName[ka]=
GenericName[ko]=
GenericName[lt]=Muzikos grotuvas
GenericName[ne]=
GenericName[nl]=Muziekspeler
GenericName[oc]=Lector de musica
GenericName[pl]=Odtwarzacz muzyki
GenericName[pt]=Reprodutor de música
GenericName[pt_BR]=Reprodutor de músicas
GenericName[ru]=Музыкальный проигрыватель
GenericName[sl]=Predvajalnik glasbe
GenericName[sr]=Програм за пуштање музике
GenericName[sv]=Musikspelare
GenericName[tr]=Müzik Çalar
GenericName[uk]=Програвач музики
GenericName[zh_CN]=
GenericName=Music Player
Exec=flatpak run --branch=stable --arch=x86_64 --command=amberol --file-forwarding io.bassi.Amberol @@u %U @@
Icon=io.bassi.Amberol
Terminal=false
Type=Application
Categories=GNOME;GTK;Music;Audio;AudioVideo;
Keywords[be]=player;музычны;прайгравальнік;мультымедыя;аўдыя;прайграванне;плэер;
Keywords[cs]=hudba;přehrávač;média;audio;playlist;
Keywords[da]=musik;afspiller;medie;lyd;afspilningsliste;playliste;
Keywords[de]=music;player;media;audio;playlist;Musik;Wiedergabe;Medien;Audio;Wiedergabeliste;
Keywords[en_GB]=music;player;media;audio;playlist;
Keywords[es]=música;sonido;reproductor;medio;lista;reproducción;
Keywords[eu]=musika;erreproduzigailua;multimedia;audioa;erreprodukzio-zerrenda
Keywords[fa]=music;player:media;موزیک;آهنگ;موسیقی;صدا;صوت;آوا;پخشکننده;رسانه;
Keywords[fi]=music;player;media;audio;playlist;musiikki;ääni;soitin;soittolista;
Keywords[fr]=musique;son;lecteur;média;audio;liste de lecture;
Keywords[fur]=musiche;riprodutôr;multimedia;audio;liste di riproduzion;
Keywords[gl]=música;reprodutor;media;son;lista de reprodución;
Keywords[he]=מוזיקה;מוסיקה;שמע;צליל;נגן;מדיה;אודיו;רשימת השמעה;רשימות השמעה;פליליסט;
Keywords[hr]=glazba;reproduktor;medij;zvuk;popis izvođenja;
Keywords[hu]=zene;lejátszó;média;hang;lejátszási lista;
Keywords[id]=musik;pemutar;media;audio;daftar putar;
Keywords[is]=tónlist;spilari;margmiðlun;hljóð;spilun;spilunarlisti
Keywords[it]=musica;lettore;media;audio;playlist;
Keywords[ka]=music;sound;player;media;audio;playlist;
Keywords[ko]=music;;;player;;;media;;;audio;;;;playlist;;;
Keywords[lt]=muzika;grotuvas;medija;garsas;grojaraštis;
Keywords[nl]=muziek;music;speler;player;media;audio;afspeellijst;playlist;
Keywords[oc]=musica;lector;mèdia;audio;àudio;lista de lectura;
Keywords[pl]=muzyka;music;odtwarzacz;player;plejer;media;multimedia;audio;lista odtwarzania;playlista;plejlista;MP3;empetrzy;empetrójka;
Keywords[pt]=música;músicas;music;som;reprodutor;leitor;player;multimédia;áudio;audio;lista de reprodução;playlist;
Keywords[pt_BR]=música;músicas;music;som;reprodutor;player;mídia;áudio;audio;lista de reprodução;playlist;
Keywords[ru]=music;player;media;audio;playlist;музыка;проигрыватель;медиа;аудио;список воспроизведения;
Keywords[sl]=music;player;media;audio;playlist;glasba;predvajalnik;predstavna vsebina;seznam predvajanja;skladbe;pesmi;
Keywords[sr]=музика;пуштач;медија;аудио;списак;music;player;media;audio;playlist;
Keywords[sv]=musik;spelare;media;audio;spellista;
Keywords[tr]=müzik;oynatıcı;çalıcı;çalar;müzik çalar;müzik oynatıcı;medya;ortam;ses;oynatma listesi;çalma listesi;
Keywords[uk]=music;player;media;audio;playlist;музика;звук;програвач;мультимедіа;звук;список відтворення;відтворення;
Keywords[zh_CN]=music;player;media;audio;playlist;;;;;;
Keywords=music;player;media;audio;playlist;
StartupNotify=true
X-SingleMainWindow=true
X-Purism-FormFactor=Workstation;Mobile;
#DBusActivatable=true
MimeType=audio/mpeg;audio/wav;audio/x-aac;audio/x-aiff;audio/x-ape;audio/x-flac;audio/x-m4a;audio/x-m4b;audio/x-mp1;audio/x-mp2;audio/x-mp3;audio/x-mpg;audio/x-mpeg;audio/x-mpegurl;audio/x-opus+ogg;audio/x-pn-aiff;audio/x-pn-au;audio/x-pn-wav;audio/x-speex;audio/x-vorbis;audio/x-vorbis+ogg;audio/x-wavpack;inode/directory;
X-Flatpak=io.bassi.Amberol

View file

@ -1,201 +0,0 @@
[Desktop Entry]
Name[af]=Kalender
Name[an]=Calandario
Name[ar]=التقويم
Name[be]=Каляндар
Name[bg]=Календар
Name[bs]=Kalendar
Name[ca]=Calendari
Name[ca@valencia]=Calendari
Name[ckb]=ڕۆژژمێر
Name[cs]=Kalendář
Name[da]=Kalender
Name[de]=Kalender
Name[el]=Ημερολόγιο
Name[en_GB]=Calendar
Name[eo]=Kalendaro
Name[es]=Calendario
Name[et]=Kalender
Name[eu]=Egutegia
Name[fa]=تقویم
Name[fi]=Kalenteri
Name[fr]=Agenda
Name[fur]=Calendari
Name[fy]=Kalinder
Name[ga]=Féilire
Name[gd]=Am mìosachan
Name[gl]=Calendario
Name[he]=לוח שנה
Name[hi]=
Name[hr]=Kalendar
Name[hu]=Naptár
Name[id]=Kalender
Name[is]=Dagatal
Name[it]=Calendario
Name[ja]=
Name[ka]=
Name[kab]=Awitay
Name[kk]=Күнтізбе
Name[ko]=
Name[lt]=Kalendorius
Name[lv]=Kalendārs
Name[mjw]=Calendar
Name[ml]=
Name[ms]=Kalendar
Name[nb]=Kalender
Name[ne]=
Name[nl]=Agenda
Name[oc]=Agenda
Name[pa]=
Name[pl]=Kalendarz
Name[pt]=Calendário
Name[pt_BR]=Calendário
Name[ro]=Calendar
Name[ru]=Календарь
Name[sk]=Kalendár
Name[sl]=Koledar
Name[sr]=Календар
Name[sr@latin]=Kalendar
Name[sv]=Kalender
Name[ta]=ி
Name[tg]=Тақвим
Name[th]=
Name[tr]=Takvim
Name[uk]=Календар
Name[vi]=Lch
Name[zh_CN]=
Name[zh_HK]=
Name[zh_TW]=
Name=Calendar
Comment[af]=Kry toegang tot en bestuur jou kalenders
Comment[ar]=انفذ إلى تقاويمك و أدرها
Comment[be]=Доступ і кіраванне календарамі
Comment[bg]=Достъп и управление на календари
Comment[ca]=Accedeix i gestiona els calendaris
Comment[ca@valencia]=Accedeix i gestiona els calendaris
Comment[ckb]=بچۆناوەو و ڕۆژژمێرەکەت ڕێکبخە
Comment[cs]=Zobrazte si a spravujte své kalendáře
Comment[da]=Tilgå og håndtér dine kalendere
Comment[de]=Auf Ihre Kalender zugreifen und verwalten
Comment[el]=Πρόσβαση και διαχείριση του ημερολογίου σας
Comment[en_GB]=Access and manage your calendars
Comment[eo]=Aliri kaj viajn kalendarojn
Comment[es]=Acceder y gestionar sus calendarios
Comment[et]=Isiklike kalendrite vaatamine ja haldamine
Comment[eu]=Atzitu eta kudeatu zure egutegiak
Comment[fa]=نمایش و مدیریت تقویمهایتان
Comment[fi]=Hallitse aikatauluasi kalenterin avulla
Comment[fr]=Ouvrir et gérer vos agendas
Comment[fur]=Jentre e ministre i tiei calendaris
Comment[fy]=Krij tagong ta en besjoch jo kalinders
Comment[gd]=Inntrig is stiùirich na mìosachain agad
Comment[gl]=Acceder e xestionar un calendario
Comment[he]=גישה וניהול לוח השנה שלך
Comment[hi]=
Comment[hr]=Pristupite i upravljajte svojim kalendarom
Comment[hu]=Naptárak elérése és kezelése
Comment[id]=Akses dan kelola kalender Anda
Comment[is]=Skoða og sýsla með dagatöl
Comment[it]=Accede e gestisce i propri calendari
Comment[ja]=
Comment[ka]=
Comment[kk]=Күнтізбелеріңізге қатынау және басқару
Comment[ko]=
Comment[lt]=Prieikite ir tvarkykite savo kalendorius
Comment[lv]=Piekļūstiet un pārvaldiet savus kalendārus
Comment[ml]= ിി
Comment[ms]=Capai dan urus kalendar anda
Comment[nb]=Se på og håndter dine kalendere
Comment[ne]=
Comment[nl]=Beheer en gebruik uw agendas
Comment[oc]=Dobrir e gerir vòstres agendas
Comment[pa]=
Comment[pl]=Wyświetlanie i zarządzanie kalendarzem
Comment[pt]=Aceda e gira os seus calendários
Comment[pt_BR]=Acesse e gerencie seus calendários
Comment[ro]=Accesați și administrați calendarele
Comment[ru]=Доступ и управление календарями
Comment[sk]=Pristupujte a spravujte vaše kalendáre
Comment[sl]=Upravljanje in urejanje koledarjev
Comment[sr]=Приступите и управљајте календаром
Comment[sr@latin]=Pristupite i upravljajte kalendarom
Comment[sv]=Kom åt och hantera dina kalendrar
Comment[tr]=Takvimlerinize erişin ve yönetin
Comment[uk]=Доступ та організування календарів
Comment[vi]=Truy cp và qun lý lch ca mình
Comment[zh_CN]=访
Comment[zh_TW]=
Comment=Access and manage your calendars
Exec=flatpak run --branch=stable --arch=x86_64 --command=gnome-calendar --file-forwarding org.gnome.Calendar @@u %U @@
Icon=org.gnome.Calendar
Terminal=false
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Office;Calendar;Core;
Keywords[af]=kalender;geleentheid;aanmanings;
Keywords[an]=Calandario;Evento;Recordatorio;
Keywords[ar]=Calendar;Event;Reminder;تقويم;حدث;تذكير;
Keywords[be]=Calendar;Event;Reminder;Каляндар;Падзея;Напамін;
Keywords[bg]=calendar;event;reminder;календар;събития;напомняне;разписание;
Keywords[bs]=Kalendar;Događaj;Podsjetnik;
Keywords[ca]=Calendari;Cita;Recordatori;
Keywords[ca@valencia]=Calendari;Cita;Recordatori;
Keywords[ckb]=Calendar;Event;Reminder;
Keywords[cs]=kalendář;událost;upomínka;připomenutí;
Keywords[da]=Kalender;Begivenhed;Påmindelse;
Keywords[de]=Kalender;Termin;Erinnerung;
Keywords[el]=Ημερολόγιο;Συμβάν;Υπενθύμιση;Calendar;Event;Reminder;
Keywords[en_GB]=Calendar;Event;Reminder;
Keywords[eo]=Kalendaro;Evento;Memorigilo;
Keywords[es]=Calendario;Evento;Recordatorio;
Keywords[et]=Calendar;Event;Reminder;Kalender;Sündmused;Meeldetuletused;Päevakava;
Keywords[eu]=Egutegia;Gertaera;Oroigarria;
Keywords[fa]=Calendar;Event;Reminder;تقویم;رویداد;یادآوری;
Keywords[fi]=Calendar;Event;Reminder;Kalenteri;Tapahtuma;Muistutus;
Keywords[fr]=Agenda;Évènement;Rappel;
Keywords[fur]=Calendari;Lunari;Event;Events;Promemorie;
Keywords[fy]=Kalinder;Evenemint;Oantinkens;
Keywords[gd]=Calendar;Event;Reminder;mìosachan;tachartas;cuimhneachan;
Keywords[gl]=Calendario;Evento;Recordatorio;
Keywords[he]=לוח שנה;יומן;אירוע;תזכיר;מזכיר;תזכורת;
Keywords[hi]=Calendar;Event;Reminder;;;;;;ि;
Keywords[hr]=Kalendar;Događaj;Podsjetnik;
Keywords[hu]=Naptár;Esemény;Emlékeztető;
Keywords[id]=Kalender;Acara;Pengingat;
Keywords[is]=dagatal;viðburður;atburður;áminning;
Keywords[it]=Calendario;Evento;Eventi;Promemoria;
Keywords[ja]=Calendar;Event;Reminder;;;;
Keywords[ka]=Calendar;Event;Reminder;
Keywords[kk]=Calendar;Event;Reminder;Күнтізбе;Оқиға;Естелік;
Keywords[ko]=Calendar;;;Event;;;Reminder;;
Keywords[lt]=Kalendorius;Įvykis;Priminimas;
Keywords[lv]=Kalendārs;Notikums;Atgādinājums;
Keywords[mjw]=Calendar;Event;Reminder;
Keywords[ml]=Calendar;Event;Reminder;
Keywords[ms]=Kalendar;Peristiwa;Pemberitahuan;
Keywords[nb]=Kalender;Hendelse;Påminnelse;
Keywords[ne]=ि; ि; ;
Keywords[nl]=Calendar;Agenda;Kalender;Event;Afspraak;Evenement;Gebeurtenis;Reminder;Herinnering;
Keywords[oc]=Agenda;Eveniment;Rapèl;
Keywords[pa]=;;;
Keywords[pl]=Kalendarz;Wydarzenie;Zdarzenie;Przypomnienie;Przypominanie;
Keywords[pt]=Calendário;Evento;Lembrete;
Keywords[pt_BR]=Calendário;Agenda;Evento;Lembrete;
Keywords[ro]=Calendar;Event;Reminder;Eveniment;Memento;
Keywords[ru]=Календарь;Событие;Напоминание;
Keywords[sk]=Kalendár;Udalosť;Pripomienka;
Keywords[sl]=Koledar;Dogodki;Opomniki;Datum;calendar;task;reminder;date;
Keywords[sr]=Calendar;Event;Reminder;Календар;Догађај;Подсетник;Kalendar;Događaj;Podsetnik;Dogadjaj;
Keywords[sr@latin]=Calendar;Event;Reminder;Kalendar;Događaj;Podsetnik;Kalendar;Događaj;Podsetnik;Dogadjaj;
Keywords[sv]=Kalender;Händelse;Påminnelse;
Keywords[tg]=Тақвим;Рӯйдод;Ёдрасон;
Keywords[th]=;;;
Keywords[tr]=Takvim;Olay;Etkinlik;Anımsatıcı;Hatırlatıcı;
Keywords[uk]=Calendar;Event;Reminder;Календар;Подія;Нагадування;
Keywords[vi]=Calendar;Event;Reminder;Lch;Lich;S kin;Su kien;Nhc;Nhac;
Keywords[zh_CN]=Calendar;Event;Reminder;;;;
Keywords[zh_TW]=Calendar;Event;Reminder;;;;;;;
Keywords=Calendar;Event;Reminder;
MimeType=text/calendar;
#DBusActivatable=true
X-Flatpak=org.gnome.Calendar

View file

@ -1,182 +0,0 @@
[Desktop Entry]
Type=Application
Name[ab]=Асимволқәа
Name[af]=Karakters
Name[ar]=المحارف
Name[be]=Сімвалы
Name[bg]=Знаци
Name[ca]=Caràcters
Name[ca@valencia]=Caràcters
Name[ckb]=نووسەکان
Name[cs]=Znaky
Name[da]=Tegn
Name[de]=Zeichen
Name[el]=Χαρακτήρες
Name[en_GB]=Characters
Name[eo]=Signoj
Name[es]=Caracteres
Name[eu]=Karaktereak
Name[fa]=نویسهها
Name[fi]=Merkit
Name[fr]=Caractères
Name[fur]=Caratars
Name[fy]=Characters
Name[gd]=Caractaran
Name[gl]=Caracteres
Name[gu]=
Name[he]=תווים
Name[hi]=
Name[hr]=Znakovi
Name[hu]=Karakterek
Name[id]=Karakter
Name[ie]=Caracteres
Name[is]=Stafir
Name[it]=Caratteri
Name[ja]=
Name[ka]=
Name[kk]=Таңбалар
Name[ko]=
Name[ln]=Minkomá
Name[lt]=Simboliai
Name[lv]=Rakstzīmes
Name[ml]=
Name[ms]=Aksara
Name[nb]=Tegn
Name[ne]=
Name[nl]=Tekens en symbolen
Name[oc]=Caractèrs
Name[pa]=
Name[pl]=Znaki
Name[pt]=Caracteres
Name[pt_BR]=Caracteres
Name[ro]=Caractere
Name[ru]=Символы
Name[sat]=
Name[sk]=Znaky
Name[sl]=Znaki
Name[sr]=Таблица знакова
Name[sr@latin]=Tablica znakova
Name[sv]=Tecken
Name[ta]=
Name[tg]=Аломатҳо
Name[tr]=Karakterler
Name[uk]=Символи
Name[zh_CN]=
Name[zh_TW]=
Name=Characters
Comment[ab]=Имариоу аԥшьы иалукааша асимволқәа рыԥшаареи рҭагалареи рзы
Comment[af]=Nutstoepassing om ongewone karakters te vind en in te voeg
Comment[ar]=تطبيق للبحث عن المحارف غير المألوفة و إدراجها
Comment[be]=Праграма, якая дазваляе шукаць і ўстаўляць незвычайныя сімвалы
Comment[bg]=Помощна програма за намирането и вмъкването на специални знаци
Comment[ca]=Una aplicació per a cercar i inserir caràcters inusuals
Comment[ca@valencia]=Una aplicació per buscar i inserir caràcters inusuals
Comment[ckb]=داوانامە بۆ دۆزینەوە و دانانی نووسە نائاساییەکان
Comment[cs]=Pomocná aplikace pro vyhledávání a vkládání méně běžných znaků.
Comment[da]=Hjælpeværktøj til at finde og indsætte usædvanlige tegn
Comment[de]=Hilfsprogramm zum Auffinden und Einsetzen von selten benutzten Zeichen
Comment[el]=Βοηθητική εφαρμογή εύρεσης και εισαγωγής σπάνιων χαρακτήρων
Comment[en_GB]=Utility application to find and insert unusual characters
Comment[eo]=Utila programo por trovi kaj enmeti nekutimajn signojn
Comment[es]=Aplicación de utilidad para buscar y encontrar caracteres poco habituales
Comment[eu]=Aplikazio bat da ohikoak ez diren karaktereak bilatu eta txertatzeko
Comment[fa]=ابزاری برای یافتن و درج نویسههای غیرمعمول
Comment[fi]=Sovellus epätavallisten merkkien etsintään ja syöttämiseen
Comment[fr]=Utilitaire pour chercher et insérer des caractères inhabituels
Comment[fur]=Aplicazion par cirî e inserî caratars insolits
Comment[fy]=Brûkberens applikaasje foar it fynen en ynfieren fan ôfwikende karakters
Comment[gd]=Goireas gus caractaran sònraichte a lorg s a chur ann
Comment[gl]=Utilidade para atopar e inserir caracteres non usuais
Comment[gu]= િ
Comment[he]=יישום למציאה ולהכנסת תווים בלתי רגילים
Comment[hi]= ि ि
Comment[hr]=Aplikacija pomagala za pronalazak i umetanje neuobičajenih znakova
Comment[hu]=Segédprogram alkalmazás szokatlan karakterek kereséséhez és beszúrásához
Comment[id]=Aplikasi utilitas untuk mencari dan menyisipkan karakter-karakter tak umum
Comment[ie]=Utensile por trovar e inserter rar caracteres
Comment[is]=Nytjatól til að setja inn óvenjuleg staftákn (t.d. sem eru ekki á lyklaborði)
Comment[it]=Applicazione per cercare e inserire caratteri insoliti
Comment[ja]=
Comment[ka]=
Comment[kk]=Сирек кездесетін таңбаларды табу және кірістіру үшін арналған қолданба
Comment[ko]=
Comment[ln]=Ntómo mpona koluka mpe bakisa minkoma ya momeseno tê
Comment[lt]=Programa neįprastų simbolių suradimui ir įterpimui
Comment[lv]=Utilītprogramma neparastu rakstzīmju meklēšanai un ievietošanai
Comment[ml]= ി
Comment[ms]=Aplikasi utiliti ringkas yang dapat mencari dan menyisip aksara yang jarang digunakan
Comment[nb]=Verktøy for å finne og sette inn uvanlige tegn
Comment[ne]= िि ि
Comment[nl]=Hulpmiddel om bijzondere tekens te zoeken en in te voegen
Comment[oc]=Utilitari per cercar e inserir de caractèrs inabituals
Comment[pa]=
Comment[pl]=Narzędzie do wyszukiwania i wstawiania znaków specjalnych
Comment[pt]=Utilitário para localizar e inserir caracteres pouco habituais
Comment[pt_BR]=Aplicativo utilitário para localizar e inserir caracteres incomuns
Comment[ro]=Utilitar de găsire și introducere a caracterelor rare
Comment[ru]=Простое приложение, для поиска и вставки необычных символов
Comment[sat]=
Comment[sk]=Užitočná aplikácia na nájdenie a vloženie neobvyklých znakov
Comment[sl]=Program za iskanje in vstavljanje neobičajnih znakov
Comment[sr]=Помагало за налажење и уметање необичних знакова
Comment[sr@latin]=Pomagalo za nalaženje i umetanje neobičnih znakova
Comment[sv]=Nyttoprogram för att söka och infoga ovanliga tecken
Comment[tr]=Alışılmadık karakterleri bulmak ve eklemek için araç
Comment[uk]=Програма для пошуку та вставлення незвичайних символів
Comment[zh_CN]=
Comment[zh_TW]=
Comment=Utility application to find and insert unusual characters
Icon=org.gnome.Characters
Exec=flatpak run --branch=stable --arch=x86_64 --command=/app/bin/gnome-characters org.gnome.Characters
#DBusActivatable=true
StartupNotify=true
Categories=GNOME;GTK;Utility;X-GNOME-Utilities;
Keywords[ab]=Асимволқәа;иуникод;апунктуациа;аматематика;анбанқәа;ақьачақьқәа;emoji;emoticon;
Keywords[be]=characters;math;emoji;symbols;знакі;сімвалы;юнікод;унікод;пунктуацыя;матэматыка;літары;эмоцыі;эмодзі;эмоджы;смайл;
Keywords[bg]=знаци;уникод;юникод;пунктуация;математика;букви;емоджи;емотикони;усмивки;смайли;символи;characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;
Keywords[ca]=caràcters;unicode;puntuació;mates;lletres;emoji;emoticona;símbols;
Keywords[cs]=znak;znaky;unicode;unikód;interpunkce;interpunkční;znaménko;znaménka;matematické;symboly;značky;písmena;smajlík;smajlíci;emotikona;emotikony;
Keywords[da]=tegn;unicode;tegnsætning;matematik;bogstaver;emoji;smiley;humørikon;symboler;
Keywords[de]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;Zeichen;Zeichensetzung;Buchstaben;Smileys;Symbole;
Keywords[el]=χαρακτήρες;σημείο στίξης;μαθηματικά;γράμματα;εικονίδια διάθεσης;σύμβολα;characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;
Keywords[en_GB]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;
Keywords[es]=caracteres;unicode;puntuación;matemáticas;letras;emoji;emoticono;símbolos;
Keywords[eu]=karaktereak;unicode;puntuazioa;matematika;hizkiak;aurpegierak;emotikonoak;ikurrak;
Keywords[fa]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;نویسهها;یونیکد;یونیکد;ریاضی;حروف;شکلک;نقطهگذاری;نمادها;
Keywords[fi]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;merkit;kirjaimet;hymiöt;symbolit;
Keywords[fr]=caractères;unicode;ponctuation;math;lettres;émoji;émoticône;symboles;
Keywords[fur]=caratars;unicode;puntuazion;matematiche;letaris;emoji;emoticon;simbui;
Keywords[gl]=caracteres;unicode;puntuación;matemático;letras;emoji;emoticono;símbolos;
Keywords[he]=תו;תווים;יוניקוד;פיסוק;מתמטיקה;אותיות;חייכנים;רגשונים;סמיילים;סמיילי;רגשון;חייכן;סמל הבעה;ניקוד;טעמים;סמלים;
Keywords[hi]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;;ि;ि;ि;ि;;;ि;
Keywords[hr]=znakovi;unikôd;interpunkcija;matematika;slova;smajli;emotkoin;simboli;
Keywords[hu]=karakterek;unicode;központozás;matematika;betűk;emodzsi;hangulatjel;szimbólumok;
Keywords[id]=karakter;unikode;tanda baca;matematika;huruf;emoji;emotikon;simbol;
Keywords[ie]=caracteres;unicode;punctuation;matematica;lítteres;emoji;emoticon;simboles;
Keywords[is]=stafir;staftákn;unicode;greinamerki;stærðfræði;tjáningartákn;emoji;merki;tákn;
Keywords[it]=caratteri;carattere;unicode;punteggiatura;matematica;lettere;emoji;emoticon;faccine;persone;simboli;
Keywords[ja]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;;;;;;;;;;
Keywords[ka]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;
Keywords[kk]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;таңбалар;юникод;емле;математика;әріптер;эмодзи;смайлик;
Keywords[ko]=characters;;unicode;;punctuation;;;math;;letters;;emoji;;emoticon;;symbols;;;
Keywords[lt]=simboliai;unikodas;skyryba;matematika;raidės;šypsniukai;emotikonos;simboliai;
Keywords[lv]=rakstzīmes;unikods;interpunkcija;matemātika;burti;emocijas;simboli;
Keywords[ne]=;ि;ि ि;ि;;;ि;;
Keywords[nl]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;tekens;symbolen;interpunctie;wiskunde;
Keywords[oc]=caractèrs;unicode;pontuacion;math;letras;emoji;emoticòna;matematicas;simbol;
Keywords[pl]=znak;znaki;czcionka;font;pismo;unicode;unikod;interpunkcja;interpunkcyjne;matematyka;matematyczne;litery;emoji;emotikony;emotikonki;emotki;symbole;mapa;
Keywords[pt]=caracteres;unicode;pontuação;matemática;letras;emoji;emoticons;símbolos;
Keywords[pt_BR]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;caracteres;pontuação;matemática;letras;carinhas;emoção;símbolos;
Keywords[ru]=символы;юникод;пунктуация;математический;буквы;смайлики;emoji;emoticon;
Keywords[sat]= ;;;; ;;; ;
Keywords[sk]=znaky;unicode;diakritika;matematika;znaky;písmená;emotikona;smajlík;symboly;
Keywords[sl]=znaki;unikod;unicode;matematika;ločila;črke;emotikoni;izrazne ikone;emoji;simboli;ločila;
Keywords[sr]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;знак;знакови;уникод;јуникод;интерпункција;математика;слова;емотикон;емотикони;симболи;
Keywords[sv]=tecken;unicode;skiljetecken;matematik;bokstäver;emoji;emoticon;humörsymbol;symboler;
Keywords[tr]=karakterler;unicode;evrensel kod;unikod;noktalama;matematik;harfler;emoji;surat;yüz;ifade;emoticon;simgeler;semboller;
Keywords[uk]=символи;унікод;пунктуація;математика;букви;літери;емоції;смайлики;символіка;
Keywords[zh_CN]=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;;;;;;;;;;
Keywords[zh_TW]=characters;unicode;punctuation;math;letters;emoji;emoticon;;;;;;;;;;;;
Keywords=characters;unicode;punctuation;math;letters;emoji;emoticon;symbols;
X-Purism-FormFactor=Workstation;Mobile;
X-Flatpak=org.gnome.Characters

View file

@ -1,265 +0,0 @@
[Desktop Entry]
Name[ab]=Адиск ахархәара анализҟаҵага
Name[af]=Skyfgebruik
Name[an]=Analizador d'uso de disco
Name[ar]=محلّل استخدام القرص
Name[as]=ি ি
Name[ast]=Analizador d'Usu de Discu
Name[be]=Аналіз дыскавай прасторы
Name[be@latin]=Analizatar zaniataści dyskavaj prastory
Name[bg]=Анализатор на ползването на диска
Name[bn]=ি ি
Name[bn_IN]=ি ি
Name[br]=Dezranner arver ar c'hantennoù
Name[bs]=Alat za analizu upotrebe diska
Name[ca]=Analitzador de l'ús dels discs
Name[ca@valencia]=Analitzador de l'ús dels discs
Name[crh]=Disk Qullanımı Tahlilcisi
Name[cs]=Analyzátor využití disku
Name[da]=Diskforbrugsanalyse
Name[de]=Festplattenbelegungsanalyse
Name[dz]=
Name[el]=Αναλυτής χρήσης δίσκου
Name[en_GB]=Disk Usage Analyser
Name[en@shaw]=𐑛𐑦𐑕𐑒 𐑿𐑕𐑦𐑡 𐑨𐑯𐑩𐑤𐑲𐑟𐑻
Name[eo]=Diskuzada analizilo
Name[es]=Analizador de uso de disco
Name[et]=Kettakasutuse analüsaator
Name[eu]=Disko-erabileraren analizatzailea
Name[fa]=تحلیلگر مصرف دیسک
Name[fi]=Levynkäytön analysointi
Name[fr]=Analyseur dutilisation des disques
Name[fur]=Analizadôr di utilizazion dal disc
Name[fy]=Skiifgebrûk
Name[ga]=Anailíseoir Úsáid Diosca
Name[gd]=Sgrùdair cleachdadh nan diosga
Name[gl]=Analizador do uso do disco
Name[gu]=િ િ
Name[he]=מנתח השימוש בכונן
Name[hi]=ि ि
Name[hr]=Analizator iskoristivosti diska
Name[hu]=Lemezhasználat-elemző
Name[id]=Penganalisa Penggunaan Diska
Name[ie]=Analisator del usage de discos
Name[is]=Disknotkunargreining
Name[it]=Analizzatore di utilizzo del disco
Name[ja]=使
Name[ka]=
Name[kk]=Диск қолдануын анализдеушісі
Name[km]=
Name[kn]=ಿ ಿ
Name[ko]=
Name[ku]=Analîzkerê Bikaranîna Dîskê
Name[lt]=Disko naudojimo analizatorius
Name[lv]=Diska izmantojuma analizators
Name[mai]=ि ि
Name[mjw]=Disk Usage Analyzer
Name[mk]=Употребата на дискот
Name[ml]=ി
Name[mr]= ि
Name[ms]=Penganalisis Penggunaan Cakera
Name[nb]=Analyse av diskplass
Name[nds]=Spiekergebruk unnersöken
Name[ne]=ि ि
Name[nl]=Schijfgebruik
Name[nn]=Analyse av diskplass
Name[oc]=Analisador d'utilizacion dels disques
Name[or]=ି ିି ି
Name[pa]=ਿ
Name[pl]=Wykorzystanie dysku
Name[ps]=د ټيکلي کارونې شننونکی
Name[pt]=Analisador de utilização do disco
Name[pt_BR]=Analisador de uso de disco
Name[ro]=Analizatorul utilizării discului
Name[ru]=Анализатор использования дисков
Name[si]=
Name[sk]=Analyzátor využitia disku
Name[sl]=Orodje za preučevanje porabe diska
Name[sr]=Испитивач искоришћености диска
Name[sr@latin]=Ispitivač iskorišćenosti diska
Name[sv]=Diskanvändningsanalysator
Name[ta]= ி
Name[te]=ి ిి ి
Name[tg]=Таҳлилгари истифодаи диск
Name[th]=
Name[tr]=Disk Kullanımı İnceleyici
Name[ug]=دىسكا ئىشلىتىش تەھلىلچىسى
Name[uk]=Аналізатор використання диска
Name[vi]=B phân tích đĩa
Name[zh_CN]=
Name[zh_HK]=
Name[zh_TW]=
Name=Disk Usage Analyzer
Comment[af]=Kontroleer gidsgroottes en beskikbare skyfspasie
Comment[an]=Compreba la grandaria d'as carpetas y lo espacio disponible en disco
Comment[ar]=افحص حجم المجلدات والمساحة المتوفرة
Comment[as]= ি ি
Comment[ast]=Comprobar el tamañu de les carpetes y l'espaciu disponible en discu
Comment[be]=Праверка памеру папак і даступнай дыскавай прасторы
Comment[be@latin]=Spraŭdź pamiery katalohaŭ i dyskavuju prastoru
Comment[bg]=Проверка на размерите на папките и свободното пространство на диска
Comment[bn]= ি ি
Comment[bn_IN]= ি
Comment[br]=Gwiriañ mentoù an teuliadoù ha plas hegerz war ar gantennad
Comment[bs]=Provjeri veličinu direktorija i raspoloživ prostor na disku
Comment[ca]=Comprova la mida de les carpetes i l'espai disponible al disc
Comment[ca@valencia]=Comprova la mida de les carpetes i l'espai disponible al disc
Comment[ckb]=چێکردنی قەبارەی بوخچە و بۆشایی بەردەست لە پەپکەکاندا
Comment[crh]=Cilbent ölçülerini ve faydalanışlı disk fezasını teşker
Comment[cs]=Zkontrolovat velikost složek a dostupné místo na disku
Comment[da]=Kontrollér mappestørrelser og tilgængelig diskplads
Comment[de]=Ordnergrößen und freien Festplattenplatz analysieren
Comment[dz]=
Comment[el]=Έλεγχος μεγέθους φακέλων και διαθέσιμου χώρου στο δίσκο
Comment[en_GB]=Check folder sizes and available disk space
Comment[en@shaw]=𐑗𐑧𐑒 𐑓𐑴𐑤𐑛𐑼 𐑕𐑲𐑟𐑩𐑟 𐑯 𐑩𐑝𐑱𐑤𐑩𐑚𐑩𐑤 𐑛𐑦𐑕𐑒 𐑕𐑐𐑱𐑕
Comment[eo]=Kontroli dosierujajn grandojn kaj disponeblan diskmemoron
Comment[es]=Compruebe el tamaño de las carpetas y el espacio disponible en disco
Comment[et]=Kaustade suuruse ja saadaoleva kettaruumi kontroll
Comment[eu]=Egiaztatu karpeten tamainak eta diskoan dagoen leku erabilgarria
Comment[fa]=بررسی اندازهٔ شاخهها و فضای دیسک موجود
Comment[fi]=Tarkista kansioiden koko ja käytettävissä oleva levytila
Comment[fr]=Vérifier la taille des dossiers et lespace disque disponible
Comment[fur]=Controle la dimension des cartelis e il spazi libar sul disc
Comment[fy]=Kontrolearje map gruttes en beskikbere skiifromte
Comment[ga]=Seiceáil méideanna fillteán agus spás diosca le fáil
Comment[gd]=Thoir sùil air meud nam pasganan s an rum shaor air an diosga
Comment[gl]=Verificar o tamaño dos cartafoles e o espazo dispoñíbel no disco
Comment[gu]= િ
Comment[he]=בדיקת גודלי התיקיות והמקום פנוי בכונן
Comment[hi]= ि
Comment[hr]=Provjerite veličinu mapa i dostupan prostor na disku
Comment[hu]=Mappaméretek és elérhető lemezterület vizsgálata
Comment[id]=Periksa ukuran folder dan ruang diska yang tersedia
Comment[ie]=Controlar grandores de fólderes e disc-spacie disponibil
Comment[is]=Athuga hve mikið pláss skrár taka á tölvunni og hve mikið pláss er eftir
Comment[it]=Controlla la dimensione delle cartelle e lo spazio disco disponibile
Comment[ja]=
Comment[ka]=
Comment[kk]=Бумалар өлшемдерін және дисктердегі қолжетерлік орынды тексеру
Comment[km]=
Comment[kn]= ಿ ಿಿ ಿ
Comment[ko]=
Comment[lt]=Tikrinti aplankų dydžius ir laisvą vietą
Comment[lv]=Pārbauda mapju izmērus un pieejamo diska vietu
Comment[mjw]=Folder apun lapen disk space angse kelang
Comment[mk]=Провери ја големината на папките и достапниот простор на дискот
Comment[ml]= ി ിി ിി
Comment[mr]=
Comment[ms]=Periksa saiz folder dan ruang cakera yang tersedia
Comment[nb]=Sjekk mappestørrelser og tilgjengelig diskplass
Comment[ne]= ि
Comment[nl]=Mapgroottes en beschikbare schijfruimte bekijken
Comment[nn]=Undersøk mappestorleikar og tilgjengeleg diskplass
Comment[oc]=Verificar la talha dels dorsièrs e l'espaci de disc disponible
Comment[or]= ି
Comment[pa]= ਿ
Comment[pl]=Wyświetlanie rozmiaru katalogów i dostępnego miejsca na dysku
Comment[ps]=د پوښۍ کچونه او شته ټيکلی تشه وګور
Comment[pt]=Verificar o tamanho das pastas e o espaço disponível em disco
Comment[pt_BR]=Verifique o tamanho de pastas e o espaço disponível em disco
Comment[ro]=Verifică dimensiunea dosarului și spațiul disponibil pe disc
Comment[ru]=Изучение размера папок и свободного места на дисках
Comment[sk]=Kontroluje veľkosti priečinkov a dostupné miesto na disku
Comment[sl]=Preveri velikosti map in prostor na disku
Comment[sr]=Проверите величине фасцикли и слободан простор на диску
Comment[sr@latin]=Proverite veličine fascikli i slobodan prostor na disku
Comment[sv]=Kontrollera mappstorlekar och tillgängligt diskutrymme
Comment[ta]= ிி ி ி ி
Comment[te]= ి ి ి ిి
Comment[tg]=Санҷиши андозаи ҷузвдонҳо ва фазои диски дастрас
Comment[th]=
Comment[tr]=Klasör boyutlarını ve kullanılabilir disk alanını denetle
Comment[ug]=قىسقۇچ چوڭلۇقى ۋە ئىشلىتىشكە بولىدىغان دىسكا بوشلۇقىنى تەكشۈر
Comment[uk]=Перевірте розміри тек та дисковий простір
Comment[vi]=Kim tra kích c ca thư mc và ch trng trên đĩa
Comment[zh_CN]=
Comment[zh_HK]=
Comment[zh_TW]=
Comment=Check folder sizes and available disk space
Keywords[af]=stoor;spasie;skoonmaak;
Keywords[an]=almacenamiento;espacio;limpieza;
Keywords[ar]=تخزين;مساحة;تنظيف;
Keywords[as]=;;ি;
Keywords[be]=сховішча;дыск;прастора;ачыстка;
Keywords[bg]=пространство;обем;размер;свободно;заето;изчистване;освобождаване;storage;space;cleanup;
Keywords[bn_IN]=;;ি-;
Keywords[br]=kadaviñ;egor;naetaat;
Keywords[bs]=smještaj;skladištenje;prostor;čišćenje;
Keywords[ca]=emmagatzematge;emmagatzemament;espai;neteja;
Keywords[ca@valencia]=emmagatzematge;emmagatzemament;espai;neteja;
Keywords[crh]=mağaz;feza;temizlik;temizle;
Keywords[cs]=úložiště;místo;prostor;vyčistit;uvolnit;
Keywords[da]=lager;plads;oprydning;
Keywords[de]=Speicherplatz;Belegung;Kapazität;frei;aufräumen;
Keywords[el]=αποθήκευση;χώρος;καθαρισμός;storage;space;cleanup;
Keywords[en_GB]=storage;space;cleanup;
Keywords[eo]=spaco;diskospaco;purigi;senrubigi;
Keywords[es]=almacenamiento;espacio;limpieza;
Keywords[et]=ruum;kettakasutus;andmed;puhastamine;puhastus;
Keywords[eu]=biltegia;lekua;garbitu;
Keywords[fa]=storage;space;cleanup;ذخیره;فضا;پاکسازی;
Keywords[fi]=storage;space;cleanup;tila;tilankäyttö;levytila;tallennustila;
Keywords[fr]=stockage;espace disque;nettoyage;
Keywords[fur]=archivi;spazi;pulizie;
Keywords[fy]=storage;opslach;space;romte;cleanup;
Keywords[ga]=stóras;spás;glanadh;
Keywords[gd]=storage;space;cleanup;stòras;rum;àite;glanadh;sgioblachadh;sgioblaich;diosga;
Keywords[gl]=almacenamento;espazo;limpeza;
Keywords[gu]=;; ;
Keywords[he]=אחסון;מקום;שטח;נפח;ניקוי;
Keywords[hi]=storage;space;cleanup;
Keywords[hr]=pohrana;prostor;čišćenje;
Keywords[hu]=tároló;lemezterület;takarítás;
Keywords[id]=penyimpanan;ruang;pembersihan;
Keywords[ie]=inmagasinage;spacie;vacuar;nettar;
Keywords[is]=gögn;geymsla;pláss;hreinsun;tiltekt;
Keywords[it]=archiviazione;spazio;pulizia;
Keywords[ja]=storage;space;cleanup;;;;;使;;
Keywords[ka]=storage;space;cleanup;
Keywords[kk]=storage;space;cleanup;сақтауыш;орын;тазарту;
Keywords[kn]=;;ಿ;
Keywords[ko]=storage;;;;space;;cleanup;;
Keywords[lt]=saugykla;vieta;išvalymas;
Keywords[lv]=uzkopšana;vieta;krātuve;
Keywords[mjw]=storage;space;cleanup;
Keywords[ml]=storage;space;cleanup;
Keywords[mr]=;;ि;
Keywords[ms]=storan;ruang;pembersihan;
Keywords[nb]=lagring;plass;rydding;
Keywords[ne]=;space; ;
Keywords[nl]=storage;opslag;ruimte;schijfgebruik;cleanup;opschonen;
Keywords[oc]=emmagazinatge;espaci disc;netejatge;
Keywords[or]=storage;space;cleanup;
Keywords[pa]=;;;storage;space;cleanup;
Keywords[pl]=pamięć masowa;dyski;miejsce;przestrzeń;czyszczenie;analizator;foldery;katalogi;
Keywords[pt]=armazenamento;espaço;limpar;
Keywords[pt_BR]=armazenamento;espaço;limpeza;
Keywords[ro]=storage;space;cleanup;spațiu;curăță;depozitare;stocare;
Keywords[ru]=накопитель;пространство;очистка;
Keywords[sk]=úložisko;miesto;premazanie;vyčistenie;čistenie;
Keywords[sl]=shranjevanje;prostor;čiščenje;zasedenost;datoteke;shramba;storage;clean;počisti;
Keywords[sr]=смештај;складиштење;простор;чишћење;storage;space;cleanup;
Keywords[sr@latin]=smeštaj;skladištenje;prostor;čišćenje;
Keywords[sv]=lagring;utrymme;rensning;
Keywords[ta]=ி;;ி;
Keywords[te]=storage;space;cleanup;
Keywords[tg]=захирагоҳ;фазо;поксозӣ;
Keywords[tr]=depolama;biriktirme;saklama;boşluk;alan;temizlik;
Keywords[ug]=storage;space;cleanup;ساقلىغۇچ;بوشلۇق;تازىلاش;
Keywords[uk]=пам'ять;місце;очистити;
Keywords[vi]=storage;space;cleanup;kho;cha;đĩa;dia;trng;trong;dn dp;don dep;xóa;xoa;
Keywords[zh_CN]=storage;space;cleanup;;;;;使;;;;
Keywords[zh_HK]=storage;space;cleanup;;;;
Keywords[zh_TW]=storage;space;cleanup;;;;;;;
Keywords=storage;space;cleanup;
Exec=flatpak run --branch=stable --arch=x86_64 --command=baobab --file-forwarding org.gnome.baobab @@u %U @@
Icon=org.gnome.baobab
Terminal=false
Type=Application
StartupNotify=true
MimeType=inode/directory;
Categories=GTK;GNOME;System;Filesystem;X-GNOME-Utilities;
#DBusActivatable=true
X-GNOME-UsesNotifications=true
X-Flatpak=org.gnome.baobab

View file

@ -1,22 +0,0 @@
[Desktop Entry]
Name=Telegram Desktop
Comment=Official desktop version of Telegram messaging app
Exec=flatpak run --branch=stable --arch=x86_64 --command=telegram-desktop --file-forwarding org.telegram.desktop -- @@u %u @@
Icon=org.telegram.desktop
Terminal=false
StartupWMClass=TelegramDesktop
Type=Application
Categories=Chat;Network;InstantMessaging;Qt;
MimeType=x-scheme-handler/tg;
Keywords=tg;chat;im;messaging;messenger;sms;tdesktop;
Actions=quit;
#DBusActivatable=true
SingleMainWindow=true
X-GNOME-UsesNotifications=true
X-GNOME-SingleWindow=true
X-Flatpak=org.telegram.desktop
[Desktop Action quit]
Exec=flatpak run --branch=stable --arch=x86_64 --command=telegram-desktop org.telegram.desktop -quit
Name=Quit Telegram
Icon=application-exit

View file

@ -1,2 +0,0 @@
[Context]
filesystems=xdg-config/chromium-flags.conf

View file

@ -1,2 +0,0 @@
[Context]
filesystems=xdg-config/chromium-flags.conf;xdg-config/chrome-flags.conf

View file

@ -1,5 +0,0 @@
[Context]
filesystems=xdg-documents/minecraft-shaders:ro;xdg-documents/minecraft-packs:ro
[Environment]
__GL_THREADED_OPTIMIZATIONS=0

View file

@ -1,2 +0,0 @@
[Context]
filesystems=xdg-documents/minecraft-shaders:ro;xdg-documents/minecraft-packs:ro;~/.minecraft

View file

@ -1,2 +0,0 @@
[Context]
filesystems=xdg-config/MangoHud:ro

View file

@ -1,2 +0,0 @@
[Context]
filesystems=xdg-config/fontconfig:ro;xdg-data/themes:ro;xdg-config/gtk-4.0;xdg-config/gtk-3.0

View file

@ -1,2 +0,0 @@
[Context]
sockets=!wayland

View file

@ -1,2 +0,0 @@
[Environment]
MOZ_ENABLE_WAYLAND=1

View file

@ -1,5 +0,0 @@
[Context]
filesystems=!xdg-config/kdeglobals;!xdg-download;!xdg-run/app/com.discordapp.Discord;xdg-documents/minecraft-packs:ro;xdg-documents/minecraft-shaders:ro;xdg-config/MangoHud:ro
[Environment]
__GL_THREADED_OPTIMIZATIONS=0

View file

@ -1,15 +1,15 @@
{...}: { {pkgs, ...}: {
imports = [ imports = [
./components/dunst.nix ./components/dunst
./components/feh.nix
./components/picom.nix ./components/picom.nix
./components/polybar.nix ./components/polybar.nix
./components/rofi.nix ./components/rofi
./components/scripts.nix
./components/sxhkd.nix ./components/sxhkd.nix
./components/udiskie.nix ./components/udiskie.nix
]; ];
home.packages = with pkgs; [flameshot feh];
xsession = { xsession = {
enable = true; enable = true;
windowManager.bspwm = { windowManager.bspwm = {
@ -32,8 +32,40 @@
}; };
}; };
home.file.".xinitrc" = { home.file.".xinitrc".text = ''
source = ../../dotfiles/.xinitrc; #!/bin/sh
recursive = true;
}; userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
exec bspwm
'';
} }

View file

@ -31,7 +31,7 @@
}; };
xdg.dataFile."icons/dunst" = { xdg.dataFile."icons/dunst" = {
source = ../../../dotfiles/data/icons/dunst; source = ./dunst;
recursive = true; recursive = true;
}; };
} }

View file

@ -1,4 +0,0 @@
{pkgs, ...}: {
imports = [./wallpaper.nix];
home.packages = with pkgs; [feh];
}

View file

@ -1,3 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [flameshot];
}

View file

@ -10,7 +10,7 @@
# Yes, because I have no idea how to use programs.rofi.theme # Yes, because I have no idea how to use programs.rofi.theme
xdg.configFile."rofi" = { xdg.configFile."rofi" = {
source = ../../../dotfiles/config/rofi; source = ./rofi;
recursive = true; recursive = true;
}; };
} }

View file

@ -1,10 +0,0 @@
{...}: {
# TODO: remove unnecessary scripts
home.sessionPath = ["$HOME/.local/bin"];
home.file = {
".local/bin" = {
source = ../../../dotfiles/bin;
recursive = true;
};
};
}

View file

@ -1,4 +0,0 @@
{pkgs, ...}: {
imports = [./wallpaper.nix];
home.packages = with pkgs; [swww];
}

View file

@ -1,8 +1,6 @@
{...}: { {...}: {
imports = [ imports = [
./flameshot.nix ./rofi
./rofi.nix
../../terms/alacritty.nix
]; ];
services.sxhkd = { services.sxhkd = {

View file

@ -1,8 +1,5 @@
# why is this placed in ./wm # why is this placed in ./wm
{pkgs, ...}: { {pkgs, ...}: {
imports = [
./components/wallpaper.nix
];
home.packages = home.packages =
(with pkgs.gnomeExtensions; [ (with pkgs.gnomeExtensions; [
# GNOME extensions # GNOME extensions

View file

@ -4,16 +4,17 @@
... ...
}: { }: {
imports = [ imports = [
./components/dunst.nix ../components/dunst
./components/rofi.nix ../components/rofi
./components/scripts.nix ../components/swayidle.nix
./components/swayidle.nix ../components/swaylock.nix
./components/swaylock.nix ../components/swww.nix
./components/swww.nix ../components/udiskie.nix
./components/udiskie.nix ../components/waybar.nix
./components/waybar.nix
]; ];
home.packages = with pkgs; [swww];
wayland.windowManager = { wayland.windowManager = {
hyprland = { hyprland = {
enable = true; enable = true;
@ -36,7 +37,7 @@
}; };
xdg.configFile."hypr" = { xdg.configFile."hypr" = {
source = ../../dotfiles/config/hyprland; source = ./hyprland;
recursive = true; recursive = true;
}; };
} }

View file

@ -9,7 +9,6 @@ $wp = ~/.local/bin/wrapped-swww
$dwp = ~/.local/bin/wrapped-mpvpaper $dwp = ~/.local/bin/wrapped-mpvpaper
$changevolume = ~/.local/bin/wrapped-pamixer # use swayosd instead $changevolume = ~/.local/bin/wrapped-pamixer # use swayosd instead
$changebrightness = ~/.local/bin/wrapped-brightnessctl $changebrightness = ~/.local/bin/wrapped-brightnessctl
$gamemode = ~/.local/bin/hyprland-gamemode
$screenshot = ~/.local/bin/wrapped-grim $screenshot = ~/.local/bin/wrapped-grim
$inputfix = ~/.local/bin/minecraft-inputfix $inputfix = ~/.local/bin/minecraft-inputfix
$video_path = ~/.var/app/com.valvesoftware.Steam/data/Steam/steamapps/workshop/content/431960 $video_path = ~/.var/app/com.valvesoftware.Steam/data/Steam/steamapps/workshop/content/431960
@ -22,7 +21,6 @@ bind = SUPER, W, exec, xdg-open https: # why
bind = CONTROL SHIFT, Escape, exec, gnome-system-monitor bind = CONTROL SHIFT, Escape, exec, gnome-system-monitor
bind = ALT, R, exec, $inputfix bind = ALT, R, exec, $inputfix
bind = SUPER, G, exec, $gamemode
bind = SUPER, Backspace, exec, $lock bind = SUPER, Backspace, exec, $lock
bind = SUPER, F, fullscreen, 0 bind = SUPER, F, fullscreen, 0
@ -133,4 +131,3 @@ bind = SUPER, mouse_down, workspace, e-1 # scroll wheels
bind = SUPER, mouse_up, workspace, e+1 bind = SUPER, mouse_up, workspace, e+1
bindm = SUPER, mouse:272, movewindow # left click bindm = SUPER, mouse:272, movewindow # left click
bindm = SUPER, mouse:273, resizewindow # right click bindm = SUPER, mouse:273, resizewindow # right click

View file

@ -5,13 +5,11 @@
... ...
}: { }: {
imports = [ imports = [
./components/dunst.nix ./components/dunst
./components/rofi.nix ./components/rofi
./components/scripts.nix
./components/swayidle.nix ./components/swayidle.nix
./components/swaylock.nix ./components/swaylock.nix
./components/udiskie.nix ./components/udiskie.nix
./components/wallpaper.nix
./components/waybar.nix ./components/waybar.nix
]; ];

View file

@ -1,6 +1,9 @@
{...}: { {...}: {
imports = [ imports = [
./fonts.nix ./fonts
./scripts
./wallpapers
./packages.nix ./packages.nix
./input-method.nix ./input-method.nix
./theme.nix ./theme.nix

View file

@ -1,24 +0,0 @@
{pkgs, ...}: {
fonts.fontconfig.enable = true;
xdg.configFile."fontconfig" = {
source = ../../../dotfiles/config/fontconfig;
recursive = true;
};
home.packages = with pkgs; [
### Inter
inter
### JetBrains Mono Nerd Font
(nerdfonts.override {fonts = ["JetBrainsMono"];})
### Adobe Source Han
source-han-sans
source-han-serif
source-han-mono
### Noto Fonts
noto-fonts
noto-fonts-color-emoji
];
}

View file

@ -0,0 +1,34 @@
{pkgs, ...}: {
fonts.fontconfig.enable = true;
xdg.configFile = {
"fontconfig" = {
source = ./fontconfig;
recursive = true;
};
"fontconfig/conf.d/web-ui-fonts.conf".source = pkgs.fetchurl {
url = "https://raw.githubusercontent.com/lilydjwg/dotconfig/master/fontconfig/web-ui-fonts.conf";
hash = "sha256-A4DcV6HTW/IRxXN3NaI1GUfoFdalwgFLpCjgbWENdZU=";
};
"fontconfig/conf.d/source-han-for-noto-cjk.conf".source = pkgs.fetchurl {
url = "https://raw.githubusercontent.com/lilydjwg/dotconfig/master/fontconfig/source-han-for-noto-cjk.conf";
hash = "sha256-jcdDr5VW1qZXbApgfT5FZgxonpRnLs9AY0QagfdL8ic=";
};
};
home.packages = with pkgs; [
### Inter
inter
### JetBrains Mono Nerd Font
(nerdfonts.override {fonts = ["JetBrainsMono"];})
### Adobe Source Han
source-han-sans
source-han-serif
source-han-mono
### Noto Fonts
noto-fonts
noto-fonts-color-emoji
];
}

View file

@ -0,0 +1,8 @@
{...}: {
home.sessionPath = ["$HOME/.local/bin"];
home.file.".local/bin" = {
source = ./bin;
recursive = true;
executable = true;
};
}

View file

@ -1,6 +1,6 @@
{...}: { {...}: {
xdg.dataFile."backgrounds" = { xdg.dataFile."backgrounds" = {
source = ../../../dotfiles/data/backgrounds; source = ./wallpapers;
recursive = true; recursive = true;
}; };
} }