my_konfig

This commit is contained in:
2025-12-17 18:10:08 +01:00
parent ed4ae93364
commit 773955ef02
42 changed files with 1313 additions and 158 deletions

15
config/fish/config.fish Normal file
View File

@@ -0,0 +1,15 @@
if status is-interactive
# Commands to run in interactive sessions can go here
end
# ===================================================================
# Automatische Helligkeit für externen Monitor
# Setzt den externen Monitor auf 100% Helligkeit, wenn er erkannt wird.
# ===================================================================
if command -v ddcutil >/dev/null 2>&1
# Prüft, ob der spezifische Monitor (Acer XB273K GP an card1-DP-3) angeschlossen ist.
if ddcutil detect | grep -q "card1-DP-3"
# Befehl im Hintergrund ausführen, um den Shell-Start nicht zu blockieren.
ddcutil --display 1 setvcp 10 100 >/dev/null 2>&1 &
end
end