- GTK-Style-Script und Template-System entfernt (Catppuccin fest) - 15 tote/inkompatible Scripts gelöscht (Hyprland, X11, Duplikate) - Rasi-Themes von Einzelordnern in themes/ konsolidiert - Waybar: Timezone fix, BAT0, JSON-Struktur, Icons restored - Waybar: GTK-Menu durch wlogout on-click ersetzt - Alle Script-Pfade auf /etc/xdg/rofi/themes/ aktualisiert - moonarch-session als Rofi-basierte Übergangslösung hinzugefügt - moonarch-dnd: broken pipe bei Waybar-Restart behoben - Style.css vom System übernommen
25 lines
416 B
Bash
Executable File
25 lines
416 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# ABOUTME: Application launcher using rofi with Catppuccin Mocha theme.
|
|
# ABOUTME: Supports window, files, run, and drun modes.
|
|
|
|
case $1 in
|
|
window)
|
|
showmode="window"
|
|
;;
|
|
files)
|
|
showmode="filebrowser"
|
|
;;
|
|
run)
|
|
showmode="run"
|
|
;;
|
|
*)
|
|
showmode="drun"
|
|
;;
|
|
esac
|
|
|
|
## Run
|
|
rofi \
|
|
-show $showmode \
|
|
-click-to-exit \
|
|
-theme /etc/xdg/rofi/themes/launcher.rasi
|