Niri-basierter Wayland-Desktop mit greetd/regreet, Catppuccin Mocha Theming, Rofi-Menus, Waybar und vollstaendiger Post-Install-Automatisierung. Archinstall-Config klont das Repo automatisch via custom-commands, danach genuegt ein einzelner Befehl fuer die komplette Einrichtung.
10 lines
472 B
Bash
Executable File
10 lines
472 B
Bash
Executable File
#!/bin/bash
|
|
# ABOUTME: Rofi-based file search using the locate/mlocate database.
|
|
# ABOUTME: Opens selected files with xdg-open.
|
|
|
|
# info: rofi-locate is a script to search local files and folders on your computer using the locate command and the updatedb database
|
|
# requirements: rofi mlocate
|
|
# playlist: rofi https://www.youtube.com/playlist?list=PLqv94xWU9zZ0LVP1SEFQsLEYjZC_SUB3m
|
|
|
|
xdg-open "$(locate home media | rofi -threads 0 -width 100 -dmenu -i -p "locate:")"
|