-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5af67d7
commit d819411
Showing
8 changed files
with
87 additions
and
21 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,38 @@ | ||
# custom-actions | ||
Custom actions for pcmanfm-qt and other filemanagers | ||
|
||
# Custom actions for Pcmanfm-qt and LXQt Desktop | ||
|
||
Following actions are present: | ||
|
||
### Text files | ||
|
||
(for Featherpad; otherwise modify to your prefered editor): | ||
|
||
* Edit as root | ||
* Edit as text | ||
|
||
### Audio files | ||
|
||
* Modify mp3 tags (kid3-qt)) | ||
* Convert format (SoundKonverter) | ||
|
||
### Image files | ||
|
||
* Set as wallpaper | ||
|
||
### Folders: | ||
|
||
* Share with samba (foldershare script) | ||
|
||
### All files: | ||
|
||
* Attach to email (Thunderbird) | ||
* Remove (only for files - using rm, permanent, no confirm!) | ||
|
||
|
||
|
||
## Installation | ||
|
||
Copy manually the actions of your interest to ~/.local/share/filemanager/actions | ||
and the needed scripts to ~/bin or another directory in your $PATH. | ||
Refer to comments in the .desktop files. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
[Desktop Entry] | ||
Type=Action | ||
Name=Modifica come root | ||
Name=Edit as root | ||
Name[it]=Modifica come root | ||
Name[es]=Editar como root | ||
Name[de]=Oeffnen mit Root-Rechten | ||
Name[pt]=Editar como root | ||
Name[fr]=Modifier en tant que root | ||
Name[nl]=Bewerken als root | ||
Name[pl]=Edytuj jako root | ||
Name[ru]=Редактировать как root | ||
Name[cz]=Upravit jako root | ||
Icon=dialog-password | ||
Profiles=profile-zero; | ||
|
||
[X-Action-Profile profile-zero] | ||
MimeTypes=text/plain; | ||
Exec=lxsudo juffed %f | ||
Name=Default profile | ||
Exec=lxsudo featherpad %f | ||
Name=Default profile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
[Desktop Entry] | ||
|
||
Type=Action | ||
Name=Share folder with Samba | ||
Name[it]=Condividi cartella con Samba | ||
Name[es]=Compartir carpeta con Samba | ||
Name[de]=Ordner mit Samba teilen | ||
Name[pt]=Compartilhar pasta com o Samba | ||
Name[fr]=Partager le dossier avec Samba | ||
Name[nl]=Map delen met Samba | ||
Name[pl]=Udostępnij folder Sambie | ||
Name[ru]=Поделиться папкой с Samba | ||
Name[cz]=Sdílejte složku se Samba | ||
|
||
Icon=document-share | ||
|
||
Name=Condividi cartella con Samba | ||
|
||
Profiles=profile-zero; | ||
|
||
|
||
|
||
[X-Action-Profile profile-zero] | ||
|
||
SelectionCount==1 | ||
|
||
MimeTypes=inode/directory; | ||
|
||
# Uncomment the first line below for simple use or the second one for using with the | ||
# foldershare script; edit path correctly! | ||
#Exec=net usershare add %w %f '' Everyone:R guest_ok=y' | ||
Exec=/home/stef/bin/foldershare %w %f | ||
#Exec=/path/to/foldershare %w %f | ||
|