New folder structure

This commit is contained in:
2023-04-03 17:47:42 +02:00
commit a2bdf977d9
42 changed files with 2055 additions and 0 deletions

17
System/soundApplets.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
SERVICE1="pa-applet"
SERVICE2="blueman-applet"
if pgrep -x "$SERVICE1" >/dev/null
then
killall "$SERVICE1"
else
~/Paquetes/pa-applet/src/pa-applet &
fi
bluetoothctl power on
if pgrep -x "$SERVICE2" >/dev/null
then
killall "$SERVICE2"
else
$SERVICE2 &
fi