
Dolphin Service Menus desktop link send shortcut symbolic
Source (link to git-repo or to original if based on someone elses unmodified work): https://github.com/Intika-Linux-Plasmoid/plasma-service-dolphin-send-to-desktop
Create a link (with "ln -s") into the desktop from the service menu, similar to microsoft windows explorer. This service menu feature a quick simple install, no deb/rpm/sh... required just the desktop file nothing more
Donation: any donations are welcome to: paypal: [email protected] thanks a lot
pcloureiro
1 year ago
Report
skeleton21
1 year ago
Report
skeleton21
1 year ago
just change the string:
Exec=ln -s %F ~/Desktop
To:
Exec=/bin/bash -c "ln -s %F $(cat ~/.config/user-dirs.dirs | grep DESKTOP | cut -d'"' -f2)"
suggestion: you could add the "Link Here" option and insert everything in the "actions" menu
Like so:
[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=all/all;
X-KDE-StartupNotify=false
Actions=sendDesktop;LinkHere
X-KDE-Submenu=Send To...
X-KDE-Submenu[it]=Invia a...
InitialPreference=99
Version=5.21
[Desktop Action sendDesktop]
Name=Send to Desktop (ln -s)
Name[it]=Invia Alla Scrivania (ln -s)
Exec=/bin/bash -c "ln -s %F $(cat ~/.config/user-dirs.dirs | grep DESKTOP | cut -d'"' -f2)"
Icon=desktop
[Desktop Action LinkHere]
Name=Create Link Here (ln -s)
Name[it]=Crea Collegamento (ln -s)
Exec=/bin/bash -c "ln -s %F ./Link"
Icon=desktop
btw good job
Report