Compare commits

...

3 Commits

Author SHA1 Message Date
7870f1f748 username kalle 2026-02-27 19:56:34 +01:00
3e5344c1ae Merge feature/optimized-i3: optimierte i3-Konfiguration
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-27 19:53:57 +01:00
2e913d0dcd Anwendungen aktualisiert: Helium, Typora, Signal, Thunderbird, Multi-Monitor-Shortcuts
- KeePassXC entfernt, Vivaldi durch Helium Browser ersetzt
- Ghostwriter durch Typora ersetzt
- Signal Desktop und Thunderbird hinzugefügt (WS8:CHAT, WS7:MAIL)
- Multi-Monitor Shortcuts: mod+Ctrl+Up/Down/Shift+Down
- AUR-Tasks aufgeteilt (eigener creates-Check pro Paket)
- pulseaudio und pavucontrol zur Paketliste hinzugefügt
- Dokumentation aktualisiert

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-27 19:53:50 +01:00
3 changed files with 26 additions and 9 deletions

View File

@@ -7,12 +7,13 @@
| Shortcut | Beschreibung |
|---|---|
| mod+Shift+Return | Alacritty Terminal |
| mod+Shift+w | Vivaldi Browser |
| mod+Shift+w | Helium Browser |
| mod+Shift+f | Ranger (Terminal File-Manager) |
| mod+Shift+t | Thunar (grafischer File-Manager) |
| mod+Shift+e | Mousepad (Text-Editor) |
| mod+Shift+m | Ghostwriter (Markdown-Editor) |
| mod+Shift+p | KeePassXC (Passwort-Manager) |
| mod+Shift+m | Typora (Markdown-Editor) |
| mod+Shift+s | Signal |
| mod+Shift+i | Thunderbird (E-Mail) |
| mod+space | Rofi App-Launcher & Window-Switcher |
| mod+Ctrl+p | Pavucontrol (Audio-Einstellungen) |
| mod+Ctrl+b | bmenu im Terminal |
@@ -50,10 +51,11 @@
**Workspace-Zuweisungen:**
- WS 1-3 - Frei verwendbar
- WS 4:WEB - Vivaldi Browser
- WS 5:EDIT - Mousepad, Ghostwriter
- WS 4:WEB - Helium Browser
- WS 5:EDIT - Mousepad, Typora
- WS 6:FILES - Thunar
- WS 7-8 - Frei verwendbar
- WS 7:MAIL - Thunderbird
- WS 8:CHAT - Signal
### Screenshots (macOS-Style)
@@ -76,6 +78,9 @@
| mod+Ctrl+d | Autorandr: Monitor-Profil automatisch erkennen |
| mod+Ctrl+a | Arandr: grafisches Display-Layout öffnen |
| mod+Ctrl+m | Schnell: externer Monitor rechts neben Laptop |
| mod+Ctrl+Up | Aktuelles Fenster zu externem Monitor verschieben |
| mod+Ctrl+Down | Aktuelles Fenster zurück zum Laptop-Monitor |
| mod+Ctrl+Shift+Down | Alle Fenster vom externen Monitor zurück zum Laptop |
### Benachrichtigungen (Dunst)

View File

@@ -2,7 +2,7 @@
become: true
vars:
username: "venkatn"
username: "kalle"
userhome: "/home/{{ username }}"
tasks:

View File

@@ -5,15 +5,27 @@
- name: Package Installation - Productivity Tools
package:
name: ["alacritty", "ranger", "mousepad", "ghostwriter", "thunar", "xclip"]
name: ["alacritty", "ranger", "mousepad", "thunar", "xclip", "signal-desktop", "thunderbird", "pulseaudio", "pavucontrol"]
state: present
- name: Package Installation - Install AUR packages
- name: Package Installation - Install AUR greenclip
become_user: "{{ username }}"
command: yay -S --noconfirm greenclip
args:
creates: /usr/bin/greenclip
- name: Package Installation - Install AUR helium-browser-bin
become_user: "{{ username }}"
command: yay -S --noconfirm helium-browser-bin
args:
creates: /usr/bin/helium-browser
- name: Package Installation - Install AUR typora
become_user: "{{ username }}"
command: yay -S --noconfirm typora
args:
creates: /usr/bin/typora
- name: Package Installation - Development Tools
package:
name: ["binutils"]