-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from BitCurator/UPDATE/menus
Menu updates
- Loading branch information
Showing
35 changed files
with
46 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1 @@ | ||
4.4.5 | ||
4.5.0 |
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,19 @@ | ||
#!/usr/bin/expect -f | ||
|
||
#trap sigwinch and pass it to the child we spawned | ||
#this allows the gnome-terminal window to be resized | ||
trap { | ||
set rows [stty rows] | ||
set cols [stty columns] | ||
stty rows $rows columns $cols < $spawn_out(slave,name) | ||
} WINCH | ||
|
||
set arg1 [lindex $argv 0] | ||
|
||
spawn -noecho bash | ||
expect "$ " | ||
send "cd ~/\n" | ||
send "deark -h\n" | ||
interact | ||
exit | ||
|
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env xdg-open | ||
|
||
[Desktop Entry] | ||
Type=Application | ||
Version=0.0.1 | ||
Name=deark | ||
GenericName=ForensicTool | ||
Comment=deark command-line tool | ||
Terminal=true | ||
Icon=/usr/share/icons/Humanity/apps/128/terminal.svg | ||
Exec=run-deark.sh | ||
Categories=Forensics and Reporting | ||
|
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,13 @@ | ||
#!/usr/bin/env xdg-open | ||
|
||
[Desktop Entry] | ||
Type=Application | ||
Version=0.0.1 | ||
Name=siegfried | ||
GenericName=ForensicTool | ||
Comment=siegfried command-line tool | ||
Terminal=true | ||
Icon=/usr/share/icons/Humanity/apps/128/terminal.svg | ||
Exec=run-siegfried.sh | ||
Categories=Forensics and Reporting | ||
|