-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add send-as-attachment@rcalixte (#6)
- Loading branch information
Showing
7 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
### 1.0 | ||
|
||
* Initial release |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
SEND AS ATTACHMENTS | ||
=================== | ||
|
||
Send file(s) as attachments via a local e-mail client | ||
|
||
DESCRIPTION | ||
----------- | ||
|
||
This is an action to attach the selected file(s) to a new e-mail in the | ||
default system mail client. | ||
|
||
DEPENDENCIES | ||
------------ | ||
|
||
The following program must be installed and available: | ||
|
||
* `xdg-email` to launch the user's default mail client |
Binary file added
BIN
+88.3 KB
send-as-attachment@rcalixte/files/send-as-attachment@rcalixte/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions
7
send-as-attachment@rcalixte/files/send-as-attachment@rcalixte/metadata.json
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"description": "Send file(s) as attachments via a local e-mail client", | ||
"uuid": "send-as-attachment@rcalixte", | ||
"name": "Send as Attachment", | ||
"author": "rcalixte", | ||
"version": "1.0" | ||
} |
31 changes: 31 additions & 0 deletions
31
...-attachment@rcalixte/files/send-as-attachment@rcalixte/po/[email protected]
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Send as Attachment | ||
# Copyright (C) 2023 | ||
# Rick Calixte <[email protected]>, 2023. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: 1.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-11-26 23:34-0500\n" | ||
"PO-Revision-Date: \n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: en\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"X-Generator: Poedit 3.4\n" | ||
|
||
#. metadata.json->description | ||
msgid "Send file(s) as attachments via a local e-mail client" | ||
msgstr "" | ||
|
||
#. metadata.json->name | ||
#. Name | ||
msgid "Send as Attachment" | ||
msgstr "" | ||
|
||
#. Comment | ||
msgid "Attach to a new e-mail" | ||
msgstr "" |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"author": "rcalixte" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[Nemo Action] | ||
_Name=Send as Attachment | ||
_Comment=Attach to a new e-mail | ||
Exec=/usr/bin/xdg-email --attach "%F" | ||
Selection=notnone | ||
Extensions=nodirs; | ||
Dependencies=xdg-email; | ||
Separator=" --attach " |