Created
November 24, 2024 21:32
-
-
Save kenanpelit/6e7744a1b4d04c4f2b145185a5dcd8e6 to your computer and use it in GitHub Desktop.
font-settings-viewer.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Renk tanımlamaları | |
BLUE='\033[0;34m' | |
GREEN='\033[0;32m' | |
NC='\033[0m' # Renk sıfırlama | |
echo -e "${BLUE}=== Sistem Font Ayarları ===${NC}\n" | |
# Genel arayüz fontları | |
echo -e "${GREEN}Genel Arayüz Fontları:${NC}" | |
echo "• Sistem Fontu: $(gsettings get org.gnome.desktop.interface font-name)" | |
echo "• Doküman Fontu: $(gsettings get org.gnome.desktop.interface document-font-name)" | |
echo "• Sabit Genişlikli Font: $(gsettings get org.gnome.desktop.interface monospace-font-name)" | |
echo -e "\n${GREEN}Pencere Yöneticisi Fontları:${NC}" | |
echo "• Pencere Başlığı Fontu: $(gsettings get org.gnome.desktop.wm.preferences titlebar-font)" | |
echo -e "\n${GREEN}Ölçekleme Ayarları:${NC}" | |
echo "• Metin Ölçeği: $(gsettings get org.gnome.desktop.interface text-scaling-factor)" | |
echo "• DPI Ayarı: $(gsettings get org.gnome.desktop.interface font-dpi)" | |
echo -e "\n${GREEN}Yazı Tipi Hinting:${NC}" | |
echo "• Hinting: $(gsettings get org.gnome.desktop.interface font-hinting)" | |
echo "• Antialiasing: $(gsettings get org.gnome.desktop.interface font-antialiasing)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment