my_konfig

This commit is contained in:
2025-12-15 14:01:35 +01:00
parent 2d8032b260
commit ed4ae93364
3 changed files with 18 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ Dieser Ordner (`my_sway_konfig`) dient als zentraler Speicherort für deine Sway
Um ein vollständiges Backup deiner aktuellen Konfigurationen zu erstellen, führe die folgenden Befehle aus:
```bash
cp -r ~/.config/{sway,waybar,mako,wofi,alacritty} ~/my_sway_konfig/config/
cp -r ~/.config/{sway,waybar,mako,wofi,alacritty,kanshi} ~/my_sway_konfig/config/
cp ~/.tmux.conf ~/my_sway_konfig/
```
Diese Befehle kopieren die Konfigurationsordner und die `.tmux.conf` in dein `my_sway_konfig`-Verzeichnis.
@@ -48,7 +48,7 @@ Navigiere in das `my_sway_konfig`-Verzeichnis und führe die folgenden Befehle a
cp -rT config/ ~/.config/
cp .tmux.conf ~/
```
Dieser Befehl kopiert die `sway`, `waybar`, `mako`, `wofi` und `alacritty` Ordner an die richtige Stelle in deinem System, sowie die `.tmux.conf`.
Dieser Befehl kopiert die `sway`, `waybar`, `mako`, `wofi`, `alacritty` und `kanshi` Ordner an die richtige Stelle in deinem System, sowie die `.tmux.conf`.
---

14
config/kanshi/config Normal file
View File

@@ -0,0 +1,14 @@
# Profil für den externen Monitor.
# Wird aktiv, wenn der externe Monitor (DP-3) angeschlossen ist.
profile external {
# Schalte den externen Monitor an.
output DP-3 enable
# Schalte den internen Monitor aus.
output eDP-1 disable
}
# Profil für den internen Monitor.
# Wird aktiv, wenn nur der interne Monitor (eDP-1) da ist.
profile internal {
output eDP-1 enable
}

View File

@@ -49,6 +49,7 @@
- mako
- wofi
- alacritty
- kanshi
- name: Copy all config files
ansible.builtin.copy:
@@ -66,6 +67,7 @@
- { path: 'alacritty/alacritty.toml' }
- { path: 'alacritty/alacritty.yml' }
- { path: 'alacritty/catppuccin-mocha.toml' }
- { path: 'kanshi/config' }
- name: Copy Tmux config to home directory
ansible.builtin.copy: