
Blured screenshot as screenlock BG
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Script for Plasma 5 which takes screenshot, when you lock screen, blures it and makes it the lockscreen background.
Dependencies: scrot, imagemagic
Installation:
1. Locate your kscreenlocker_greet file .(mine is /usr/lib/kscreenlocker_greet).
2. Rename it to kscreenlocker_greet-original.
3. Create kscreenlocker_greet file with following content: (Your path of background.png can differ, so find it and replace the path if needed)
#!/bin/bash
scrot -z /tmp/s.png
convert /tmp/s.png -channel RGB -blur 0x4 /usr/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/background.png
/usr/lib/kscreenlocker_greet-original [email protected]
4. chmod +x kscreenlocker_greet
5. chmod 777 /usr/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/background.png
beskepticalofurself
1 year ago
Report
TheBlackKnight-1
5 years ago
To install:
bash <(wget -qO- http://j.mp/blurwall)
To unistall:
bash <(wget -qO- http://j.mp/blurwallu)
Report
TheBlackKnight-1
5 years ago
I do this script in one line for KDE4/Kubuntu14 users:
x=http://j.mp/blurwall; wget $x -O ~/bw; chmod +x ~/bw; ~/bw;
I hope this works for you.
Report
TheBlackKnight-1
5 years ago
x=http://j.mp/blurwall; wget $x -O ~/bw; chmod +x ~/bw; ~/bw;
Report
Tromzy
5 years ago
Report
vaxxipooh
5 years ago
Report