mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
9 lines
189 B
Bash
Executable file
9 lines
189 B
Bash
Executable file
#!/bin/bash
|
|
|
|
COMMAND=/usr/bin/aplay
|
|
SOUND=/usr/share/sddm/themes/sddm-theme-mod/Assets/session-start.wav
|
|
if [ ! -f $COMMAND ]; then
|
|
COMMAND=/usr/bin/paplay
|
|
fi
|
|
|
|
$COMMAND $SOUND & disown
|