initial push

This commit is contained in:
2024-09-04 00:59:52 -05:00
parent fda3040fc2
commit 033cf5b27d
1764 changed files with 2185 additions and 313 deletions

View File

@@ -11,19 +11,6 @@ function main() {
call_path=`pwd`
path=""
# NOTE: Remove if you want to pass file(s) besides directories...
if [[ ! "${1::1}" == /* ]]; then
path="${call_path}/${1}"
else
path="${1}"
fi
if [ ! -d "${path}" ]; then
echo "<change_me>: Path given not a directory..."
exit 1
fi
# End NOTE: Remove if you want to pass file(s) besides directories...
# Collect abs paths and stuff in 'files' array
files=()
for f in "$@"; do
@@ -34,6 +21,6 @@ function main() {
done
cd "/opt/"
python /opt/<change_me>.zip "$@"
python /opt/lsp-manager.zip "$@"
}
main "$@";

View File

@@ -1,11 +0,0 @@
[Desktop Entry]
Name=<change_me>
GenericName=<change_me>
Comment=<change_me>
Exec=/bin/<change_me> %F
Icon=/usr/share/<change_me>/icons/<change_me>.png
Type=Application
StartupNotify=true
Categories=System;FileTools;Utility;Core;GTK;FileManager;
MimeType=
Terminal=false

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Name=LSP Manager
GenericName=A Python + Gtk app to handle interacting LSP Client and Servers.
Comment=UI for LSP Client and Server Management
Exec=/bin/lsp-manager %F
Icon=/usr/share/lsp_manager/icons/lsp_manager.png
Type=Application
StartupNotify=true
Categories=System;FileTools;Utility;Core;GTK;
MimeType=
Terminal=false

View File

@@ -1,23 +0,0 @@
{
"keybindings": {
"help" : "F1",
"rename_files" : ["F2", "<Control>e"],
"open_terminal" : "F4",
"refresh_tab" : ["F5", "<Control>r"],
"delete_files" : "Delete",
"tggl_top_main_menubar" : "Alt_L",
"trash_files" : "<Shift><Control>t",
"tear_down" : "<Control>q",
"go_up" : "<Control>Up",
"go_home" : "<Control>slash",
"grab_focus_path_entry" : "<Control>l",
"open_files" : "<Control>o",
"show_hide_hidden_files" : "<Control>h",
"keyboard_create_tab" : "<Control>t",
"keyboard_close_tab" : "<Control>w",
"keyboard_copy_files" : "<Control>c",
"keyboard_cut_files" : "<Control>x",
"paste_files" : "<Control>v",
"show_new_file_menu" : "<Control>n"
}
}

Some files were not shown because too many files have changed in this diff Show More