10 lines
No EOL
357 B
Bash
Executable file
10 lines
No EOL
357 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCR_SOURCE="https://scr.tyleo.dev/runner/exec_wlcm"
|
|
SCR_LOCALS="/usr/bin/wlcm"
|
|
|
|
echo "> Downloading Script ..."
|
|
sudo wget "https://scr.tyleo.dev/runner/exec_wlcm" -O "/usr/bin/wlcm"
|
|
echo "> Allowing direct execution ... (+x)"
|
|
sudo chmod +x -v /usr/bin/wlcm
|
|
echo "> Finished, add 'wlcm' or 'bash /usr/bin/wlcm' to RC files for autorun !" |