Compare commits
3 Commits
3493519e52
...
e9fc70b1fc
Author | SHA1 | Date | |
---|---|---|---|
e9fc70b1fc | |||
4c24b2ef9e | |||
fd7980e606 |
@ -1,14 +1,22 @@
|
||||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Type=Application
|
||||
Name=Emacs (New Instance)
|
||||
Name=Emacs
|
||||
GenericName=Text Editor
|
||||
NoDisplay=true
|
||||
Comment=Edit text
|
||||
Icon=emacs
|
||||
Exec=emacs %F
|
||||
Actions=
|
||||
Exec=emacsclient -cn %F
|
||||
Actions=new-window;new-instance;
|
||||
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
|
||||
Categories=Development;TextEditor;Utility;
|
||||
Keywords=emacsclient;
|
||||
StartupNotify=true
|
||||
StartupWMClass=Emacs
|
||||
|
||||
[Desktop Action new-window]
|
||||
Name=New Window
|
||||
Exec=emacsclient -cn %F
|
||||
|
||||
[Desktop Action new-instance]
|
||||
Name=New Instance
|
||||
Exec=emacs %F
|
||||
|
@ -1,22 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.1
|
||||
Type=Application
|
||||
Name=Emacs
|
||||
GenericName=Text Editor
|
||||
Comment=Edit text
|
||||
Icon=emacs
|
||||
Exec=emacsclient -cn %F
|
||||
Actions=new-window;new-instance;
|
||||
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
|
||||
Categories=Development;TextEditor;Utility;
|
||||
Keywords=emacsclient;
|
||||
StartupNotify=true
|
||||
StartupWMClass=Emacs
|
||||
|
||||
[Desktop Action new-window]
|
||||
Name=New Window
|
||||
Exec=emacsclient -cn %F
|
||||
|
||||
[Desktop Action new-instance]
|
||||
Name=New Instance
|
||||
Exec=emacs %F
|
10
bin/nginx-here
Executable file
10
bin/nginx-here
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# nginx-here
|
||||
# Spins up an nginx container serving files from the local directory
|
||||
#
|
||||
################################################################################
|
||||
|
||||
podman run -v ./:/usr/share/nginx/html:ro,Z -p 8080:80 docker.io/library/nginx
|
Loading…
Reference in New Issue
Block a user