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.
15 lines
294 B
Bash
Executable File
15 lines
294 B
Bash
Executable File
#!/bin/sh
|
|
# ABOUTME: Rofi emoji picker that copies selected emoji to clipboard.
|
|
# ABOUTME: Reads emoji list from /etc/xdg/rofi/emojis/emojis.txt.
|
|
|
|
FILE="/etc/xdg/rofi/emojis/emojis.txt"
|
|
|
|
if [ "$@" ]
|
|
then
|
|
smiley=$(echo $@ | cut -d' ' -f1)
|
|
echo -n "$smiley" | xsel -bi
|
|
exit 0
|
|
fi
|
|
|
|
cat $FILE
|