mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
10 lines
189 B
Bash
10 lines
189 B
Bash
|
#!/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
|