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
#!/bin/bash | |
# Renkli çıktılar için ANSI renk kodları | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
BLUE='\033[0;34m' | |
RED='\033[0;31m' | |
NC='\033[0m' # Rengi sıfırla | |
# Eğlenceli emojiler |
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 | |
# İkon tanımlamaları (Nerd Font ikonları) | |
PLAY_ICON="" | |
PAUSE_ICON="" | |
STOP_ICON="" | |
NEXT_ICON="" | |
PREV_ICON="" | |
VOLUME_UP_ICON="" | |
VOLUME_DOWN_ICON="" |
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
#!/bin/bash | |
# Renk tanımları | |
RED='\033[0;31m' | |
YELLOW='\033[0;33m' | |
GREEN='\033[0;32m' | |
NC='\033[0m' # No Color | |
clear | |
echo "CPU Sıcaklık İzleme (Çıkış için CTRL+C)" |
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
#!/bin/bash | |
SERVICE_NAME="cpu-turbo.service" | |
SERVICE_PATH="/etc/systemd/system/${SERVICE_NAME}" | |
TARGET_PATH="/etc/systemd/system/system-cpu-performance.target" | |
# Target file content | |
cat <<'EOF' >/tmp/system-cpu-performance.target | |
[Unit] | |
Description=CPU Performance Management Target |
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 | |
# Gerekli paketleri yükle | |
sudo pacman -S mpd ncmpcpp mpc | |
# Gerekli dizinleri oluştur | |
mkdir -p ~/.config/mpd/playlists | |
mkdir -p ~/.config/ncmpcpp | |
mkdir -p ~/.mpd/playlists | |
touch ~/.mpd/{database,log,state,sticker.sql} |
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ı |
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
#!/bin/bash | |
# Root yetkisi kontrolü | |
if [ "$EUID" -ne 0 ]; then | |
echo "Bu script root yetkileri gerektiriyor." | |
echo "Lütfen 'sudo' ile çalıştırın." | |
exit 1 | |
fi | |
echo "Arch Linux font rendering kurulumu başlıyor..." |