diff --git a/home/.local/Apps/html-editor-grapejs/binaries.lst b/home/.local/Apps/html-editor-grapejs/binaries.lst new file mode 100644 index 0000000..eb041e8 --- /dev/null +++ b/home/.local/Apps/html-editor-grapejs/binaries.lst @@ -0,0 +1 @@ +./html-editor-grapejs.sh diff --git a/home/.local/Apps/html-editor-grapejs/html-editor-grapejs.sh b/home/.local/Apps/html-editor-grapejs/html-editor-grapejs.sh new file mode 100755 index 0000000..9096fee --- /dev/null +++ b/home/.local/Apps/html-editor-grapejs/html-editor-grapejs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +THIS_DIR=$(dirname $(readlink -f $0)) + +cd $THIS_DIR + +python -m http.server 8082 diff --git a/home/.local/Apps/html-editor-grapejs/index.html b/home/.local/Apps/html-editor-grapejs/index.html new file mode 100644 index 0000000..f4bd432 --- /dev/null +++ b/home/.local/Apps/html-editor-grapejs/index.html @@ -0,0 +1,46 @@ + + + + + + html editor + + + + + + + +
+
+

Welcome

+
+
+ + + + diff --git a/home/.local/Apps/html-editor-grapejs/print.css b/home/.local/Apps/html-editor-grapejs/print.css new file mode 100644 index 0000000..c93bfe2 --- /dev/null +++ b/home/.local/Apps/html-editor-grapejs/print.css @@ -0,0 +1,4 @@ +@page{ + size: A3; + margin: 0mm 0mm 0mm 0mm; +} diff --git a/home/.local/Apps/neovim-distros/binaries.lst b/home/.local/Apps/neovim-distros/binaries.lst new file mode 100644 index 0000000..8fed4e4 --- /dev/null +++ b/home/.local/Apps/neovim-distros/binaries.lst @@ -0,0 +1,2 @@ +./lvim.sh +./nvim-distro.sh diff --git a/home/.local/Apps/neovim-distros/lvim.sh b/home/.local/Apps/neovim-distros/lvim.sh index 0660362..61857a6 100755 --- a/home/.local/Apps/neovim-distros/lvim.sh +++ b/home/.local/Apps/neovim-distros/lvim.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash THIS_DIR=$(dirname $(readlink -f $0)) -env PKG=lunarvim alacritty -e "$THIS_DIR/nvim.sh" "$@" & +env PKG=lunarvim alacritty -e "$THIS_DIR/nvim-distro.sh" "$@" & diff --git a/home/.local/Apps/neovim-distros/nvim.sh b/home/.local/Apps/neovim-distros/nvim-distro.sh similarity index 100% rename from home/.local/Apps/neovim-distros/nvim.sh rename to home/.local/Apps/neovim-distros/nvim-distro.sh