From 033cf5b27d8dd21d6bd73d34222254fd57cba587 Mon Sep 17 00:00:00 2001 From: itdominator <1itdominator@gmail.com> Date: Wed, 4 Sep 2024 00:59:52 -0500 Subject: [PATCH] initial push --- README.md | 20 +- src/__builtins__.py | 4 +- src/__main__.py | 2 +- src/app.py | 4 +- src/core/builder_wrapper.py | 33 + src/core/containers/base_container.py | 6 +- src/core/containers/body_container.py | 4 +- src/core/containers/center_container.py | 17 +- src/core/containers/header_container.py | 17 +- src/core/containers/left_container.py | 5 +- src/core/containers/right_container.py | 5 +- src/core/controllers/base_controller.py | 30 +- src/core/controllers/base_controller_data.py | 37 +- src/core/controllers/bridge_controller.py | 10 +- src/core/widgets/controls/__init__.py | 3 + .../widgets/controls/open_files_button.py | 86 ++ .../{ => controls}/transparency_scale.py | 6 +- src/core/widgets/lsp_message_box.py | 380 ++++++++ src/core/widgets/lsp_notebook.py | 51 ++ src/core/widgets/lsp_ui.py | 124 +++ src/core/widgets/lsp_window.py | 38 + src/core/widgets/webkit/webkit_ui.py | 57 +- src/core/widgets/webkit_ui.py | 64 -- src/core/window.py | 23 +- src/libs/db/__init__.py | 6 + src/libs/{ => db}/db.py | 0 src/libs/{ => db}/models.py | 0 src/libs/debugging.py | 20 +- src/libs/{data_types => dto}/__init__.py | 0 src/libs/{data_types => dto}/event.py | 0 src/libs/ipc_server.py | 12 +- src/libs/mixins/dnd_mixin.py | 2 +- src/libs/mixins/keyboard_signals_mixin.py | 12 +- .../__init__.py | 0 .../{settings_manager => settings}/manager.py | 49 +- .../options/__init__.py | 0 .../options/config.py | 0 .../options/debugging.py | 0 .../options/filters.py | 0 .../options/settings.py | 0 .../options/theming.py | 0 .../other/__init__.py | 0 .../other/webkit_ui_settings.py | 2 +- .../start_check_mixin.py | 7 +- src/libs/status_icon.py | 67 ++ src/plugins/manifest.py | 31 +- src/plugins/plugins_controller.py | 57 +- user_config/bin/{ => lsp-manager} | 15 +- .../usr/applications/.desktop | 11 - .../usr/applications/lsp-manager.desktop | 11 + .../usr/share/app_name/key-bindings.json | 23 - .../Main_Window.glade | 0 .../contexct_menu.json | 0 .../context_path/index.html | 0 .../resources/css/context-menu.css | 0 .../css/libs/bootstrap-icons/123.svg | 0 .../css/libs/bootstrap-icons/activity.svg | 0 .../css/libs/bootstrap-icons/alarm-fill.svg | 0 .../css/libs/bootstrap-icons/alarm.svg | 0 .../css/libs/bootstrap-icons/align-bottom.svg | 0 .../css/libs/bootstrap-icons/align-center.svg | 0 .../css/libs/bootstrap-icons/align-end.svg | 0 .../css/libs/bootstrap-icons/align-middle.svg | 0 .../css/libs/bootstrap-icons/align-start.svg | 0 .../css/libs/bootstrap-icons/align-top.svg | 0 .../css/libs/bootstrap-icons/alt.svg | 0 .../libs/bootstrap-icons/app-indicator.svg | 0 .../css/libs/bootstrap-icons/app.svg | 0 .../css/libs/bootstrap-icons/apple.svg | 0 .../css/libs/bootstrap-icons/archive-fill.svg | 0 .../css/libs/bootstrap-icons/archive.svg | 0 .../libs/bootstrap-icons/arrow-90deg-down.svg | 0 .../libs/bootstrap-icons/arrow-90deg-left.svg | 0 .../bootstrap-icons/arrow-90deg-right.svg | 0 .../libs/bootstrap-icons/arrow-90deg-up.svg | 0 .../libs/bootstrap-icons/arrow-bar-down.svg | 0 .../libs/bootstrap-icons/arrow-bar-left.svg | 0 .../libs/bootstrap-icons/arrow-bar-right.svg | 0 .../css/libs/bootstrap-icons/arrow-bar-up.svg | 0 .../libs/bootstrap-icons/arrow-clockwise.svg | 0 .../arrow-counterclockwise.svg | 0 .../arrow-down-circle-fill.svg | 0 .../bootstrap-icons/arrow-down-circle.svg | 0 .../arrow-down-left-circle-fill.svg | 0 .../arrow-down-left-circle.svg | 0 .../arrow-down-left-square-fill.svg | 0 .../arrow-down-left-square.svg | 0 .../libs/bootstrap-icons/arrow-down-left.svg | 0 .../arrow-down-right-circle-fill.svg | 0 .../arrow-down-right-circle.svg | 0 .../arrow-down-right-square-fill.svg | 0 .../arrow-down-right-square.svg | 0 .../libs/bootstrap-icons/arrow-down-right.svg | 0 .../libs/bootstrap-icons/arrow-down-short.svg | 0 .../arrow-down-square-fill.svg | 0 .../bootstrap-icons/arrow-down-square.svg | 0 .../libs/bootstrap-icons/arrow-down-up.svg | 0 .../css/libs/bootstrap-icons/arrow-down.svg | 0 .../arrow-left-circle-fill.svg | 0 .../bootstrap-icons/arrow-left-circle.svg | 0 .../libs/bootstrap-icons/arrow-left-right.svg | 0 .../libs/bootstrap-icons/arrow-left-short.svg | 0 .../arrow-left-square-fill.svg | 0 .../bootstrap-icons/arrow-left-square.svg | 0 .../css/libs/bootstrap-icons/arrow-left.svg | 0 .../css/libs/bootstrap-icons/arrow-repeat.svg | 0 .../bootstrap-icons/arrow-return-left.svg | 0 .../bootstrap-icons/arrow-return-right.svg | 0 .../arrow-right-circle-fill.svg | 0 .../bootstrap-icons/arrow-right-circle.svg | 0 .../bootstrap-icons/arrow-right-short.svg | 0 .../arrow-right-square-fill.svg | 0 .../bootstrap-icons/arrow-right-square.svg | 0 .../css/libs/bootstrap-icons/arrow-right.svg | 0 .../arrow-through-heart-fill.svg | 0 .../bootstrap-icons/arrow-through-heart.svg | 0 .../bootstrap-icons/arrow-up-circle-fill.svg | 0 .../libs/bootstrap-icons/arrow-up-circle.svg | 0 .../arrow-up-left-circle-fill.svg | 0 .../bootstrap-icons/arrow-up-left-circle.svg | 0 .../arrow-up-left-square-fill.svg | 0 .../bootstrap-icons/arrow-up-left-square.svg | 0 .../libs/bootstrap-icons/arrow-up-left.svg | 0 .../arrow-up-right-circle-fill.svg | 0 .../bootstrap-icons/arrow-up-right-circle.svg | 0 .../arrow-up-right-square-fill.svg | 0 .../bootstrap-icons/arrow-up-right-square.svg | 0 .../libs/bootstrap-icons/arrow-up-right.svg | 0 .../libs/bootstrap-icons/arrow-up-short.svg | 0 .../bootstrap-icons/arrow-up-square-fill.svg | 0 .../libs/bootstrap-icons/arrow-up-square.svg | 0 .../css/libs/bootstrap-icons/arrow-up.svg | 0 .../bootstrap-icons/arrows-angle-contract.svg | 0 .../bootstrap-icons/arrows-angle-expand.svg | 0 .../libs/bootstrap-icons/arrows-collapse.svg | 0 .../libs/bootstrap-icons/arrows-expand.svg | 0 .../bootstrap-icons/arrows-fullscreen.svg | 0 .../css/libs/bootstrap-icons/arrows-move.svg | 0 .../bootstrap-icons/aspect-ratio-fill.svg | 0 .../css/libs/bootstrap-icons/aspect-ratio.svg | 0 .../css/libs/bootstrap-icons/asterisk.svg | 0 .../resources/css/libs/bootstrap-icons/at.svg | 0 .../css/libs/bootstrap-icons/award-fill.svg | 0 .../css/libs/bootstrap-icons/award.svg | 0 .../css/libs/bootstrap-icons/back.svg | 0 .../libs/bootstrap-icons/backspace-fill.svg | 0 .../backspace-reverse-fill.svg | 0 .../bootstrap-icons/backspace-reverse.svg | 0 .../css/libs/bootstrap-icons/backspace.svg | 0 .../libs/bootstrap-icons/badge-3d-fill.svg | 0 .../css/libs/bootstrap-icons/badge-3d.svg | 0 .../libs/bootstrap-icons/badge-4k-fill.svg | 0 .../css/libs/bootstrap-icons/badge-4k.svg | 0 .../libs/bootstrap-icons/badge-8k-fill.svg | 0 .../css/libs/bootstrap-icons/badge-8k.svg | 0 .../libs/bootstrap-icons/badge-ad-fill.svg | 0 .../css/libs/bootstrap-icons/badge-ad.svg | 0 .../libs/bootstrap-icons/badge-ar-fill.svg | 0 .../css/libs/bootstrap-icons/badge-ar.svg | 0 .../libs/bootstrap-icons/badge-cc-fill.svg | 0 .../css/libs/bootstrap-icons/badge-cc.svg | 0 .../libs/bootstrap-icons/badge-hd-fill.svg | 0 .../css/libs/bootstrap-icons/badge-hd.svg | 0 .../libs/bootstrap-icons/badge-sd-fill.svg | 0 .../css/libs/bootstrap-icons/badge-sd.svg | 0 .../libs/bootstrap-icons/badge-tm-fill.svg | 0 .../css/libs/bootstrap-icons/badge-tm.svg | 0 .../libs/bootstrap-icons/badge-vo-fill.svg | 0 .../css/libs/bootstrap-icons/badge-vo.svg | 0 .../libs/bootstrap-icons/badge-vr-fill.svg | 0 .../css/libs/bootstrap-icons/badge-vr.svg | 0 .../libs/bootstrap-icons/badge-wc-fill.svg | 0 .../css/libs/bootstrap-icons/badge-wc.svg | 0 .../libs/bootstrap-icons/bag-check-fill.svg | 0 .../css/libs/bootstrap-icons/bag-check.svg | 0 .../libs/bootstrap-icons/bag-dash-fill.svg | 0 .../css/libs/bootstrap-icons/bag-dash.svg | 0 .../css/libs/bootstrap-icons/bag-fill.svg | 0 .../libs/bootstrap-icons/bag-heart-fill.svg | 0 .../css/libs/bootstrap-icons/bag-heart.svg | 0 .../libs/bootstrap-icons/bag-plus-fill.svg | 0 .../css/libs/bootstrap-icons/bag-plus.svg | 0 .../css/libs/bootstrap-icons/bag-x-fill.svg | 0 .../css/libs/bootstrap-icons/bag-x.svg | 0 .../css/libs/bootstrap-icons/bag.svg | 0 .../css/libs/bootstrap-icons/balloon-fill.svg | 0 .../bootstrap-icons/balloon-heart-fill.svg | 0 .../libs/bootstrap-icons/balloon-heart.svg | 0 .../css/libs/bootstrap-icons/balloon.svg | 0 .../css/libs/bootstrap-icons/bandaid-fill.svg | 0 .../css/libs/bootstrap-icons/bandaid.svg | 0 .../css/libs/bootstrap-icons/bank.svg | 0 .../css/libs/bootstrap-icons/bank2.svg | 0 .../libs/bootstrap-icons/bar-chart-fill.svg | 0 .../bootstrap-icons/bar-chart-line-fill.svg | 0 .../libs/bootstrap-icons/bar-chart-line.svg | 0 .../libs/bootstrap-icons/bar-chart-steps.svg | 0 .../css/libs/bootstrap-icons/bar-chart.svg | 0 .../css/libs/bootstrap-icons/basket-fill.svg | 0 .../css/libs/bootstrap-icons/basket.svg | 0 .../css/libs/bootstrap-icons/basket2-fill.svg | 0 .../css/libs/bootstrap-icons/basket2.svg | 0 .../css/libs/bootstrap-icons/basket3-fill.svg | 0 .../css/libs/bootstrap-icons/basket3.svg | 0 .../libs/bootstrap-icons/battery-charging.svg | 0 .../css/libs/bootstrap-icons/battery-full.svg | 0 .../css/libs/bootstrap-icons/battery-half.svg | 0 .../css/libs/bootstrap-icons/battery.svg | 0 .../css/libs/bootstrap-icons/behance.svg | 0 .../css/libs/bootstrap-icons/bell-fill.svg | 0 .../libs/bootstrap-icons/bell-slash-fill.svg | 0 .../css/libs/bootstrap-icons/bell-slash.svg | 0 .../css/libs/bootstrap-icons/bell.svg | 0 .../css/libs/bootstrap-icons/bezier.svg | 0 .../css/libs/bootstrap-icons/bezier2.svg | 0 .../css/libs/bootstrap-icons/bicycle.svg | 0 .../libs/bootstrap-icons/binoculars-fill.svg | 0 .../css/libs/bootstrap-icons/binoculars.svg | 0 .../libs/bootstrap-icons/blockquote-left.svg | 0 .../libs/bootstrap-icons/blockquote-right.svg | 0 .../css/libs/bootstrap-icons/bluetooth.svg | 0 .../css/libs/bootstrap-icons/body-text.svg | 0 .../css/libs/bootstrap-icons/book-fill.svg | 0 .../css/libs/bootstrap-icons/book-half.svg | 0 .../css/libs/bootstrap-icons/book.svg | 0 .../bootstrap-icons/bookmark-check-fill.svg | 0 .../libs/bootstrap-icons/bookmark-check.svg | 0 .../bootstrap-icons/bookmark-dash-fill.svg | 0 .../libs/bootstrap-icons/bookmark-dash.svg | 0 .../libs/bootstrap-icons/bookmark-fill.svg | 0 .../bootstrap-icons/bookmark-heart-fill.svg | 0 .../libs/bootstrap-icons/bookmark-heart.svg | 0 .../bootstrap-icons/bookmark-plus-fill.svg | 0 .../libs/bootstrap-icons/bookmark-plus.svg | 0 .../bootstrap-icons/bookmark-star-fill.svg | 0 .../libs/bootstrap-icons/bookmark-star.svg | 0 .../libs/bootstrap-icons/bookmark-x-fill.svg | 0 .../css/libs/bootstrap-icons/bookmark-x.svg | 0 .../css/libs/bootstrap-icons/bookmark.svg | 0 .../libs/bootstrap-icons/bookmarks-fill.svg | 0 .../css/libs/bootstrap-icons/bookmarks.svg | 0 .../css/libs/bootstrap-icons/bookshelf.svg | 0 .../css/libs/bootstrap-icons/boombox-fill.svg | 0 .../css/libs/bootstrap-icons/boombox.svg | 0 .../libs/bootstrap-icons/bootstrap-fill.svg | 0 .../libs/bootstrap-icons/bootstrap-icons.css | 0 .../libs/bootstrap-icons/bootstrap-icons.json | 0 .../libs/bootstrap-icons/bootstrap-icons.scss | 0 .../libs/bootstrap-icons/bootstrap-icons.svg | 0 .../libs/bootstrap-icons/bootstrap-reboot.svg | 0 .../css/libs/bootstrap-icons/bootstrap.svg | 0 .../css/libs/bootstrap-icons/border-all.svg | 0 .../libs/bootstrap-icons/border-bottom.svg | 0 .../libs/bootstrap-icons/border-center.svg | 0 .../css/libs/bootstrap-icons/border-inner.svg | 0 .../css/libs/bootstrap-icons/border-left.svg | 0 .../libs/bootstrap-icons/border-middle.svg | 0 .../css/libs/bootstrap-icons/border-outer.svg | 0 .../css/libs/bootstrap-icons/border-right.svg | 0 .../css/libs/bootstrap-icons/border-style.svg | 0 .../css/libs/bootstrap-icons/border-top.svg | 0 .../css/libs/bootstrap-icons/border-width.svg | 0 .../css/libs/bootstrap-icons/border.svg | 0 .../bootstrap-icons/bounding-box-circles.svg | 0 .../css/libs/bootstrap-icons/bounding-box.svg | 0 .../bootstrap-icons/box-arrow-down-left.svg | 0 .../bootstrap-icons/box-arrow-down-right.svg | 0 .../libs/bootstrap-icons/box-arrow-down.svg | 0 .../box-arrow-in-down-left.svg | 0 .../box-arrow-in-down-right.svg | 0 .../bootstrap-icons/box-arrow-in-down.svg | 0 .../bootstrap-icons/box-arrow-in-left.svg | 0 .../bootstrap-icons/box-arrow-in-right.svg | 0 .../bootstrap-icons/box-arrow-in-up-left.svg | 0 .../bootstrap-icons/box-arrow-in-up-right.svg | 0 .../libs/bootstrap-icons/box-arrow-in-up.svg | 0 .../libs/bootstrap-icons/box-arrow-left.svg | 0 .../libs/bootstrap-icons/box-arrow-right.svg | 0 .../bootstrap-icons/box-arrow-up-left.svg | 0 .../bootstrap-icons/box-arrow-up-right.svg | 0 .../css/libs/bootstrap-icons/box-arrow-up.svg | 0 .../css/libs/bootstrap-icons/box-seam.svg | 0 .../css/libs/bootstrap-icons/box.svg | 0 .../css/libs/bootstrap-icons/box2-fill.svg | 0 .../libs/bootstrap-icons/box2-heart-fill.svg | 0 .../css/libs/bootstrap-icons/box2-heart.svg | 0 .../css/libs/bootstrap-icons/box2.svg | 0 .../css/libs/bootstrap-icons/boxes.svg | 0 .../libs/bootstrap-icons/braces-asterisk.svg | 0 .../css/libs/bootstrap-icons/braces.svg | 0 .../css/libs/bootstrap-icons/bricks.svg | 0 .../libs/bootstrap-icons/briefcase-fill.svg | 0 .../css/libs/bootstrap-icons/briefcase.svg | 0 .../brightness-alt-high-fill.svg | 0 .../bootstrap-icons/brightness-alt-high.svg | 0 .../brightness-alt-low-fill.svg | 0 .../bootstrap-icons/brightness-alt-low.svg | 0 .../bootstrap-icons/brightness-high-fill.svg | 0 .../libs/bootstrap-icons/brightness-high.svg | 0 .../bootstrap-icons/brightness-low-fill.svg | 0 .../libs/bootstrap-icons/brightness-low.svg | 0 .../libs/bootstrap-icons/broadcast-pin.svg | 0 .../css/libs/bootstrap-icons/broadcast.svg | 0 .../css/libs/bootstrap-icons/brush-fill.svg | 0 .../css/libs/bootstrap-icons/brush.svg | 0 .../css/libs/bootstrap-icons/bucket-fill.svg | 0 .../css/libs/bootstrap-icons/bucket.svg | 0 .../css/libs/bootstrap-icons/bug-fill.svg | 0 .../css/libs/bootstrap-icons/bug.svg | 0 .../css/libs/bootstrap-icons/building.svg | 0 .../css/libs/bootstrap-icons/bullseye.svg | 0 .../libs/bootstrap-icons/calculator-fill.svg | 0 .../css/libs/bootstrap-icons/calculator.svg | 0 .../bootstrap-icons/calendar-check-fill.svg | 0 .../libs/bootstrap-icons/calendar-check.svg | 0 .../bootstrap-icons/calendar-date-fill.svg | 0 .../libs/bootstrap-icons/calendar-date.svg | 0 .../bootstrap-icons/calendar-day-fill.svg | 0 .../css/libs/bootstrap-icons/calendar-day.svg | 0 .../bootstrap-icons/calendar-event-fill.svg | 0 .../libs/bootstrap-icons/calendar-event.svg | 0 .../libs/bootstrap-icons/calendar-fill.svg | 0 .../bootstrap-icons/calendar-heart-fill.svg | 0 .../libs/bootstrap-icons/calendar-heart.svg | 0 .../bootstrap-icons/calendar-minus-fill.svg | 0 .../libs/bootstrap-icons/calendar-minus.svg | 0 .../bootstrap-icons/calendar-month-fill.svg | 0 .../libs/bootstrap-icons/calendar-month.svg | 0 .../bootstrap-icons/calendar-plus-fill.svg | 0 .../libs/bootstrap-icons/calendar-plus.svg | 0 .../bootstrap-icons/calendar-range-fill.svg | 0 .../libs/bootstrap-icons/calendar-range.svg | 0 .../bootstrap-icons/calendar-week-fill.svg | 0 .../libs/bootstrap-icons/calendar-week.svg | 0 .../libs/bootstrap-icons/calendar-x-fill.svg | 0 .../css/libs/bootstrap-icons/calendar-x.svg | 0 .../css/libs/bootstrap-icons/calendar.svg | 0 .../bootstrap-icons/calendar2-check-fill.svg | 0 .../libs/bootstrap-icons/calendar2-check.svg | 0 .../bootstrap-icons/calendar2-date-fill.svg | 0 .../libs/bootstrap-icons/calendar2-date.svg | 0 .../bootstrap-icons/calendar2-day-fill.svg | 0 .../libs/bootstrap-icons/calendar2-day.svg | 0 .../bootstrap-icons/calendar2-event-fill.svg | 0 .../libs/bootstrap-icons/calendar2-event.svg | 0 .../libs/bootstrap-icons/calendar2-fill.svg | 0 .../bootstrap-icons/calendar2-heart-fill.svg | 0 .../libs/bootstrap-icons/calendar2-heart.svg | 0 .../bootstrap-icons/calendar2-minus-fill.svg | 0 .../libs/bootstrap-icons/calendar2-minus.svg | 0 .../bootstrap-icons/calendar2-month-fill.svg | 0 .../libs/bootstrap-icons/calendar2-month.svg | 0 .../bootstrap-icons/calendar2-plus-fill.svg | 0 .../libs/bootstrap-icons/calendar2-plus.svg | 0 .../bootstrap-icons/calendar2-range-fill.svg | 0 .../libs/bootstrap-icons/calendar2-range.svg | 0 .../bootstrap-icons/calendar2-week-fill.svg | 0 .../libs/bootstrap-icons/calendar2-week.svg | 0 .../libs/bootstrap-icons/calendar2-x-fill.svg | 0 .../css/libs/bootstrap-icons/calendar2-x.svg | 0 .../css/libs/bootstrap-icons/calendar2.svg | 0 .../bootstrap-icons/calendar3-event-fill.svg | 0 .../libs/bootstrap-icons/calendar3-event.svg | 0 .../libs/bootstrap-icons/calendar3-fill.svg | 0 .../bootstrap-icons/calendar3-range-fill.svg | 0 .../libs/bootstrap-icons/calendar3-range.svg | 0 .../bootstrap-icons/calendar3-week-fill.svg | 0 .../libs/bootstrap-icons/calendar3-week.svg | 0 .../css/libs/bootstrap-icons/calendar3.svg | 0 .../libs/bootstrap-icons/calendar4-event.svg | 0 .../libs/bootstrap-icons/calendar4-range.svg | 0 .../libs/bootstrap-icons/calendar4-week.svg | 0 .../css/libs/bootstrap-icons/calendar4.svg | 0 .../css/libs/bootstrap-icons/camera-fill.svg | 0 .../bootstrap-icons/camera-reels-fill.svg | 0 .../css/libs/bootstrap-icons/camera-reels.svg | 0 .../bootstrap-icons/camera-video-fill.svg | 0 .../bootstrap-icons/camera-video-off-fill.svg | 0 .../libs/bootstrap-icons/camera-video-off.svg | 0 .../css/libs/bootstrap-icons/camera-video.svg | 0 .../css/libs/bootstrap-icons/camera.svg | 0 .../css/libs/bootstrap-icons/camera2.svg | 0 .../libs/bootstrap-icons/capslock-fill.svg | 0 .../css/libs/bootstrap-icons/capslock.svg | 0 .../libs/bootstrap-icons/card-checklist.svg | 0 .../css/libs/bootstrap-icons/card-heading.svg | 0 .../css/libs/bootstrap-icons/card-image.svg | 0 .../css/libs/bootstrap-icons/card-list.svg | 0 .../css/libs/bootstrap-icons/card-text.svg | 0 .../libs/bootstrap-icons/caret-down-fill.svg | 0 .../caret-down-square-fill.svg | 0 .../bootstrap-icons/caret-down-square.svg | 0 .../css/libs/bootstrap-icons/caret-down.svg | 0 .../libs/bootstrap-icons/caret-left-fill.svg | 0 .../caret-left-square-fill.svg | 0 .../bootstrap-icons/caret-left-square.svg | 0 .../css/libs/bootstrap-icons/caret-left.svg | 0 .../libs/bootstrap-icons/caret-right-fill.svg | 0 .../caret-right-square-fill.svg | 0 .../bootstrap-icons/caret-right-square.svg | 0 .../css/libs/bootstrap-icons/caret-right.svg | 0 .../libs/bootstrap-icons/caret-up-fill.svg | 0 .../bootstrap-icons/caret-up-square-fill.svg | 0 .../libs/bootstrap-icons/caret-up-square.svg | 0 .../css/libs/bootstrap-icons/caret-up.svg | 0 .../libs/bootstrap-icons/cart-check-fill.svg | 0 .../css/libs/bootstrap-icons/cart-check.svg | 0 .../libs/bootstrap-icons/cart-dash-fill.svg | 0 .../css/libs/bootstrap-icons/cart-dash.svg | 0 .../css/libs/bootstrap-icons/cart-fill.svg | 0 .../libs/bootstrap-icons/cart-plus-fill.svg | 0 .../css/libs/bootstrap-icons/cart-plus.svg | 0 .../css/libs/bootstrap-icons/cart-x-fill.svg | 0 .../css/libs/bootstrap-icons/cart-x.svg | 0 .../css/libs/bootstrap-icons/cart.svg | 0 .../css/libs/bootstrap-icons/cart2.svg | 0 .../css/libs/bootstrap-icons/cart3.svg | 0 .../css/libs/bootstrap-icons/cart4.svg | 0 .../css/libs/bootstrap-icons/cash-coin.svg | 0 .../css/libs/bootstrap-icons/cash-stack.svg | 0 .../css/libs/bootstrap-icons/cash.svg | 0 .../css/libs/bootstrap-icons/cast.svg | 0 .../libs/bootstrap-icons/chat-dots-fill.svg | 0 .../css/libs/bootstrap-icons/chat-dots.svg | 0 .../css/libs/bootstrap-icons/chat-fill.svg | 0 .../libs/bootstrap-icons/chat-heart-fill.svg | 0 .../css/libs/bootstrap-icons/chat-heart.svg | 0 .../bootstrap-icons/chat-left-dots-fill.svg | 0 .../libs/bootstrap-icons/chat-left-dots.svg | 0 .../libs/bootstrap-icons/chat-left-fill.svg | 0 .../bootstrap-icons/chat-left-heart-fill.svg | 0 .../libs/bootstrap-icons/chat-left-heart.svg | 0 .../bootstrap-icons/chat-left-quote-fill.svg | 0 .../libs/bootstrap-icons/chat-left-quote.svg | 0 .../bootstrap-icons/chat-left-text-fill.svg | 0 .../libs/bootstrap-icons/chat-left-text.svg | 0 .../css/libs/bootstrap-icons/chat-left.svg | 0 .../libs/bootstrap-icons/chat-quote-fill.svg | 0 .../css/libs/bootstrap-icons/chat-quote.svg | 0 .../bootstrap-icons/chat-right-dots-fill.svg | 0 .../libs/bootstrap-icons/chat-right-dots.svg | 0 .../libs/bootstrap-icons/chat-right-fill.svg | 0 .../bootstrap-icons/chat-right-heart-fill.svg | 0 .../libs/bootstrap-icons/chat-right-heart.svg | 0 .../bootstrap-icons/chat-right-quote-fill.svg | 0 .../libs/bootstrap-icons/chat-right-quote.svg | 0 .../bootstrap-icons/chat-right-text-fill.svg | 0 .../libs/bootstrap-icons/chat-right-text.svg | 0 .../css/libs/bootstrap-icons/chat-right.svg | 0 .../bootstrap-icons/chat-square-dots-fill.svg | 0 .../libs/bootstrap-icons/chat-square-dots.svg | 0 .../libs/bootstrap-icons/chat-square-fill.svg | 0 .../chat-square-heart-fill.svg | 0 .../bootstrap-icons/chat-square-heart.svg | 0 .../chat-square-quote-fill.svg | 0 .../bootstrap-icons/chat-square-quote.svg | 0 .../bootstrap-icons/chat-square-text-fill.svg | 0 .../libs/bootstrap-icons/chat-square-text.svg | 0 .../css/libs/bootstrap-icons/chat-square.svg | 0 .../libs/bootstrap-icons/chat-text-fill.svg | 0 .../css/libs/bootstrap-icons/chat-text.svg | 0 .../css/libs/bootstrap-icons/chat.svg | 0 .../css/libs/bootstrap-icons/check-all.svg | 0 .../bootstrap-icons/check-circle-fill.svg | 0 .../css/libs/bootstrap-icons/check-circle.svg | 0 .../css/libs/bootstrap-icons/check-lg.svg | 0 .../bootstrap-icons/check-square-fill.svg | 0 .../css/libs/bootstrap-icons/check-square.svg | 0 .../css/libs/bootstrap-icons/check.svg | 0 .../css/libs/bootstrap-icons/check2-all.svg | 0 .../libs/bootstrap-icons/check2-circle.svg | 0 .../libs/bootstrap-icons/check2-square.svg | 0 .../css/libs/bootstrap-icons/check2.svg | 0 .../bootstrap-icons/chevron-bar-contract.svg | 0 .../libs/bootstrap-icons/chevron-bar-down.svg | 0 .../bootstrap-icons/chevron-bar-expand.svg | 0 .../libs/bootstrap-icons/chevron-bar-left.svg | 0 .../bootstrap-icons/chevron-bar-right.svg | 0 .../libs/bootstrap-icons/chevron-bar-up.svg | 0 .../bootstrap-icons/chevron-compact-down.svg | 0 .../bootstrap-icons/chevron-compact-left.svg | 0 .../bootstrap-icons/chevron-compact-right.svg | 0 .../bootstrap-icons/chevron-compact-up.svg | 0 .../libs/bootstrap-icons/chevron-contract.svg | 0 .../bootstrap-icons/chevron-double-down.svg | 0 .../bootstrap-icons/chevron-double-left.svg | 0 .../bootstrap-icons/chevron-double-right.svg | 0 .../bootstrap-icons/chevron-double-up.svg | 0 .../css/libs/bootstrap-icons/chevron-down.svg | 0 .../libs/bootstrap-icons/chevron-expand.svg | 0 .../css/libs/bootstrap-icons/chevron-left.svg | 0 .../libs/bootstrap-icons/chevron-right.svg | 0 .../css/libs/bootstrap-icons/chevron-up.svg | 0 .../css/libs/bootstrap-icons/circle-fill.svg | 0 .../css/libs/bootstrap-icons/circle-half.svg | 0 .../libs/bootstrap-icons/circle-square.svg | 0 .../css/libs/bootstrap-icons/circle.svg | 0 .../bootstrap-icons/clipboard-check-fill.svg | 0 .../libs/bootstrap-icons/clipboard-check.svg | 0 .../bootstrap-icons/clipboard-data-fill.svg | 0 .../libs/bootstrap-icons/clipboard-data.svg | 0 .../libs/bootstrap-icons/clipboard-fill.svg | 0 .../bootstrap-icons/clipboard-heart-fill.svg | 0 .../libs/bootstrap-icons/clipboard-heart.svg | 0 .../bootstrap-icons/clipboard-minus-fill.svg | 0 .../libs/bootstrap-icons/clipboard-minus.svg | 0 .../bootstrap-icons/clipboard-plus-fill.svg | 0 .../libs/bootstrap-icons/clipboard-plus.svg | 0 .../libs/bootstrap-icons/clipboard-pulse.svg | 0 .../libs/bootstrap-icons/clipboard-x-fill.svg | 0 .../css/libs/bootstrap-icons/clipboard-x.svg | 0 .../css/libs/bootstrap-icons/clipboard.svg | 0 .../bootstrap-icons/clipboard2-check-fill.svg | 0 .../libs/bootstrap-icons/clipboard2-check.svg | 0 .../bootstrap-icons/clipboard2-data-fill.svg | 0 .../libs/bootstrap-icons/clipboard2-data.svg | 0 .../libs/bootstrap-icons/clipboard2-fill.svg | 0 .../bootstrap-icons/clipboard2-heart-fill.svg | 0 .../libs/bootstrap-icons/clipboard2-heart.svg | 0 .../bootstrap-icons/clipboard2-minus-fill.svg | 0 .../libs/bootstrap-icons/clipboard2-minus.svg | 0 .../bootstrap-icons/clipboard2-plus-fill.svg | 0 .../libs/bootstrap-icons/clipboard2-plus.svg | 0 .../bootstrap-icons/clipboard2-pulse-fill.svg | 0 .../libs/bootstrap-icons/clipboard2-pulse.svg | 0 .../bootstrap-icons/clipboard2-x-fill.svg | 0 .../css/libs/bootstrap-icons/clipboard2-x.svg | 0 .../css/libs/bootstrap-icons/clipboard2.svg | 0 .../css/libs/bootstrap-icons/clock-fill.svg | 0 .../libs/bootstrap-icons/clock-history.svg | 0 .../css/libs/bootstrap-icons/clock.svg | 0 .../bootstrap-icons/cloud-arrow-down-fill.svg | 0 .../libs/bootstrap-icons/cloud-arrow-down.svg | 0 .../bootstrap-icons/cloud-arrow-up-fill.svg | 0 .../libs/bootstrap-icons/cloud-arrow-up.svg | 0 .../libs/bootstrap-icons/cloud-check-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-check.svg | 0 .../bootstrap-icons/cloud-download-fill.svg | 0 .../libs/bootstrap-icons/cloud-download.svg | 0 .../bootstrap-icons/cloud-drizzle-fill.svg | 0 .../libs/bootstrap-icons/cloud-drizzle.svg | 0 .../css/libs/bootstrap-icons/cloud-fill.svg | 0 .../libs/bootstrap-icons/cloud-fog-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-fog.svg | 0 .../libs/bootstrap-icons/cloud-fog2-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-fog2.svg | 0 .../libs/bootstrap-icons/cloud-hail-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-hail.svg | 0 .../libs/bootstrap-icons/cloud-haze-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-haze.svg | 0 .../libs/bootstrap-icons/cloud-haze2-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-haze2.svg | 0 .../bootstrap-icons/cloud-lightning-fill.svg | 0 .../cloud-lightning-rain-fill.svg | 0 .../bootstrap-icons/cloud-lightning-rain.svg | 0 .../libs/bootstrap-icons/cloud-lightning.svg | 0 .../libs/bootstrap-icons/cloud-minus-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-minus.svg | 0 .../libs/bootstrap-icons/cloud-moon-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-moon.svg | 0 .../libs/bootstrap-icons/cloud-plus-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-plus.svg | 0 .../libs/bootstrap-icons/cloud-rain-fill.svg | 0 .../bootstrap-icons/cloud-rain-heavy-fill.svg | 0 .../libs/bootstrap-icons/cloud-rain-heavy.svg | 0 .../css/libs/bootstrap-icons/cloud-rain.svg | 0 .../libs/bootstrap-icons/cloud-slash-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-slash.svg | 0 .../libs/bootstrap-icons/cloud-sleet-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-sleet.svg | 0 .../libs/bootstrap-icons/cloud-snow-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-snow.svg | 0 .../libs/bootstrap-icons/cloud-sun-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-sun.svg | 0 .../bootstrap-icons/cloud-upload-fill.svg | 0 .../css/libs/bootstrap-icons/cloud-upload.svg | 0 .../css/libs/bootstrap-icons/cloud.svg | 0 .../css/libs/bootstrap-icons/clouds-fill.svg | 0 .../css/libs/bootstrap-icons/clouds.svg | 0 .../css/libs/bootstrap-icons/cloudy-fill.svg | 0 .../css/libs/bootstrap-icons/cloudy.svg | 0 .../css/libs/bootstrap-icons/code-slash.svg | 0 .../css/libs/bootstrap-icons/code-square.svg | 0 .../css/libs/bootstrap-icons/code.svg | 0 .../css/libs/bootstrap-icons/coin.svg | 0 .../libs/bootstrap-icons/collection-fill.svg | 0 .../bootstrap-icons/collection-play-fill.svg | 0 .../libs/bootstrap-icons/collection-play.svg | 0 .../css/libs/bootstrap-icons/collection.svg | 0 .../css/libs/bootstrap-icons/columns-gap.svg | 0 .../css/libs/bootstrap-icons/columns.svg | 0 .../css/libs/bootstrap-icons/command.svg | 0 .../css/libs/bootstrap-icons/compass-fill.svg | 0 .../css/libs/bootstrap-icons/compass.svg | 0 .../css/libs/bootstrap-icons/cone-striped.svg | 0 .../css/libs/bootstrap-icons/cone.svg | 0 .../css/libs/bootstrap-icons/controller.svg | 0 .../css/libs/bootstrap-icons/cpu-fill.svg | 0 .../css/libs/bootstrap-icons/cpu.svg | 0 .../credit-card-2-back-fill.svg | 0 .../bootstrap-icons/credit-card-2-back.svg | 0 .../credit-card-2-front-fill.svg | 0 .../bootstrap-icons/credit-card-2-front.svg | 0 .../libs/bootstrap-icons/credit-card-fill.svg | 0 .../css/libs/bootstrap-icons/credit-card.svg | 0 .../css/libs/bootstrap-icons/crop.svg | 0 .../css/libs/bootstrap-icons/cup-fill.svg | 0 .../css/libs/bootstrap-icons/cup-straw.svg | 0 .../css/libs/bootstrap-icons/cup.svg | 0 .../libs/bootstrap-icons/currency-bitcoin.svg | 0 .../libs/bootstrap-icons/currency-dollar.svg | 0 .../libs/bootstrap-icons/currency-euro.svg | 0 .../bootstrap-icons/currency-exchange.svg | 0 .../libs/bootstrap-icons/currency-pound.svg | 0 .../css/libs/bootstrap-icons/currency-yen.svg | 0 .../css/libs/bootstrap-icons/cursor-fill.svg | 0 .../css/libs/bootstrap-icons/cursor-text.svg | 0 .../css/libs/bootstrap-icons/cursor.svg | 0 .../bootstrap-icons/dash-circle-dotted.svg | 0 .../libs/bootstrap-icons/dash-circle-fill.svg | 0 .../css/libs/bootstrap-icons/dash-circle.svg | 0 .../css/libs/bootstrap-icons/dash-lg.svg | 0 .../bootstrap-icons/dash-square-dotted.svg | 0 .../libs/bootstrap-icons/dash-square-fill.svg | 0 .../css/libs/bootstrap-icons/dash-square.svg | 0 .../css/libs/bootstrap-icons/dash.svg | 0 .../libs/bootstrap-icons/device-hdd-fill.svg | 0 .../css/libs/bootstrap-icons/device-hdd.svg | 0 .../libs/bootstrap-icons/device-ssd-fill.svg | 0 .../css/libs/bootstrap-icons/device-ssd.svg | 0 .../libs/bootstrap-icons/diagram-2-fill.svg | 0 .../css/libs/bootstrap-icons/diagram-2.svg | 0 .../libs/bootstrap-icons/diagram-3-fill.svg | 0 .../css/libs/bootstrap-icons/diagram-3.svg | 0 .../css/libs/bootstrap-icons/diamond-fill.svg | 0 .../css/libs/bootstrap-icons/diamond-half.svg | 0 .../css/libs/bootstrap-icons/diamond.svg | 0 .../css/libs/bootstrap-icons/dice-1-fill.svg | 0 .../css/libs/bootstrap-icons/dice-1.svg | 0 .../css/libs/bootstrap-icons/dice-2-fill.svg | 0 .../css/libs/bootstrap-icons/dice-2.svg | 0 .../css/libs/bootstrap-icons/dice-3-fill.svg | 0 .../css/libs/bootstrap-icons/dice-3.svg | 0 .../css/libs/bootstrap-icons/dice-4-fill.svg | 0 .../css/libs/bootstrap-icons/dice-4.svg | 0 .../css/libs/bootstrap-icons/dice-5-fill.svg | 0 .../css/libs/bootstrap-icons/dice-5.svg | 0 .../css/libs/bootstrap-icons/dice-6-fill.svg | 0 .../css/libs/bootstrap-icons/dice-6.svg | 0 .../css/libs/bootstrap-icons/disc-fill.svg | 0 .../css/libs/bootstrap-icons/disc.svg | 0 .../css/libs/bootstrap-icons/discord.svg | 0 .../css/libs/bootstrap-icons/display-fill.svg | 0 .../css/libs/bootstrap-icons/display.svg | 0 .../libs/bootstrap-icons/displayport-fill.svg | 0 .../css/libs/bootstrap-icons/displayport.svg | 0 .../bootstrap-icons/distribute-horizontal.svg | 0 .../bootstrap-icons/distribute-vertical.svg | 0 .../libs/bootstrap-icons/door-closed-fill.svg | 0 .../css/libs/bootstrap-icons/door-closed.svg | 0 .../libs/bootstrap-icons/door-open-fill.svg | 0 .../css/libs/bootstrap-icons/door-open.svg | 0 .../css/libs/bootstrap-icons/dot.svg | 0 .../css/libs/bootstrap-icons/download.svg | 0 .../css/libs/bootstrap-icons/dpad-fill.svg | 0 .../css/libs/bootstrap-icons/dpad.svg | 0 .../css/libs/bootstrap-icons/dribbble.svg | 0 .../css/libs/bootstrap-icons/droplet-fill.svg | 0 .../css/libs/bootstrap-icons/droplet-half.svg | 0 .../css/libs/bootstrap-icons/droplet.svg | 0 .../css/libs/bootstrap-icons/ear-fill.svg | 0 .../css/libs/bootstrap-icons/ear.svg | 0 .../css/libs/bootstrap-icons/earbuds.svg | 0 .../css/libs/bootstrap-icons/easel-fill.svg | 0 .../css/libs/bootstrap-icons/easel.svg | 0 .../css/libs/bootstrap-icons/easel2-fill.svg | 0 .../css/libs/bootstrap-icons/easel2.svg | 0 .../css/libs/bootstrap-icons/easel3-fill.svg | 0 .../css/libs/bootstrap-icons/easel3.svg | 0 .../css/libs/bootstrap-icons/egg-fill.svg | 0 .../css/libs/bootstrap-icons/egg-fried.svg | 0 .../css/libs/bootstrap-icons/egg.svg | 0 .../css/libs/bootstrap-icons/eject-fill.svg | 0 .../css/libs/bootstrap-icons/eject.svg | 0 .../libs/bootstrap-icons/emoji-angry-fill.svg | 0 .../css/libs/bootstrap-icons/emoji-angry.svg | 0 .../libs/bootstrap-icons/emoji-dizzy-fill.svg | 0 .../css/libs/bootstrap-icons/emoji-dizzy.svg | 0 .../emoji-expressionless-fill.svg | 0 .../bootstrap-icons/emoji-expressionless.svg | 0 .../libs/bootstrap-icons/emoji-frown-fill.svg | 0 .../css/libs/bootstrap-icons/emoji-frown.svg | 0 .../bootstrap-icons/emoji-heart-eyes-fill.svg | 0 .../libs/bootstrap-icons/emoji-heart-eyes.svg | 0 .../libs/bootstrap-icons/emoji-kiss-fill.svg | 0 .../css/libs/bootstrap-icons/emoji-kiss.svg | 0 .../bootstrap-icons/emoji-laughing-fill.svg | 0 .../libs/bootstrap-icons/emoji-laughing.svg | 0 .../bootstrap-icons/emoji-neutral-fill.svg | 0 .../libs/bootstrap-icons/emoji-neutral.svg | 0 .../libs/bootstrap-icons/emoji-smile-fill.svg | 0 .../emoji-smile-upside-down-fill.svg | 0 .../emoji-smile-upside-down.svg | 0 .../css/libs/bootstrap-icons/emoji-smile.svg | 0 .../bootstrap-icons/emoji-sunglasses-fill.svg | 0 .../libs/bootstrap-icons/emoji-sunglasses.svg | 0 .../libs/bootstrap-icons/emoji-wink-fill.svg | 0 .../css/libs/bootstrap-icons/emoji-wink.svg | 0 .../bootstrap-icons/envelope-check-fill.svg | 0 .../libs/bootstrap-icons/envelope-check.svg | 0 .../bootstrap-icons/envelope-dash-fill.svg | 0 .../libs/bootstrap-icons/envelope-dash.svg | 0 .../envelope-exclamation-fill.svg | 0 .../bootstrap-icons/envelope-exclamation.svg | 0 .../libs/bootstrap-icons/envelope-fill.svg | 0 .../bootstrap-icons/envelope-heart-fill.svg | 0 .../libs/bootstrap-icons/envelope-heart.svg | 0 .../bootstrap-icons/envelope-open-fill.svg | 0 .../envelope-open-heart-fill.svg | 0 .../bootstrap-icons/envelope-open-heart.svg | 0 .../libs/bootstrap-icons/envelope-open.svg | 0 .../bootstrap-icons/envelope-paper-fill.svg | 0 .../envelope-paper-heart-fill.svg | 0 .../bootstrap-icons/envelope-paper-heart.svg | 0 .../libs/bootstrap-icons/envelope-paper.svg | 0 .../bootstrap-icons/envelope-plus-fill.svg | 0 .../libs/bootstrap-icons/envelope-plus.svg | 0 .../bootstrap-icons/envelope-slash-fill.svg | 0 .../libs/bootstrap-icons/envelope-slash.svg | 0 .../libs/bootstrap-icons/envelope-x-fill.svg | 0 .../css/libs/bootstrap-icons/envelope-x.svg | 0 .../css/libs/bootstrap-icons/envelope.svg | 0 .../css/libs/bootstrap-icons/eraser-fill.svg | 0 .../css/libs/bootstrap-icons/eraser.svg | 0 .../css/libs/bootstrap-icons/ethernet.svg | 0 .../exclamation-circle-fill.svg | 0 .../bootstrap-icons/exclamation-circle.svg | 0 .../exclamation-diamond-fill.svg | 0 .../bootstrap-icons/exclamation-diamond.svg | 0 .../libs/bootstrap-icons/exclamation-lg.svg | 0 .../exclamation-octagon-fill.svg | 0 .../bootstrap-icons/exclamation-octagon.svg | 0 .../exclamation-square-fill.svg | 0 .../bootstrap-icons/exclamation-square.svg | 0 .../exclamation-triangle-fill.svg | 0 .../bootstrap-icons/exclamation-triangle.svg | 0 .../css/libs/bootstrap-icons/exclamation.svg | 0 .../css/libs/bootstrap-icons/exclude.svg | 0 .../libs/bootstrap-icons/explicit-fill.svg | 0 .../css/libs/bootstrap-icons/explicit.svg | 0 .../css/libs/bootstrap-icons/eye-fill.svg | 0 .../libs/bootstrap-icons/eye-slash-fill.svg | 0 .../css/libs/bootstrap-icons/eye-slash.svg | 0 .../css/libs/bootstrap-icons/eye.svg | 0 .../css/libs/bootstrap-icons/eyedropper.svg | 0 .../css/libs/bootstrap-icons/eyeglasses.svg | 0 .../css/libs/bootstrap-icons/facebook.svg | 0 .../css/libs/bootstrap-icons/fan.svg | 0 .../bootstrap-icons/file-arrow-down-fill.svg | 0 .../libs/bootstrap-icons/file-arrow-down.svg | 0 .../bootstrap-icons/file-arrow-up-fill.svg | 0 .../libs/bootstrap-icons/file-arrow-up.svg | 0 .../bootstrap-icons/file-bar-graph-fill.svg | 0 .../libs/bootstrap-icons/file-bar-graph.svg | 0 .../libs/bootstrap-icons/file-binary-fill.svg | 0 .../css/libs/bootstrap-icons/file-binary.svg | 0 .../libs/bootstrap-icons/file-break-fill.svg | 0 .../css/libs/bootstrap-icons/file-break.svg | 0 .../libs/bootstrap-icons/file-check-fill.svg | 0 .../css/libs/bootstrap-icons/file-check.svg | 0 .../libs/bootstrap-icons/file-code-fill.svg | 0 .../css/libs/bootstrap-icons/file-code.svg | 0 .../libs/bootstrap-icons/file-diff-fill.svg | 0 .../css/libs/bootstrap-icons/file-diff.svg | 0 .../file-earmark-arrow-down-fill.svg | 0 .../file-earmark-arrow-down.svg | 0 .../file-earmark-arrow-up-fill.svg | 0 .../bootstrap-icons/file-earmark-arrow-up.svg | 0 .../file-earmark-bar-graph-fill.svg | 0 .../file-earmark-bar-graph.svg | 0 .../file-earmark-binary-fill.svg | 0 .../bootstrap-icons/file-earmark-binary.svg | 0 .../file-earmark-break-fill.svg | 0 .../bootstrap-icons/file-earmark-break.svg | 0 .../file-earmark-check-fill.svg | 0 .../bootstrap-icons/file-earmark-check.svg | 0 .../file-earmark-code-fill.svg | 0 .../bootstrap-icons/file-earmark-code.svg | 0 .../file-earmark-diff-fill.svg | 0 .../bootstrap-icons/file-earmark-diff.svg | 0 .../file-earmark-easel-fill.svg | 0 .../bootstrap-icons/file-earmark-easel.svg | 0 .../file-earmark-excel-fill.svg | 0 .../bootstrap-icons/file-earmark-excel.svg | 0 .../bootstrap-icons/file-earmark-fill.svg | 0 .../file-earmark-font-fill.svg | 0 .../bootstrap-icons/file-earmark-font.svg | 0 .../file-earmark-image-fill.svg | 0 .../bootstrap-icons/file-earmark-image.svg | 0 .../file-earmark-lock-fill.svg | 0 .../bootstrap-icons/file-earmark-lock.svg | 0 .../file-earmark-lock2-fill.svg | 0 .../bootstrap-icons/file-earmark-lock2.svg | 0 .../file-earmark-medical-fill.svg | 0 .../bootstrap-icons/file-earmark-medical.svg | 0 .../file-earmark-minus-fill.svg | 0 .../bootstrap-icons/file-earmark-minus.svg | 0 .../file-earmark-music-fill.svg | 0 .../bootstrap-icons/file-earmark-music.svg | 0 .../bootstrap-icons/file-earmark-pdf-fill.svg | 0 .../libs/bootstrap-icons/file-earmark-pdf.svg | 0 .../file-earmark-person-fill.svg | 0 .../bootstrap-icons/file-earmark-person.svg | 0 .../file-earmark-play-fill.svg | 0 .../bootstrap-icons/file-earmark-play.svg | 0 .../file-earmark-plus-fill.svg | 0 .../bootstrap-icons/file-earmark-plus.svg | 0 .../file-earmark-post-fill.svg | 0 .../bootstrap-icons/file-earmark-post.svg | 0 .../bootstrap-icons/file-earmark-ppt-fill.svg | 0 .../libs/bootstrap-icons/file-earmark-ppt.svg | 0 .../file-earmark-richtext-fill.svg | 0 .../bootstrap-icons/file-earmark-richtext.svg | 0 .../file-earmark-ruled-fill.svg | 0 .../bootstrap-icons/file-earmark-ruled.svg | 0 .../file-earmark-slides-fill.svg | 0 .../bootstrap-icons/file-earmark-slides.svg | 0 .../file-earmark-spreadsheet-fill.svg | 0 .../file-earmark-spreadsheet.svg | 0 .../file-earmark-text-fill.svg | 0 .../bootstrap-icons/file-earmark-text.svg | 0 .../file-earmark-word-fill.svg | 0 .../bootstrap-icons/file-earmark-word.svg | 0 .../bootstrap-icons/file-earmark-x-fill.svg | 0 .../libs/bootstrap-icons/file-earmark-x.svg | 0 .../bootstrap-icons/file-earmark-zip-fill.svg | 0 .../libs/bootstrap-icons/file-earmark-zip.svg | 0 .../css/libs/bootstrap-icons/file-earmark.svg | 0 .../libs/bootstrap-icons/file-easel-fill.svg | 0 .../css/libs/bootstrap-icons/file-easel.svg | 0 .../libs/bootstrap-icons/file-excel-fill.svg | 0 .../css/libs/bootstrap-icons/file-excel.svg | 0 .../css/libs/bootstrap-icons/file-fill.svg | 0 .../libs/bootstrap-icons/file-font-fill.svg | 0 .../css/libs/bootstrap-icons/file-font.svg | 0 .../libs/bootstrap-icons/file-image-fill.svg | 0 .../css/libs/bootstrap-icons/file-image.svg | 0 .../libs/bootstrap-icons/file-lock-fill.svg | 0 .../css/libs/bootstrap-icons/file-lock.svg | 0 .../libs/bootstrap-icons/file-lock2-fill.svg | 0 .../css/libs/bootstrap-icons/file-lock2.svg | 0 .../bootstrap-icons/file-medical-fill.svg | 0 .../css/libs/bootstrap-icons/file-medical.svg | 0 .../libs/bootstrap-icons/file-minus-fill.svg | 0 .../css/libs/bootstrap-icons/file-minus.svg | 0 .../libs/bootstrap-icons/file-music-fill.svg | 0 .../css/libs/bootstrap-icons/file-music.svg | 0 .../libs/bootstrap-icons/file-pdf-fill.svg | 0 .../css/libs/bootstrap-icons/file-pdf.svg | 0 .../libs/bootstrap-icons/file-person-fill.svg | 0 .../css/libs/bootstrap-icons/file-person.svg | 0 .../libs/bootstrap-icons/file-play-fill.svg | 0 .../css/libs/bootstrap-icons/file-play.svg | 0 .../libs/bootstrap-icons/file-plus-fill.svg | 0 .../css/libs/bootstrap-icons/file-plus.svg | 0 .../libs/bootstrap-icons/file-post-fill.svg | 0 .../css/libs/bootstrap-icons/file-post.svg | 0 .../libs/bootstrap-icons/file-ppt-fill.svg | 0 .../css/libs/bootstrap-icons/file-ppt.svg | 0 .../bootstrap-icons/file-richtext-fill.svg | 0 .../libs/bootstrap-icons/file-richtext.svg | 0 .../libs/bootstrap-icons/file-ruled-fill.svg | 0 .../css/libs/bootstrap-icons/file-ruled.svg | 0 .../libs/bootstrap-icons/file-slides-fill.svg | 0 .../css/libs/bootstrap-icons/file-slides.svg | 0 .../bootstrap-icons/file-spreadsheet-fill.svg | 0 .../libs/bootstrap-icons/file-spreadsheet.svg | 0 .../libs/bootstrap-icons/file-text-fill.svg | 0 .../css/libs/bootstrap-icons/file-text.svg | 0 .../libs/bootstrap-icons/file-word-fill.svg | 0 .../css/libs/bootstrap-icons/file-word.svg | 0 .../css/libs/bootstrap-icons/file-x-fill.svg | 0 .../css/libs/bootstrap-icons/file-x.svg | 0 .../libs/bootstrap-icons/file-zip-fill.svg | 0 .../css/libs/bootstrap-icons/file-zip.svg | 0 .../css/libs/bootstrap-icons/file.svg | 0 .../css/libs/bootstrap-icons/files-alt.svg | 0 .../css/libs/bootstrap-icons/files.svg | 0 .../css/libs/bootstrap-icons/filetype-aac.svg | 0 .../css/libs/bootstrap-icons/filetype-ai.svg | 0 .../css/libs/bootstrap-icons/filetype-bmp.svg | 0 .../css/libs/bootstrap-icons/filetype-cs.svg | 0 .../css/libs/bootstrap-icons/filetype-css.svg | 0 .../css/libs/bootstrap-icons/filetype-csv.svg | 0 .../css/libs/bootstrap-icons/filetype-doc.svg | 0 .../libs/bootstrap-icons/filetype-docx.svg | 0 .../css/libs/bootstrap-icons/filetype-exe.svg | 0 .../css/libs/bootstrap-icons/filetype-gif.svg | 0 .../libs/bootstrap-icons/filetype-heic.svg | 0 .../libs/bootstrap-icons/filetype-html.svg | 0 .../libs/bootstrap-icons/filetype-java.svg | 0 .../css/libs/bootstrap-icons/filetype-jpg.svg | 0 .../css/libs/bootstrap-icons/filetype-js.svg | 0 .../libs/bootstrap-icons/filetype-json.svg | 0 .../css/libs/bootstrap-icons/filetype-jsx.svg | 0 .../css/libs/bootstrap-icons/filetype-key.svg | 0 .../css/libs/bootstrap-icons/filetype-m4p.svg | 0 .../css/libs/bootstrap-icons/filetype-md.svg | 0 .../css/libs/bootstrap-icons/filetype-mdx.svg | 0 .../css/libs/bootstrap-icons/filetype-mov.svg | 0 .../css/libs/bootstrap-icons/filetype-mp3.svg | 0 .../css/libs/bootstrap-icons/filetype-mp4.svg | 0 .../css/libs/bootstrap-icons/filetype-otf.svg | 0 .../css/libs/bootstrap-icons/filetype-pdf.svg | 0 .../css/libs/bootstrap-icons/filetype-php.svg | 0 .../css/libs/bootstrap-icons/filetype-png.svg | 0 .../css/libs/bootstrap-icons/filetype-ppt.svg | 0 .../libs/bootstrap-icons/filetype-pptx.svg | 0 .../css/libs/bootstrap-icons/filetype-psd.svg | 0 .../css/libs/bootstrap-icons/filetype-py.svg | 0 .../css/libs/bootstrap-icons/filetype-raw.svg | 0 .../css/libs/bootstrap-icons/filetype-rb.svg | 0 .../libs/bootstrap-icons/filetype-sass.svg | 0 .../libs/bootstrap-icons/filetype-scss.svg | 0 .../css/libs/bootstrap-icons/filetype-sh.svg | 0 .../css/libs/bootstrap-icons/filetype-svg.svg | 0 .../libs/bootstrap-icons/filetype-tiff.svg | 0 .../css/libs/bootstrap-icons/filetype-tsx.svg | 0 .../css/libs/bootstrap-icons/filetype-ttf.svg | 0 .../css/libs/bootstrap-icons/filetype-txt.svg | 0 .../css/libs/bootstrap-icons/filetype-wav.svg | 0 .../libs/bootstrap-icons/filetype-woff.svg | 0 .../css/libs/bootstrap-icons/filetype-xls.svg | 0 .../libs/bootstrap-icons/filetype-xlsx.svg | 0 .../css/libs/bootstrap-icons/filetype-xml.svg | 0 .../css/libs/bootstrap-icons/filetype-yml.svg | 0 .../css/libs/bootstrap-icons/film.svg | 0 .../bootstrap-icons/filter-circle-fill.svg | 0 .../libs/bootstrap-icons/filter-circle.svg | 0 .../css/libs/bootstrap-icons/filter-left.svg | 0 .../css/libs/bootstrap-icons/filter-right.svg | 0 .../bootstrap-icons/filter-square-fill.svg | 0 .../libs/bootstrap-icons/filter-square.svg | 0 .../css/libs/bootstrap-icons/filter.svg | 0 .../css/libs/bootstrap-icons/fingerprint.svg | 0 .../css/libs/bootstrap-icons/flag-fill.svg | 0 .../css/libs/bootstrap-icons/flag.svg | 0 .../css/libs/bootstrap-icons/flower1.svg | 0 .../css/libs/bootstrap-icons/flower2.svg | 0 .../css/libs/bootstrap-icons/flower3.svg | 0 .../css/libs/bootstrap-icons/folder-check.svg | 0 .../css/libs/bootstrap-icons/folder-fill.svg | 0 .../css/libs/bootstrap-icons/folder-minus.svg | 0 .../css/libs/bootstrap-icons/folder-plus.svg | 0 .../bootstrap-icons/folder-symlink-fill.svg | 0 .../libs/bootstrap-icons/folder-symlink.svg | 0 .../css/libs/bootstrap-icons/folder-x.svg | 0 .../css/libs/bootstrap-icons/folder.svg | 0 .../css/libs/bootstrap-icons/folder2-open.svg | 0 .../css/libs/bootstrap-icons/folder2.svg | 0 .../css/libs/bootstrap-icons/fonts.svg | 0 .../fonts/bootstrap-icons.woff | Bin .../fonts/bootstrap-icons.woff2 | Bin .../css/libs/bootstrap-icons/forward-fill.svg | 0 .../css/libs/bootstrap-icons/forward.svg | 0 .../css/libs/bootstrap-icons/front.svg | 0 .../libs/bootstrap-icons/fullscreen-exit.svg | 0 .../css/libs/bootstrap-icons/fullscreen.svg | 0 .../css/libs/bootstrap-icons/funnel-fill.svg | 0 .../css/libs/bootstrap-icons/funnel.svg | 0 .../css/libs/bootstrap-icons/gear-fill.svg | 0 .../bootstrap-icons/gear-wide-connected.svg | 0 .../css/libs/bootstrap-icons/gear-wide.svg | 0 .../css/libs/bootstrap-icons/gear.svg | 0 .../css/libs/bootstrap-icons/gem.svg | 0 .../libs/bootstrap-icons/gender-ambiguous.svg | 0 .../libs/bootstrap-icons/gender-female.svg | 0 .../css/libs/bootstrap-icons/gender-male.svg | 0 .../css/libs/bootstrap-icons/gender-trans.svg | 0 .../css/libs/bootstrap-icons/geo-alt-fill.svg | 0 .../css/libs/bootstrap-icons/geo-alt.svg | 0 .../css/libs/bootstrap-icons/geo-fill.svg | 0 .../css/libs/bootstrap-icons/geo.svg | 0 .../css/libs/bootstrap-icons/gift-fill.svg | 0 .../css/libs/bootstrap-icons/gift.svg | 0 .../css/libs/bootstrap-icons/git.svg | 0 .../css/libs/bootstrap-icons/github.svg | 0 .../css/libs/bootstrap-icons/globe.svg | 0 .../css/libs/bootstrap-icons/globe2.svg | 0 .../css/libs/bootstrap-icons/google.svg | 0 .../css/libs/bootstrap-icons/gpu-card.svg | 0 .../libs/bootstrap-icons/graph-down-arrow.svg | 0 .../css/libs/bootstrap-icons/graph-down.svg | 0 .../libs/bootstrap-icons/graph-up-arrow.svg | 0 .../css/libs/bootstrap-icons/graph-up.svg | 0 .../libs/bootstrap-icons/grid-1x2-fill.svg | 0 .../css/libs/bootstrap-icons/grid-1x2.svg | 0 .../bootstrap-icons/grid-3x2-gap-fill.svg | 0 .../css/libs/bootstrap-icons/grid-3x2-gap.svg | 0 .../css/libs/bootstrap-icons/grid-3x2.svg | 0 .../bootstrap-icons/grid-3x3-gap-fill.svg | 0 .../css/libs/bootstrap-icons/grid-3x3-gap.svg | 0 .../css/libs/bootstrap-icons/grid-3x3.svg | 0 .../css/libs/bootstrap-icons/grid-fill.svg | 0 .../css/libs/bootstrap-icons/grid.svg | 0 .../libs/bootstrap-icons/grip-horizontal.svg | 0 .../libs/bootstrap-icons/grip-vertical.svg | 0 .../css/libs/bootstrap-icons/hammer.svg | 0 .../libs/bootstrap-icons/hand-index-fill.svg | 0 .../bootstrap-icons/hand-index-thumb-fill.svg | 0 .../libs/bootstrap-icons/hand-index-thumb.svg | 0 .../css/libs/bootstrap-icons/hand-index.svg | 0 .../bootstrap-icons/hand-thumbs-down-fill.svg | 0 .../libs/bootstrap-icons/hand-thumbs-down.svg | 0 .../bootstrap-icons/hand-thumbs-up-fill.svg | 0 .../libs/bootstrap-icons/hand-thumbs-up.svg | 0 .../css/libs/bootstrap-icons/handbag-fill.svg | 0 .../css/libs/bootstrap-icons/handbag.svg | 0 .../css/libs/bootstrap-icons/hash.svg | 0 .../css/libs/bootstrap-icons/hdd-fill.svg | 0 .../libs/bootstrap-icons/hdd-network-fill.svg | 0 .../css/libs/bootstrap-icons/hdd-network.svg | 0 .../libs/bootstrap-icons/hdd-rack-fill.svg | 0 .../css/libs/bootstrap-icons/hdd-rack.svg | 0 .../libs/bootstrap-icons/hdd-stack-fill.svg | 0 .../css/libs/bootstrap-icons/hdd-stack.svg | 0 .../css/libs/bootstrap-icons/hdd.svg | 0 .../css/libs/bootstrap-icons/hdmi-fill.svg | 0 .../css/libs/bootstrap-icons/hdmi.svg | 0 .../css/libs/bootstrap-icons/headphones.svg | 0 .../css/libs/bootstrap-icons/headset-vr.svg | 0 .../css/libs/bootstrap-icons/headset.svg | 0 .../css/libs/bootstrap-icons/heart-arrow.svg | 0 .../css/libs/bootstrap-icons/heart-fill.svg | 0 .../css/libs/bootstrap-icons/heart-half.svg | 0 .../libs/bootstrap-icons/heart-pulse-fill.svg | 0 .../css/libs/bootstrap-icons/heart-pulse.svg | 0 .../css/libs/bootstrap-icons/heart.svg | 0 .../libs/bootstrap-icons/heartbreak-fill.svg | 0 .../css/libs/bootstrap-icons/heartbreak.svg | 0 .../css/libs/bootstrap-icons/hearts.svg | 0 .../libs/bootstrap-icons/heptagon-fill.svg | 0 .../libs/bootstrap-icons/heptagon-half.svg | 0 .../css/libs/bootstrap-icons/heptagon.svg | 0 .../css/libs/bootstrap-icons/hexagon-fill.svg | 0 .../css/libs/bootstrap-icons/hexagon-half.svg | 0 .../css/libs/bootstrap-icons/hexagon.svg | 0 .../libs/bootstrap-icons/hospital-fill.svg | 0 .../css/libs/bootstrap-icons/hospital.svg | 0 .../libs/bootstrap-icons/hourglass-bottom.svg | 0 .../libs/bootstrap-icons/hourglass-split.svg | 0 .../libs/bootstrap-icons/hourglass-top.svg | 0 .../css/libs/bootstrap-icons/hourglass.svg | 0 .../libs/bootstrap-icons/house-door-fill.svg | 0 .../css/libs/bootstrap-icons/house-door.svg | 0 .../css/libs/bootstrap-icons/house-fill.svg | 0 .../libs/bootstrap-icons/house-heart-fill.svg | 0 .../css/libs/bootstrap-icons/house-heart.svg | 0 .../css/libs/bootstrap-icons/house.svg | 0 .../resources/css/libs/bootstrap-icons/hr.svg | 0 .../css/libs/bootstrap-icons/hurricane.svg | 0 .../css/libs/bootstrap-icons/hypnotize.svg | 0 .../css/libs/bootstrap-icons/image-alt.svg | 0 .../css/libs/bootstrap-icons/image-fill.svg | 0 .../css/libs/bootstrap-icons/image.svg | 0 .../css/libs/bootstrap-icons/images.svg | 0 .../css/libs/bootstrap-icons/inbox-fill.svg | 0 .../css/libs/bootstrap-icons/inbox.svg | 0 .../css/libs/bootstrap-icons/inboxes-fill.svg | 0 .../css/libs/bootstrap-icons/inboxes.svg | 0 .../css/libs/bootstrap-icons/incognito.svg | 0 .../css/libs/bootstrap-icons/index.html | 0 .../css/libs/bootstrap-icons/infinity.svg | 0 .../libs/bootstrap-icons/info-circle-fill.svg | 0 .../css/libs/bootstrap-icons/info-circle.svg | 0 .../css/libs/bootstrap-icons/info-lg.svg | 0 .../libs/bootstrap-icons/info-square-fill.svg | 0 .../css/libs/bootstrap-icons/info-square.svg | 0 .../css/libs/bootstrap-icons/info.svg | 0 .../bootstrap-icons/input-cursor-text.svg | 0 .../css/libs/bootstrap-icons/input-cursor.svg | 0 .../css/libs/bootstrap-icons/instagram.svg | 0 .../css/libs/bootstrap-icons/intersect.svg | 0 .../libs/bootstrap-icons/journal-album.svg | 0 .../bootstrap-icons/journal-arrow-down.svg | 0 .../libs/bootstrap-icons/journal-arrow-up.svg | 0 .../bootstrap-icons/journal-bookmark-fill.svg | 0 .../libs/bootstrap-icons/journal-bookmark.svg | 0 .../libs/bootstrap-icons/journal-check.svg | 0 .../css/libs/bootstrap-icons/journal-code.svg | 0 .../libs/bootstrap-icons/journal-medical.svg | 0 .../libs/bootstrap-icons/journal-minus.svg | 0 .../css/libs/bootstrap-icons/journal-plus.svg | 0 .../libs/bootstrap-icons/journal-richtext.svg | 0 .../css/libs/bootstrap-icons/journal-text.svg | 0 .../css/libs/bootstrap-icons/journal-x.svg | 0 .../css/libs/bootstrap-icons/journal.svg | 0 .../css/libs/bootstrap-icons/journals.svg | 0 .../css/libs/bootstrap-icons/joystick.svg | 0 .../css/libs/bootstrap-icons/justify-left.svg | 0 .../libs/bootstrap-icons/justify-right.svg | 0 .../css/libs/bootstrap-icons/justify.svg | 0 .../css/libs/bootstrap-icons/kanban-fill.svg | 0 .../css/libs/bootstrap-icons/kanban.svg | 0 .../css/libs/bootstrap-icons/key-fill.svg | 0 .../css/libs/bootstrap-icons/key.svg | 0 .../libs/bootstrap-icons/keyboard-fill.svg | 0 .../css/libs/bootstrap-icons/keyboard.svg | 0 .../css/libs/bootstrap-icons/ladder.svg | 0 .../css/libs/bootstrap-icons/lamp-fill.svg | 0 .../css/libs/bootstrap-icons/lamp.svg | 0 .../css/libs/bootstrap-icons/laptop-fill.svg | 0 .../css/libs/bootstrap-icons/laptop.svg | 0 .../libs/bootstrap-icons/layer-backward.svg | 0 .../libs/bootstrap-icons/layer-forward.svg | 0 .../css/libs/bootstrap-icons/layers-fill.svg | 0 .../css/libs/bootstrap-icons/layers-half.svg | 0 .../css/libs/bootstrap-icons/layers.svg | 0 .../layout-sidebar-inset-reverse.svg | 0 .../bootstrap-icons/layout-sidebar-inset.svg | 0 .../layout-sidebar-reverse.svg | 0 .../libs/bootstrap-icons/layout-sidebar.svg | 0 .../css/libs/bootstrap-icons/layout-split.svg | 0 .../layout-text-sidebar-reverse.svg | 0 .../bootstrap-icons/layout-text-sidebar.svg | 0 .../layout-text-window-reverse.svg | 0 .../bootstrap-icons/layout-text-window.svg | 0 .../bootstrap-icons/layout-three-columns.svg | 0 .../css/libs/bootstrap-icons/layout-wtf.svg | 0 .../libs/bootstrap-icons/life-preserver.svg | 0 .../libs/bootstrap-icons/lightbulb-fill.svg | 0 .../bootstrap-icons/lightbulb-off-fill.svg | 0 .../libs/bootstrap-icons/lightbulb-off.svg | 0 .../css/libs/bootstrap-icons/lightbulb.svg | 0 .../bootstrap-icons/lightning-charge-fill.svg | 0 .../libs/bootstrap-icons/lightning-charge.svg | 0 .../libs/bootstrap-icons/lightning-fill.svg | 0 .../css/libs/bootstrap-icons/lightning.svg | 0 .../css/libs/bootstrap-icons/line.svg | 0 .../css/libs/bootstrap-icons/link-45deg.svg | 0 .../css/libs/bootstrap-icons/link.svg | 0 .../css/libs/bootstrap-icons/linkedin.svg | 0 .../css/libs/bootstrap-icons/list-check.svg | 0 .../bootstrap-icons/list-columns-reverse.svg | 0 .../css/libs/bootstrap-icons/list-columns.svg | 0 .../css/libs/bootstrap-icons/list-nested.svg | 0 .../css/libs/bootstrap-icons/list-ol.svg | 0 .../css/libs/bootstrap-icons/list-stars.svg | 0 .../css/libs/bootstrap-icons/list-task.svg | 0 .../css/libs/bootstrap-icons/list-ul.svg | 0 .../css/libs/bootstrap-icons/list.svg | 0 .../css/libs/bootstrap-icons/lock-fill.svg | 0 .../css/libs/bootstrap-icons/lock.svg | 0 .../css/libs/bootstrap-icons/magic.svg | 0 .../css/libs/bootstrap-icons/magnet-fill.svg | 0 .../css/libs/bootstrap-icons/magnet.svg | 0 .../css/libs/bootstrap-icons/mailbox.svg | 0 .../css/libs/bootstrap-icons/mailbox2.svg | 0 .../css/libs/bootstrap-icons/map-fill.svg | 0 .../css/libs/bootstrap-icons/map.svg | 0 .../libs/bootstrap-icons/markdown-fill.svg | 0 .../css/libs/bootstrap-icons/markdown.svg | 0 .../css/libs/bootstrap-icons/mask.svg | 0 .../css/libs/bootstrap-icons/mastodon.svg | 0 .../css/libs/bootstrap-icons/medium.svg | 0 .../libs/bootstrap-icons/megaphone-fill.svg | 0 .../css/libs/bootstrap-icons/megaphone.svg | 0 .../css/libs/bootstrap-icons/memory.svg | 0 .../libs/bootstrap-icons/menu-app-fill.svg | 0 .../css/libs/bootstrap-icons/menu-app.svg | 0 .../libs/bootstrap-icons/menu-button-fill.svg | 0 .../bootstrap-icons/menu-button-wide-fill.svg | 0 .../libs/bootstrap-icons/menu-button-wide.svg | 0 .../css/libs/bootstrap-icons/menu-button.svg | 0 .../css/libs/bootstrap-icons/menu-down.svg | 0 .../css/libs/bootstrap-icons/menu-up.svg | 0 .../css/libs/bootstrap-icons/messenger.svg | 0 .../css/libs/bootstrap-icons/meta.svg | 0 .../css/libs/bootstrap-icons/mic-fill.svg | 0 .../libs/bootstrap-icons/mic-mute-fill.svg | 0 .../css/libs/bootstrap-icons/mic-mute.svg | 0 .../css/libs/bootstrap-icons/mic.svg | 0 .../css/libs/bootstrap-icons/microsoft.svg | 0 .../libs/bootstrap-icons/minecart-loaded.svg | 0 .../css/libs/bootstrap-icons/minecart.svg | 0 .../css/libs/bootstrap-icons/modem-fill.svg | 0 .../css/libs/bootstrap-icons/modem.svg | 0 .../css/libs/bootstrap-icons/moisture.svg | 0 .../css/libs/bootstrap-icons/moon-fill.svg | 0 .../libs/bootstrap-icons/moon-stars-fill.svg | 0 .../css/libs/bootstrap-icons/moon-stars.svg | 0 .../css/libs/bootstrap-icons/moon.svg | 0 .../libs/bootstrap-icons/mortarboard-fill.svg | 0 .../css/libs/bootstrap-icons/mortarboard.svg | 0 .../libs/bootstrap-icons/motherboard-fill.svg | 0 .../css/libs/bootstrap-icons/motherboard.svg | 0 .../css/libs/bootstrap-icons/mouse-fill.svg | 0 .../css/libs/bootstrap-icons/mouse.svg | 0 .../css/libs/bootstrap-icons/mouse2-fill.svg | 0 .../css/libs/bootstrap-icons/mouse2.svg | 0 .../css/libs/bootstrap-icons/mouse3-fill.svg | 0 .../css/libs/bootstrap-icons/mouse3.svg | 0 .../bootstrap-icons/music-note-beamed.svg | 0 .../libs/bootstrap-icons/music-note-list.svg | 0 .../css/libs/bootstrap-icons/music-note.svg | 0 .../bootstrap-icons/music-player-fill.svg | 0 .../css/libs/bootstrap-icons/music-player.svg | 0 .../css/libs/bootstrap-icons/newspaper.svg | 0 .../libs/bootstrap-icons/nintendo-switch.svg | 0 .../libs/bootstrap-icons/node-minus-fill.svg | 0 .../css/libs/bootstrap-icons/node-minus.svg | 0 .../libs/bootstrap-icons/node-plus-fill.svg | 0 .../css/libs/bootstrap-icons/node-plus.svg | 0 .../css/libs/bootstrap-icons/nut-fill.svg | 0 .../css/libs/bootstrap-icons/nut.svg | 0 .../css/libs/bootstrap-icons/octagon-fill.svg | 0 .../css/libs/bootstrap-icons/octagon-half.svg | 0 .../css/libs/bootstrap-icons/octagon.svg | 0 .../bootstrap-icons/optical-audio-fill.svg | 0 .../libs/bootstrap-icons/optical-audio.svg | 0 .../css/libs/bootstrap-icons/option.svg | 0 .../css/libs/bootstrap-icons/outlet.svg | 0 .../css/libs/bootstrap-icons/paint-bucket.svg | 0 .../css/libs/bootstrap-icons/palette-fill.svg | 0 .../css/libs/bootstrap-icons/palette.svg | 0 .../css/libs/bootstrap-icons/palette2.svg | 0 .../css/libs/bootstrap-icons/paperclip.svg | 0 .../css/libs/bootstrap-icons/paragraph.svg | 0 .../libs/bootstrap-icons/patch-check-fill.svg | 0 .../css/libs/bootstrap-icons/patch-check.svg | 0 .../patch-exclamation-fill.svg | 0 .../bootstrap-icons/patch-exclamation.svg | 0 .../libs/bootstrap-icons/patch-minus-fill.svg | 0 .../css/libs/bootstrap-icons/patch-minus.svg | 0 .../libs/bootstrap-icons/patch-plus-fill.svg | 0 .../css/libs/bootstrap-icons/patch-plus.svg | 0 .../bootstrap-icons/patch-question-fill.svg | 0 .../libs/bootstrap-icons/patch-question.svg | 0 .../libs/bootstrap-icons/pause-btn-fill.svg | 0 .../css/libs/bootstrap-icons/pause-btn.svg | 0 .../bootstrap-icons/pause-circle-fill.svg | 0 .../css/libs/bootstrap-icons/pause-circle.svg | 0 .../css/libs/bootstrap-icons/pause-fill.svg | 0 .../css/libs/bootstrap-icons/pause.svg | 0 .../css/libs/bootstrap-icons/paypal.svg | 0 .../bootstrap-icons/pc-display-horizontal.svg | 0 .../css/libs/bootstrap-icons/pc-display.svg | 0 .../libs/bootstrap-icons/pc-horizontal.svg | 0 .../resources/css/libs/bootstrap-icons/pc.svg | 0 .../css/libs/bootstrap-icons/pci-card.svg | 0 .../css/libs/bootstrap-icons/peace-fill.svg | 0 .../css/libs/bootstrap-icons/peace.svg | 0 .../css/libs/bootstrap-icons/pen-fill.svg | 0 .../css/libs/bootstrap-icons/pen.svg | 0 .../css/libs/bootstrap-icons/pencil-fill.svg | 0 .../libs/bootstrap-icons/pencil-square.svg | 0 .../css/libs/bootstrap-icons/pencil.svg | 0 .../libs/bootstrap-icons/pentagon-fill.svg | 0 .../libs/bootstrap-icons/pentagon-half.svg | 0 .../css/libs/bootstrap-icons/pentagon.svg | 0 .../css/libs/bootstrap-icons/people-fill.svg | 0 .../css/libs/bootstrap-icons/people.svg | 0 .../css/libs/bootstrap-icons/percent.svg | 0 .../bootstrap-icons/person-badge-fill.svg | 0 .../css/libs/bootstrap-icons/person-badge.svg | 0 .../bootstrap-icons/person-bounding-box.svg | 0 .../bootstrap-icons/person-check-fill.svg | 0 .../css/libs/bootstrap-icons/person-check.svg | 0 .../libs/bootstrap-icons/person-circle.svg | 0 .../libs/bootstrap-icons/person-dash-fill.svg | 0 .../css/libs/bootstrap-icons/person-dash.svg | 0 .../css/libs/bootstrap-icons/person-fill.svg | 0 .../css/libs/bootstrap-icons/person-heart.svg | 0 .../libs/bootstrap-icons/person-hearts.svg | 0 .../bootstrap-icons/person-lines-fill.svg | 0 .../libs/bootstrap-icons/person-plus-fill.svg | 0 .../css/libs/bootstrap-icons/person-plus.svg | 0 .../libs/bootstrap-icons/person-rolodex.svg | 0 .../libs/bootstrap-icons/person-square.svg | 0 .../css/libs/bootstrap-icons/person-video.svg | 0 .../libs/bootstrap-icons/person-video2.svg | 0 .../libs/bootstrap-icons/person-video3.svg | 0 .../libs/bootstrap-icons/person-workspace.svg | 0 .../libs/bootstrap-icons/person-x-fill.svg | 0 .../css/libs/bootstrap-icons/person-x.svg | 0 .../css/libs/bootstrap-icons/person.svg | 0 .../css/libs/bootstrap-icons/phone-fill.svg | 0 .../css/libs/bootstrap-icons/phone-flip.svg | 0 .../bootstrap-icons/phone-landscape-fill.svg | 0 .../libs/bootstrap-icons/phone-landscape.svg | 0 .../bootstrap-icons/phone-vibrate-fill.svg | 0 .../libs/bootstrap-icons/phone-vibrate.svg | 0 .../css/libs/bootstrap-icons/phone.svg | 0 .../libs/bootstrap-icons/pie-chart-fill.svg | 0 .../css/libs/bootstrap-icons/pie-chart.svg | 0 .../libs/bootstrap-icons/piggy-bank-fill.svg | 0 .../css/libs/bootstrap-icons/piggy-bank.svg | 0 .../libs/bootstrap-icons/pin-angle-fill.svg | 0 .../css/libs/bootstrap-icons/pin-angle.svg | 0 .../css/libs/bootstrap-icons/pin-fill.svg | 0 .../css/libs/bootstrap-icons/pin-map-fill.svg | 0 .../css/libs/bootstrap-icons/pin-map.svg | 0 .../css/libs/bootstrap-icons/pin.svg | 0 .../css/libs/bootstrap-icons/pinterest.svg | 0 .../css/libs/bootstrap-icons/pip-fill.svg | 0 .../css/libs/bootstrap-icons/pip.svg | 0 .../libs/bootstrap-icons/play-btn-fill.svg | 0 .../css/libs/bootstrap-icons/play-btn.svg | 0 .../libs/bootstrap-icons/play-circle-fill.svg | 0 .../css/libs/bootstrap-icons/play-circle.svg | 0 .../css/libs/bootstrap-icons/play-fill.svg | 0 .../css/libs/bootstrap-icons/play.svg | 0 .../css/libs/bootstrap-icons/playstation.svg | 0 .../css/libs/bootstrap-icons/plug-fill.svg | 0 .../css/libs/bootstrap-icons/plug.svg | 0 .../css/libs/bootstrap-icons/plugin.svg | 0 .../bootstrap-icons/plus-circle-dotted.svg | 0 .../libs/bootstrap-icons/plus-circle-fill.svg | 0 .../css/libs/bootstrap-icons/plus-circle.svg | 0 .../css/libs/bootstrap-icons/plus-lg.svg | 0 .../libs/bootstrap-icons/plus-slash-minus.svg | 0 .../bootstrap-icons/plus-square-dotted.svg | 0 .../libs/bootstrap-icons/plus-square-fill.svg | 0 .../css/libs/bootstrap-icons/plus-square.svg | 0 .../css/libs/bootstrap-icons/plus.svg | 0 .../css/libs/bootstrap-icons/postage-fill.svg | 0 .../bootstrap-icons/postage-heart-fill.svg | 0 .../libs/bootstrap-icons/postage-heart.svg | 0 .../css/libs/bootstrap-icons/postage.svg | 0 .../libs/bootstrap-icons/postcard-fill.svg | 0 .../bootstrap-icons/postcard-heart-fill.svg | 0 .../libs/bootstrap-icons/postcard-heart.svg | 0 .../css/libs/bootstrap-icons/postcard.svg | 0 .../css/libs/bootstrap-icons/power.svg | 0 .../css/libs/bootstrap-icons/printer-fill.svg | 0 .../css/libs/bootstrap-icons/printer.svg | 0 .../libs/bootstrap-icons/projector-fill.svg | 0 .../css/libs/bootstrap-icons/projector.svg | 0 .../css/libs/bootstrap-icons/puzzle-fill.svg | 0 .../css/libs/bootstrap-icons/puzzle.svg | 0 .../css/libs/bootstrap-icons/qr-code-scan.svg | 0 .../css/libs/bootstrap-icons/qr-code.svg | 0 .../bootstrap-icons/question-circle-fill.svg | 0 .../libs/bootstrap-icons/question-circle.svg | 0 .../bootstrap-icons/question-diamond-fill.svg | 0 .../libs/bootstrap-icons/question-diamond.svg | 0 .../css/libs/bootstrap-icons/question-lg.svg | 0 .../bootstrap-icons/question-octagon-fill.svg | 0 .../libs/bootstrap-icons/question-octagon.svg | 0 .../bootstrap-icons/question-square-fill.svg | 0 .../libs/bootstrap-icons/question-square.svg | 0 .../css/libs/bootstrap-icons/question.svg | 0 .../css/libs/bootstrap-icons/quora.svg | 0 .../css/libs/bootstrap-icons/quote.svg | 0 .../css/libs/bootstrap-icons/radioactive.svg | 0 .../css/libs/bootstrap-icons/rainbow.svg | 0 .../libs/bootstrap-icons/receipt-cutoff.svg | 0 .../css/libs/bootstrap-icons/receipt.svg | 0 .../css/libs/bootstrap-icons/reception-0.svg | 0 .../css/libs/bootstrap-icons/reception-1.svg | 0 .../css/libs/bootstrap-icons/reception-2.svg | 0 .../css/libs/bootstrap-icons/reception-3.svg | 0 .../css/libs/bootstrap-icons/reception-4.svg | 0 .../libs/bootstrap-icons/record-btn-fill.svg | 0 .../css/libs/bootstrap-icons/record-btn.svg | 0 .../bootstrap-icons/record-circle-fill.svg | 0 .../libs/bootstrap-icons/record-circle.svg | 0 .../css/libs/bootstrap-icons/record-fill.svg | 0 .../css/libs/bootstrap-icons/record.svg | 0 .../css/libs/bootstrap-icons/record2-fill.svg | 0 .../css/libs/bootstrap-icons/record2.svg | 0 .../css/libs/bootstrap-icons/recycle.svg | 0 .../css/libs/bootstrap-icons/reddit.svg | 0 .../libs/bootstrap-icons/reply-all-fill.svg | 0 .../css/libs/bootstrap-icons/reply-all.svg | 0 .../css/libs/bootstrap-icons/reply-fill.svg | 0 .../css/libs/bootstrap-icons/reply.svg | 0 .../css/libs/bootstrap-icons/robot.svg | 0 .../css/libs/bootstrap-icons/router-fill.svg | 0 .../css/libs/bootstrap-icons/router.svg | 0 .../css/libs/bootstrap-icons/rss-fill.svg | 0 .../css/libs/bootstrap-icons/rss.svg | 0 .../css/libs/bootstrap-icons/rulers.svg | 0 .../css/libs/bootstrap-icons/safe-fill.svg | 0 .../css/libs/bootstrap-icons/safe.svg | 0 .../css/libs/bootstrap-icons/safe2-fill.svg | 0 .../css/libs/bootstrap-icons/safe2.svg | 0 .../css/libs/bootstrap-icons/save-fill.svg | 0 .../css/libs/bootstrap-icons/save.svg | 0 .../css/libs/bootstrap-icons/save2-fill.svg | 0 .../css/libs/bootstrap-icons/save2.svg | 0 .../css/libs/bootstrap-icons/scissors.svg | 0 .../css/libs/bootstrap-icons/screwdriver.svg | 0 .../css/libs/bootstrap-icons/sd-card-fill.svg | 0 .../css/libs/bootstrap-icons/sd-card.svg | 0 .../bootstrap-icons/search-heart-fill.svg | 0 .../css/libs/bootstrap-icons/search-heart.svg | 0 .../css/libs/bootstrap-icons/search.svg | 0 .../libs/bootstrap-icons/segmented-nav.svg | 0 .../libs/bootstrap-icons/send-check-fill.svg | 0 .../css/libs/bootstrap-icons/send-check.svg | 0 .../libs/bootstrap-icons/send-dash-fill.svg | 0 .../css/libs/bootstrap-icons/send-dash.svg | 0 .../bootstrap-icons/send-exclamation-fill.svg | 0 .../libs/bootstrap-icons/send-exclamation.svg | 0 .../css/libs/bootstrap-icons/send-fill.svg | 0 .../libs/bootstrap-icons/send-plus-fill.svg | 0 .../css/libs/bootstrap-icons/send-plus.svg | 0 .../libs/bootstrap-icons/send-slash-fill.svg | 0 .../css/libs/bootstrap-icons/send-slash.svg | 0 .../css/libs/bootstrap-icons/send-x-fill.svg | 0 .../css/libs/bootstrap-icons/send-x.svg | 0 .../css/libs/bootstrap-icons/send.svg | 0 .../css/libs/bootstrap-icons/server.svg | 0 .../css/libs/bootstrap-icons/share-fill.svg | 0 .../css/libs/bootstrap-icons/share.svg | 0 .../css/libs/bootstrap-icons/shield-check.svg | 0 .../bootstrap-icons/shield-exclamation.svg | 0 .../bootstrap-icons/shield-fill-check.svg | 0 .../shield-fill-exclamation.svg | 0 .../bootstrap-icons/shield-fill-minus.svg | 0 .../libs/bootstrap-icons/shield-fill-plus.svg | 0 .../libs/bootstrap-icons/shield-fill-x.svg | 0 .../css/libs/bootstrap-icons/shield-fill.svg | 0 .../libs/bootstrap-icons/shield-lock-fill.svg | 0 .../css/libs/bootstrap-icons/shield-lock.svg | 0 .../css/libs/bootstrap-icons/shield-minus.svg | 0 .../css/libs/bootstrap-icons/shield-plus.svg | 0 .../libs/bootstrap-icons/shield-shaded.svg | 0 .../bootstrap-icons/shield-slash-fill.svg | 0 .../css/libs/bootstrap-icons/shield-slash.svg | 0 .../css/libs/bootstrap-icons/shield-x.svg | 0 .../css/libs/bootstrap-icons/shield.svg | 0 .../css/libs/bootstrap-icons/shift-fill.svg | 0 .../css/libs/bootstrap-icons/shift.svg | 0 .../css/libs/bootstrap-icons/shop-window.svg | 0 .../css/libs/bootstrap-icons/shop.svg | 0 .../css/libs/bootstrap-icons/shuffle.svg | 0 .../css/libs/bootstrap-icons/signal.svg | 0 .../libs/bootstrap-icons/signpost-2-fill.svg | 0 .../css/libs/bootstrap-icons/signpost-2.svg | 0 .../libs/bootstrap-icons/signpost-fill.svg | 0 .../bootstrap-icons/signpost-split-fill.svg | 0 .../libs/bootstrap-icons/signpost-split.svg | 0 .../css/libs/bootstrap-icons/signpost.svg | 0 .../css/libs/bootstrap-icons/sim-fill.svg | 0 .../css/libs/bootstrap-icons/sim.svg | 0 .../skip-backward-btn-fill.svg | 0 .../bootstrap-icons/skip-backward-btn.svg | 0 .../skip-backward-circle-fill.svg | 0 .../bootstrap-icons/skip-backward-circle.svg | 0 .../bootstrap-icons/skip-backward-fill.svg | 0 .../libs/bootstrap-icons/skip-backward.svg | 0 .../bootstrap-icons/skip-end-btn-fill.svg | 0 .../css/libs/bootstrap-icons/skip-end-btn.svg | 0 .../bootstrap-icons/skip-end-circle-fill.svg | 0 .../libs/bootstrap-icons/skip-end-circle.svg | 0 .../libs/bootstrap-icons/skip-end-fill.svg | 0 .../css/libs/bootstrap-icons/skip-end.svg | 0 .../bootstrap-icons/skip-forward-btn-fill.svg | 0 .../libs/bootstrap-icons/skip-forward-btn.svg | 0 .../skip-forward-circle-fill.svg | 0 .../bootstrap-icons/skip-forward-circle.svg | 0 .../bootstrap-icons/skip-forward-fill.svg | 0 .../css/libs/bootstrap-icons/skip-forward.svg | 0 .../bootstrap-icons/skip-start-btn-fill.svg | 0 .../libs/bootstrap-icons/skip-start-btn.svg | 0 .../skip-start-circle-fill.svg | 0 .../bootstrap-icons/skip-start-circle.svg | 0 .../libs/bootstrap-icons/skip-start-fill.svg | 0 .../css/libs/bootstrap-icons/skip-start.svg | 0 .../css/libs/bootstrap-icons/skype.svg | 0 .../css/libs/bootstrap-icons/slack.svg | 0 .../bootstrap-icons/slash-circle-fill.svg | 0 .../css/libs/bootstrap-icons/slash-circle.svg | 0 .../css/libs/bootstrap-icons/slash-lg.svg | 0 .../bootstrap-icons/slash-square-fill.svg | 0 .../css/libs/bootstrap-icons/slash-square.svg | 0 .../css/libs/bootstrap-icons/slash.svg | 0 .../css/libs/bootstrap-icons/sliders.svg | 0 .../bootstrap-icons/sliders2-vertical.svg | 0 .../css/libs/bootstrap-icons/sliders2.svg | 0 .../css/libs/bootstrap-icons/smartwatch.svg | 0 .../css/libs/bootstrap-icons/snapchat.svg | 0 .../css/libs/bootstrap-icons/snow.svg | 0 .../css/libs/bootstrap-icons/snow2.svg | 0 .../css/libs/bootstrap-icons/snow3.svg | 0 .../bootstrap-icons/sort-alpha-down-alt.svg | 0 .../libs/bootstrap-icons/sort-alpha-down.svg | 0 .../bootstrap-icons/sort-alpha-up-alt.svg | 0 .../libs/bootstrap-icons/sort-alpha-up.svg | 0 .../libs/bootstrap-icons/sort-down-alt.svg | 0 .../css/libs/bootstrap-icons/sort-down.svg | 0 .../bootstrap-icons/sort-numeric-down-alt.svg | 0 .../bootstrap-icons/sort-numeric-down.svg | 0 .../bootstrap-icons/sort-numeric-up-alt.svg | 0 .../libs/bootstrap-icons/sort-numeric-up.svg | 0 .../css/libs/bootstrap-icons/sort-up-alt.svg | 0 .../css/libs/bootstrap-icons/sort-up.svg | 0 .../css/libs/bootstrap-icons/soundwave.svg | 0 .../css/libs/bootstrap-icons/speaker-fill.svg | 0 .../css/libs/bootstrap-icons/speaker.svg | 0 .../css/libs/bootstrap-icons/speedometer.svg | 0 .../css/libs/bootstrap-icons/speedometer2.svg | 0 .../css/libs/bootstrap-icons/spellcheck.svg | 0 .../css/libs/bootstrap-icons/spotify.svg | 0 .../css/libs/bootstrap-icons/square-fill.svg | 0 .../css/libs/bootstrap-icons/square-half.svg | 0 .../css/libs/bootstrap-icons/square.svg | 0 .../libs/bootstrap-icons/stack-overflow.svg | 0 .../css/libs/bootstrap-icons/stack.svg | 0 .../css/libs/bootstrap-icons/star-fill.svg | 0 .../css/libs/bootstrap-icons/star-half.svg | 0 .../css/libs/bootstrap-icons/star.svg | 0 .../css/libs/bootstrap-icons/stars.svg | 0 .../css/libs/bootstrap-icons/steam.svg | 0 .../libs/bootstrap-icons/stickies-fill.svg | 0 .../css/libs/bootstrap-icons/stickies.svg | 0 .../css/libs/bootstrap-icons/sticky-fill.svg | 0 .../css/libs/bootstrap-icons/sticky.svg | 0 .../libs/bootstrap-icons/stop-btn-fill.svg | 0 .../css/libs/bootstrap-icons/stop-btn.svg | 0 .../libs/bootstrap-icons/stop-circle-fill.svg | 0 .../css/libs/bootstrap-icons/stop-circle.svg | 0 .../css/libs/bootstrap-icons/stop-fill.svg | 0 .../css/libs/bootstrap-icons/stop.svg | 0 .../libs/bootstrap-icons/stoplights-fill.svg | 0 .../css/libs/bootstrap-icons/stoplights.svg | 0 .../libs/bootstrap-icons/stopwatch-fill.svg | 0 .../css/libs/bootstrap-icons/stopwatch.svg | 0 .../css/libs/bootstrap-icons/strava.svg | 0 .../css/libs/bootstrap-icons/subtract.svg | 0 .../libs/bootstrap-icons/suit-club-fill.svg | 0 .../css/libs/bootstrap-icons/suit-club.svg | 0 .../bootstrap-icons/suit-diamond-fill.svg | 0 .../css/libs/bootstrap-icons/suit-diamond.svg | 0 .../libs/bootstrap-icons/suit-heart-fill.svg | 0 .../css/libs/bootstrap-icons/suit-heart.svg | 0 .../libs/bootstrap-icons/suit-spade-fill.svg | 0 .../css/libs/bootstrap-icons/suit-spade.svg | 0 .../css/libs/bootstrap-icons/sun-fill.svg | 0 .../css/libs/bootstrap-icons/sun.svg | 0 .../css/libs/bootstrap-icons/sunglasses.svg | 0 .../css/libs/bootstrap-icons/sunrise-fill.svg | 0 .../css/libs/bootstrap-icons/sunrise.svg | 0 .../css/libs/bootstrap-icons/sunset-fill.svg | 0 .../css/libs/bootstrap-icons/sunset.svg | 0 .../bootstrap-icons/symmetry-horizontal.svg | 0 .../bootstrap-icons/symmetry-vertical.svg | 0 .../css/libs/bootstrap-icons/table.svg | 0 .../css/libs/bootstrap-icons/tablet-fill.svg | 0 .../bootstrap-icons/tablet-landscape-fill.svg | 0 .../libs/bootstrap-icons/tablet-landscape.svg | 0 .../css/libs/bootstrap-icons/tablet.svg | 0 .../css/libs/bootstrap-icons/tag-fill.svg | 0 .../css/libs/bootstrap-icons/tag.svg | 0 .../css/libs/bootstrap-icons/tags-fill.svg | 0 .../css/libs/bootstrap-icons/tags.svg | 0 .../css/libs/bootstrap-icons/telegram.svg | 0 .../libs/bootstrap-icons/telephone-fill.svg | 0 .../telephone-forward-fill.svg | 0 .../bootstrap-icons/telephone-forward.svg | 0 .../telephone-inbound-fill.svg | 0 .../bootstrap-icons/telephone-inbound.svg | 0 .../bootstrap-icons/telephone-minus-fill.svg | 0 .../libs/bootstrap-icons/telephone-minus.svg | 0 .../telephone-outbound-fill.svg | 0 .../bootstrap-icons/telephone-outbound.svg | 0 .../bootstrap-icons/telephone-plus-fill.svg | 0 .../libs/bootstrap-icons/telephone-plus.svg | 0 .../libs/bootstrap-icons/telephone-x-fill.svg | 0 .../css/libs/bootstrap-icons/telephone-x.svg | 0 .../css/libs/bootstrap-icons/telephone.svg | 0 .../libs/bootstrap-icons/terminal-dash.svg | 0 .../libs/bootstrap-icons/terminal-fill.svg | 0 .../libs/bootstrap-icons/terminal-plus.svg | 0 .../libs/bootstrap-icons/terminal-split.svg | 0 .../css/libs/bootstrap-icons/terminal-x.svg | 0 .../css/libs/bootstrap-icons/terminal.svg | 0 .../css/libs/bootstrap-icons/text-center.svg | 0 .../libs/bootstrap-icons/text-indent-left.svg | 0 .../bootstrap-icons/text-indent-right.svg | 0 .../css/libs/bootstrap-icons/text-left.svg | 0 .../libs/bootstrap-icons/text-paragraph.svg | 0 .../css/libs/bootstrap-icons/text-right.svg | 0 .../libs/bootstrap-icons/textarea-resize.svg | 0 .../css/libs/bootstrap-icons/textarea-t.svg | 0 .../css/libs/bootstrap-icons/textarea.svg | 0 .../libs/bootstrap-icons/thermometer-half.svg | 0 .../libs/bootstrap-icons/thermometer-high.svg | 0 .../libs/bootstrap-icons/thermometer-low.svg | 0 .../libs/bootstrap-icons/thermometer-snow.svg | 0 .../libs/bootstrap-icons/thermometer-sun.svg | 0 .../css/libs/bootstrap-icons/thermometer.svg | 0 .../bootstrap-icons/three-dots-vertical.svg | 0 .../css/libs/bootstrap-icons/three-dots.svg | 0 .../libs/bootstrap-icons/thunderbolt-fill.svg | 0 .../css/libs/bootstrap-icons/thunderbolt.svg | 0 .../bootstrap-icons/ticket-detailed-fill.svg | 0 .../libs/bootstrap-icons/ticket-detailed.svg | 0 .../css/libs/bootstrap-icons/ticket-fill.svg | 0 .../ticket-perforated-fill.svg | 0 .../bootstrap-icons/ticket-perforated.svg | 0 .../css/libs/bootstrap-icons/ticket.svg | 0 .../css/libs/bootstrap-icons/tiktok.svg | 0 .../css/libs/bootstrap-icons/toggle-off.svg | 0 .../css/libs/bootstrap-icons/toggle-on.svg | 0 .../css/libs/bootstrap-icons/toggle2-off.svg | 0 .../css/libs/bootstrap-icons/toggle2-on.svg | 0 .../css/libs/bootstrap-icons/toggles.svg | 0 .../css/libs/bootstrap-icons/toggles2.svg | 0 .../css/libs/bootstrap-icons/tools.svg | 0 .../css/libs/bootstrap-icons/tornado.svg | 0 .../css/libs/bootstrap-icons/translate.svg | 0 .../css/libs/bootstrap-icons/trash-fill.svg | 0 .../css/libs/bootstrap-icons/trash.svg | 0 .../css/libs/bootstrap-icons/trash2-fill.svg | 0 .../css/libs/bootstrap-icons/trash2.svg | 0 .../css/libs/bootstrap-icons/trash3-fill.svg | 0 .../css/libs/bootstrap-icons/trash3.svg | 0 .../css/libs/bootstrap-icons/tree-fill.svg | 0 .../css/libs/bootstrap-icons/tree.svg | 0 .../libs/bootstrap-icons/triangle-fill.svg | 0 .../libs/bootstrap-icons/triangle-half.svg | 0 .../css/libs/bootstrap-icons/triangle.svg | 0 .../css/libs/bootstrap-icons/trophy-fill.svg | 0 .../css/libs/bootstrap-icons/trophy.svg | 0 .../libs/bootstrap-icons/tropical-storm.svg | 0 .../libs/bootstrap-icons/truck-flatbed.svg | 0 .../css/libs/bootstrap-icons/truck.svg | 0 .../css/libs/bootstrap-icons/tsunami.svg | 0 .../css/libs/bootstrap-icons/tv-fill.svg | 0 .../resources/css/libs/bootstrap-icons/tv.svg | 0 .../css/libs/bootstrap-icons/twitch.svg | 0 .../css/libs/bootstrap-icons/twitter.svg | 0 .../css/libs/bootstrap-icons/type-bold.svg | 0 .../css/libs/bootstrap-icons/type-h1.svg | 0 .../css/libs/bootstrap-icons/type-h2.svg | 0 .../css/libs/bootstrap-icons/type-h3.svg | 0 .../css/libs/bootstrap-icons/type-italic.svg | 0 .../bootstrap-icons/type-strikethrough.svg | 0 .../libs/bootstrap-icons/type-underline.svg | 0 .../css/libs/bootstrap-icons/type.svg | 0 .../libs/bootstrap-icons/ui-checks-grid.svg | 0 .../css/libs/bootstrap-icons/ui-checks.svg | 0 .../libs/bootstrap-icons/ui-radios-grid.svg | 0 .../css/libs/bootstrap-icons/ui-radios.svg | 0 .../libs/bootstrap-icons/umbrella-fill.svg | 0 .../css/libs/bootstrap-icons/umbrella.svg | 0 .../css/libs/bootstrap-icons/union.svg | 0 .../css/libs/bootstrap-icons/unlock-fill.svg | 0 .../css/libs/bootstrap-icons/unlock.svg | 0 .../css/libs/bootstrap-icons/upc-scan.svg | 0 .../css/libs/bootstrap-icons/upc.svg | 0 .../css/libs/bootstrap-icons/upload.svg | 0 .../css/libs/bootstrap-icons/usb-c-fill.svg | 0 .../css/libs/bootstrap-icons/usb-c.svg | 0 .../libs/bootstrap-icons/usb-drive-fill.svg | 0 .../css/libs/bootstrap-icons/usb-drive.svg | 0 .../css/libs/bootstrap-icons/usb-fill.svg | 0 .../libs/bootstrap-icons/usb-micro-fill.svg | 0 .../css/libs/bootstrap-icons/usb-micro.svg | 0 .../libs/bootstrap-icons/usb-mini-fill.svg | 0 .../css/libs/bootstrap-icons/usb-mini.svg | 0 .../libs/bootstrap-icons/usb-plug-fill.svg | 0 .../css/libs/bootstrap-icons/usb-plug.svg | 0 .../css/libs/bootstrap-icons/usb-symbol.svg | 0 .../css/libs/bootstrap-icons/usb.svg | 0 .../css/libs/bootstrap-icons/valentine.svg | 0 .../css/libs/bootstrap-icons/valentine2.svg | 0 .../css/libs/bootstrap-icons/vector-pen.svg | 0 .../css/libs/bootstrap-icons/view-list.svg | 0 .../css/libs/bootstrap-icons/view-stacked.svg | 0 .../css/libs/bootstrap-icons/vimeo.svg | 0 .../css/libs/bootstrap-icons/vinyl-fill.svg | 0 .../css/libs/bootstrap-icons/vinyl.svg | 0 .../css/libs/bootstrap-icons/voicemail.svg | 0 .../libs/bootstrap-icons/volume-down-fill.svg | 0 .../css/libs/bootstrap-icons/volume-down.svg | 0 .../libs/bootstrap-icons/volume-mute-fill.svg | 0 .../css/libs/bootstrap-icons/volume-mute.svg | 0 .../libs/bootstrap-icons/volume-off-fill.svg | 0 .../css/libs/bootstrap-icons/volume-off.svg | 0 .../libs/bootstrap-icons/volume-up-fill.svg | 0 .../css/libs/bootstrap-icons/volume-up.svg | 0 .../resources/css/libs/bootstrap-icons/vr.svg | 0 .../css/libs/bootstrap-icons/wallet-fill.svg | 0 .../css/libs/bootstrap-icons/wallet.svg | 0 .../css/libs/bootstrap-icons/wallet2.svg | 0 .../css/libs/bootstrap-icons/watch.svg | 0 .../css/libs/bootstrap-icons/water.svg | 0 .../css/libs/bootstrap-icons/webcam-fill.svg | 0 .../css/libs/bootstrap-icons/webcam.svg | 0 .../css/libs/bootstrap-icons/whatsapp.svg | 0 .../css/libs/bootstrap-icons/wifi-1.svg | 0 .../css/libs/bootstrap-icons/wifi-2.svg | 0 .../css/libs/bootstrap-icons/wifi-off.svg | 0 .../css/libs/bootstrap-icons/wifi.svg | 0 .../css/libs/bootstrap-icons/wind.svg | 0 .../css/libs/bootstrap-icons/window-dash.svg | 0 .../libs/bootstrap-icons/window-desktop.svg | 0 .../css/libs/bootstrap-icons/window-dock.svg | 0 .../bootstrap-icons/window-fullscreen.svg | 0 .../css/libs/bootstrap-icons/window-plus.svg | 0 .../libs/bootstrap-icons/window-sidebar.svg | 0 .../css/libs/bootstrap-icons/window-split.svg | 0 .../css/libs/bootstrap-icons/window-stack.svg | 0 .../css/libs/bootstrap-icons/window-x.svg | 0 .../css/libs/bootstrap-icons/window.svg | 0 .../css/libs/bootstrap-icons/windows.svg | 0 .../css/libs/bootstrap-icons/wordpress.svg | 0 .../wrench-adjustable-circle-fill.svg | 0 .../wrench-adjustable-circle.svg | 0 .../bootstrap-icons/wrench-adjustable.svg | 0 .../css/libs/bootstrap-icons/wrench.svg | 0 .../libs/bootstrap-icons/x-circle-fill.svg | 0 .../css/libs/bootstrap-icons/x-circle.svg | 0 .../libs/bootstrap-icons/x-diamond-fill.svg | 0 .../css/libs/bootstrap-icons/x-diamond.svg | 0 .../css/libs/bootstrap-icons/x-lg.svg | 0 .../libs/bootstrap-icons/x-octagon-fill.svg | 0 .../css/libs/bootstrap-icons/x-octagon.svg | 0 .../libs/bootstrap-icons/x-square-fill.svg | 0 .../css/libs/bootstrap-icons/x-square.svg | 0 .../resources/css/libs/bootstrap-icons/x.svg | 0 .../css/libs/bootstrap-icons/xbox.svg | 0 .../css/libs/bootstrap-icons/yin-yang.svg | 0 .../css/libs/bootstrap-icons/youtube.svg | 0 .../css/libs/bootstrap-icons/zoom-in.svg | 0 .../css/libs/bootstrap-icons/zoom-out.svg | 0 .../css/libs/bootstrap5/bootstrap.min.css | 0 .../css/libs/bootstrap5/bootstrap.min.css.map | 0 .../context_path/resources/css/main.css | 0 .../context_path/resources/css/overrides.css | 0 .../context_path/resources/js/ajax.js | 0 .../context_path/resources/js/context-menu.js | 0 .../context_path/resources/js/events.js | 0 .../context_path/resources/js/globals.js | 0 .../libs/bootstrap5/bootstrap.bundle.min.js | 0 .../bootstrap5/bootstrap.bundle.min.js.map | 0 .../resources/js/libs/jquery-3.7.1.min.js | 0 .../context_path/resources/js/post-ajax.js | 0 .../context_path/resources/js/ui-logic.js | 0 .../context_path/resources/js/utils.js | 0 .../icons/archive.png | Bin .../{app_name => lsp_manager}/icons/audio.png | Bin .../{app_name => lsp_manager}/icons/bin.png | Bin .../{app_name => lsp_manager}/icons/dir.png | Bin .../{app_name => lsp_manager}/icons/doc.png | Bin .../{app_name => lsp_manager}/icons/image.png | Bin .../icons/lsp_manager-64x64.png} | Bin .../icons/lsp_manager.png} | Bin .../{app_name => lsp_manager}/icons/pdf.png | Bin .../icons/presentation.png | Bin .../icons/spreadsheet.png | Bin .../{app_name => lsp_manager}/icons/text.png | Bin .../{app_name => lsp_manager}/icons/trash.png | Bin .../{app_name => lsp_manager}/icons/video.png | Bin .../{app_name => lsp_manager}/icons/web.png | Bin .../lsp_manager/initialize-params-slim.json | 151 ++++ .../share/lsp_manager/initialize-params.json | 849 ++++++++++++++++++ .../usr/share/lsp_manager/key-bindings.json | 24 + .../share/lsp_manager/lsp-servers-config.json | 109 +++ .../{app_name => lsp_manager}/stylesheet.css | 14 + 1764 files changed, 2185 insertions(+), 313 deletions(-) create mode 100644 src/core/builder_wrapper.py create mode 100644 src/core/widgets/controls/__init__.py create mode 100644 src/core/widgets/controls/open_files_button.py rename src/core/widgets/{ => controls}/transparency_scale.py (89%) create mode 100644 src/core/widgets/lsp_message_box.py create mode 100644 src/core/widgets/lsp_notebook.py create mode 100644 src/core/widgets/lsp_ui.py create mode 100644 src/core/widgets/lsp_window.py delete mode 100644 src/core/widgets/webkit_ui.py create mode 100644 src/libs/db/__init__.py rename src/libs/{ => db}/db.py (100%) rename src/libs/{ => db}/models.py (100%) rename src/libs/{data_types => dto}/__init__.py (100%) rename src/libs/{data_types => dto}/event.py (100%) rename src/libs/{settings_manager => settings}/__init__.py (100%) rename src/libs/{settings_manager => settings}/manager.py (75%) rename src/libs/{settings_manager => settings}/options/__init__.py (100%) rename src/libs/{settings_manager => settings}/options/config.py (100%) rename src/libs/{settings_manager => settings}/options/debugging.py (100%) rename src/libs/{settings_manager => settings}/options/filters.py (100%) rename src/libs/{settings_manager => settings}/options/settings.py (100%) rename src/libs/{settings_manager => settings}/options/theming.py (100%) rename src/libs/{settings_manager => settings}/other/__init__.py (100%) rename src/libs/{settings_manager => settings}/other/webkit_ui_settings.py (96%) rename src/libs/{settings_manager => settings}/start_check_mixin.py (88%) create mode 100644 src/libs/status_icon.py rename user_config/bin/{ => lsp-manager} (53%) delete mode 100755 user_config/usr/applications/.desktop create mode 100755 user_config/usr/applications/lsp-manager.desktop delete mode 100644 user_config/usr/share/app_name/key-bindings.json rename user_config/usr/share/{app_name => lsp_manager}/Main_Window.glade (100%) rename user_config/usr/share/{app_name => lsp_manager}/contexct_menu.json (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/index.html (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/context-menu.css (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/123.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/activity.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/alarm-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/alarm.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/align-bottom.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/align-center.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/align-end.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/align-middle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/align-start.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/align-top.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/app-indicator.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/app.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/apple.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/archive-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/archive.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-bar-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-bar-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-bar-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-bar-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-clockwise.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-counterclockwise.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-short.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-left-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-left-short.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-left-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-left-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-repeat.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-return-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-return-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-right-short.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-right-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-right-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-short.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrow-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrows-angle-contract.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrows-angle-expand.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrows-collapse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrows-expand.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrows-fullscreen.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/arrows-move.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/aspect-ratio-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/aspect-ratio.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/asterisk.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/at.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/award-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/award.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/back.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/backspace-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/backspace-reverse-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/backspace-reverse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/backspace.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-3d-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-3d.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-4k-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-4k.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-8k-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-8k.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-ad-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-ad.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-ar-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-ar.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-cc-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-cc.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-hd-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-hd.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-sd-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-sd.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-tm-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-tm.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-vo-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-vo.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-vr-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-vr.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-wc-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/badge-wc.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-dash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bag.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/balloon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/balloon-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/balloon-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/balloon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bandaid-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bandaid.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bank.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bank2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bar-chart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bar-chart-line-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bar-chart-line.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bar-chart-steps.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bar-chart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/basket-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/basket.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/basket2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/basket2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/basket3-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/basket3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/battery-charging.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/battery-full.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/battery-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/battery.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/behance.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bell-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bell-slash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bell-slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bell.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bezier.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bezier2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bicycle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/binoculars-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/binoculars.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/blockquote-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/blockquote-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bluetooth.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/body-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/book-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/book-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/book.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-dash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-star-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-star.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmark.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmarks-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookmarks.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bookshelf.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/boombox-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/boombox.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bootstrap-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.css (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.json (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.scss (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bootstrap-reboot.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bootstrap.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-all.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-bottom.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-center.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-inner.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-middle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-outer.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-style.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-top.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border-width.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/border.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bounding-box-circles.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bounding-box.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-arrow-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box-seam.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box2-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box2-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/box2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/boxes.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/braces-asterisk.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/braces.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bricks.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/briefcase-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/briefcase.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-high-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-high.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-low-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brightness-low.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/broadcast-pin.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/broadcast.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brush-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/brush.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bucket-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bucket.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bug-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bug.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/building.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/bullseye.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calculator-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calculator.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-date-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-date.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-day-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-day.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-event-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-event.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-month-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-month.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-range-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-range.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-week-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-week.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-date-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-date.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-day-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-day.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-event-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-event.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-month-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-month.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-range-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-range.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-week-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-week.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3-event-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3-event.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3-range-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3-range.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3-week-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3-week.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar4-event.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar4-range.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar4-week.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/calendar4.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera-reels-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera-reels.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera-video-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera-video-off-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera-video-off.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera-video.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/camera2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/capslock-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/capslock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/card-checklist.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/card-heading.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/card-image.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/card-list.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/card-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-down-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-down-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-down-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-left-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-left-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-left-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-right-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-right-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-right-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-up-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-up-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-up-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/caret-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-dash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cart4.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cash-coin.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cash-stack.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cast.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-dots-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-dots.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-dots-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-dots.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-quote-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-quote.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-text-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-quote-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-quote.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-dots-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-dots.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-quote-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-quote.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-text-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-dots-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-dots.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-quote-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-quote.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-text-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-text-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chat.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check-all.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check2-all.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check2-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check2-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/check2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-bar-contract.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-bar-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-bar-expand.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-bar-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-bar-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-bar-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-compact-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-compact-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-compact-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-compact-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-contract.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-double-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-double-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-double-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-double-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-expand.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/chevron-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/circle-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/circle-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-data-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-data.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-pulse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-data-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-data.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clipboard2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clock-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clock-history.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-download-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-download.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-fog-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-fog.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-fog2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-fog2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-hail-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-hail.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-haze-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-haze.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-haze2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-haze2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-lightning.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-moon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-moon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-rain-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-rain.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-slash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-sleet-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-sleet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-snow-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-snow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-sun-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-sun.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-upload-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud-upload.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloud.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clouds-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/clouds.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloudy-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cloudy.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/code-slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/code-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/code.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/coin.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/collection-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/collection-play-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/collection-play.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/collection.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/columns-gap.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/columns.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/command.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/compass-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/compass.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cone-striped.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cone.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/controller.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cpu-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cpu.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/credit-card-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/credit-card.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/crop.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cup-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cup-straw.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cup.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/currency-bitcoin.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/currency-dollar.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/currency-euro.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/currency-exchange.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/currency-pound.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/currency-yen.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cursor-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cursor-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/cursor.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash-circle-dotted.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash-square-dotted.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/device-hdd-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/device-hdd.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/device-ssd-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/device-ssd.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/diagram-2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/diagram-2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/diagram-3-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/diagram-3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/diamond-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/diamond-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/diamond.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-1-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-1.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-3-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-4-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-4.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-5-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-5.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-6-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dice-6.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/disc-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/disc.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/discord.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/display-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/display.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/displayport-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/displayport.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/distribute-horizontal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/distribute-vertical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/door-closed-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/door-closed.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/door-open-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/door-open.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dot.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/download.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dpad-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dpad.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/dribbble.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/droplet-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/droplet-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/droplet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ear-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ear.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/earbuds.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/easel-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/easel.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/easel2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/easel2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/easel3-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/easel3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/egg-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/egg-fried.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/egg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eject-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eject.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-angry-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-angry.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-frown-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-frown.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-kiss-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-kiss.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-laughing-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-laughing.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-neutral-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-neutral.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-smile-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-smile.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-wink-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/emoji-wink.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-dash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-open-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-open.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-paper-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-paper.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-slash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/envelope.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eraser-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eraser.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ethernet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclamation.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/exclude.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/explicit-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/explicit.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eye-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eye-slash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eye-slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eye.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eyedropper.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/eyeglasses.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/facebook.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/fan.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-arrow-down-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-arrow-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-arrow-up-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-arrow-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-bar-graph-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-bar-graph.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-binary-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-binary.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-break-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-break.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-code-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-code.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-diff-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-diff.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-break-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-break.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-code-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-code.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-font-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-font.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-image-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-image.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-music-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-music.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-person-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-person.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-play-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-play.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-post-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-post.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-text-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-word-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-word.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-earmark.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-easel-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-easel.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-excel-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-excel.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-font-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-font.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-image-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-image.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-lock-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-lock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-lock2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-lock2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-medical-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-medical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-music-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-music.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-pdf-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-pdf.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-person-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-person.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-play-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-play.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-post-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-post.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-ppt-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-ppt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-richtext-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-richtext.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-ruled-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-ruled.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-slides-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-slides.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-text-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-word-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-word.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-zip-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file-zip.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/file.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/files-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/files.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-aac.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-ai.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-bmp.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-cs.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-css.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-csv.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-doc.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-docx.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-exe.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-gif.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-heic.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-html.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-java.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-jpg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-js.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-json.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-jsx.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-key.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-m4p.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-md.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-mdx.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-mov.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-mp3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-mp4.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-otf.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-pdf.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-php.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-png.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-ppt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-pptx.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-psd.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-py.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-raw.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-rb.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-sass.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-scss.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-sh.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-svg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-tiff.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-tsx.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-ttf.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-txt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-wav.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-woff.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-xls.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-xlsx.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-xml.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filetype-yml.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/film.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filter-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filter-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filter-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filter-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filter-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filter-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/filter.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/fingerprint.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/flag-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/flag.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/flower1.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/flower2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/flower3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder-symlink-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder-symlink.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder2-open.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/folder2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/fonts.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff2 (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/forward-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/forward.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/front.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/fullscreen-exit.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/fullscreen.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/funnel-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/funnel.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gear-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gear-wide-connected.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gear-wide.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gear.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gem.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gender-ambiguous.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gender-female.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gender-male.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gender-trans.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/geo-alt-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/geo-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/geo-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/geo.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gift-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gift.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/git.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/github.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/globe.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/globe2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/google.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/gpu-card.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/graph-down-arrow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/graph-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/graph-up-arrow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/graph-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-1x2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-1x2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-3x2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-3x3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grid.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grip-horizontal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/grip-vertical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hammer.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-index-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-index.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/handbag-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/handbag.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd-network-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd-network.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd-rack-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd-rack.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd-stack-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd-stack.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdd.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdmi-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hdmi.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/headphones.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/headset-vr.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/headset.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heart-arrow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heart-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heart-pulse-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heart-pulse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heartbreak-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heartbreak.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hearts.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heptagon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heptagon-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/heptagon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hexagon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hexagon-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hexagon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hospital-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hospital.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hourglass-bottom.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hourglass-split.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hourglass-top.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hourglass.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/house-door-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/house-door.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/house-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/house-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/house-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/house.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hr.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hurricane.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/hypnotize.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/image-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/image-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/image.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/images.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/inbox-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/inbox.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/inboxes-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/inboxes.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/incognito.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/index.html (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/infinity.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/info-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/info-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/info-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/info-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/info-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/info.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/input-cursor-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/input-cursor.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/instagram.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/intersect.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-album.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-arrow-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-arrow-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-bookmark-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-bookmark.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-code.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-medical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-richtext.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-text.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/journals.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/joystick.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/justify-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/justify-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/justify.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/kanban-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/kanban.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/key-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/key.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/keyboard-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/keyboard.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ladder.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lamp-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lamp.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/laptop-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/laptop.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layer-backward.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layer-forward.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layers-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layers-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layers.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset-reverse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-reverse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-sidebar.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-split.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar-reverse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-text-window-reverse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-text-window.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-three-columns.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/layout-wtf.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/life-preserver.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightbulb-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightbulb-off-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightbulb-off.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightbulb.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightning-charge-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightning-charge.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightning-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lightning.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/line.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/link-45deg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/link.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/linkedin.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-columns-reverse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-columns.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-nested.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-ol.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-stars.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-task.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list-ul.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/list.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lock-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/lock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/magic.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/magnet-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/magnet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mailbox.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mailbox2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/map-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/map.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/markdown-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/markdown.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mask.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mastodon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/medium.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/megaphone-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/megaphone.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/memory.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-app-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-app.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-button-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-button-wide-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-button-wide.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-button.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/menu-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/messenger.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/meta.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mic-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mic-mute-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mic-mute.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mic.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/microsoft.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/minecart-loaded.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/minecart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/modem-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/modem.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/moisture.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/moon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/moon-stars-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/moon-stars.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/moon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mortarboard-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mortarboard.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/motherboard-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/motherboard.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mouse-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mouse.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mouse2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mouse2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mouse3-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/mouse3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/music-note-beamed.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/music-note-list.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/music-note.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/music-player-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/music-player.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/newspaper.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/nintendo-switch.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/node-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/node-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/node-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/node-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/nut-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/nut.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/octagon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/octagon-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/octagon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/optical-audio-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/optical-audio.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/option.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/outlet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/paint-bucket.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/palette-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/palette.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/palette2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/paperclip.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/paragraph.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-exclamation-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-exclamation.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-question-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/patch-question.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pause-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pause-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pause-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pause-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pause-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pause.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/paypal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pc-display-horizontal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pc-display.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pc-horizontal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pc.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pci-card.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/peace-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/peace.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pen-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pen.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pencil-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pencil-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pencil.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pentagon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pentagon-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pentagon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/people-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/people.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/percent.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-badge-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-badge.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-bounding-box.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-dash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-hearts.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-lines-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-rolodex.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-video.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-video2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-video3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-workspace.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/person.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/phone-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/phone-flip.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/phone-landscape-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/phone-landscape.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/phone-vibrate-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/phone-vibrate.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/phone.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pie-chart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pie-chart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/piggy-bank-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/piggy-bank.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pin-angle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pin-angle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pin-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pin-map-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pin-map.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pin.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pinterest.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pip-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/pip.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/play-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/play-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/play-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/play-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/play-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/play.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/playstation.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plug-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plug.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plugin.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-circle-dotted.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-slash-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-square-dotted.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postage-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postage-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postage-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postage.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postcard-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postcard-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postcard-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/postcard.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/power.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/printer-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/printer.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/projector-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/projector.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/puzzle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/puzzle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/qr-code-scan.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/qr-code.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-diamond-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-diamond.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-octagon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-octagon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/question.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/quora.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/quote.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/radioactive.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/rainbow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/receipt-cutoff.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/receipt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reception-0.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reception-1.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reception-2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reception-3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reception-4.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/record2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/recycle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reddit.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reply-all-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reply-all.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reply-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/reply.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/robot.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/router-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/router.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/rss-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/rss.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/rulers.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/safe-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/safe.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/safe2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/safe2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/save-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/save.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/save2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/save2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/scissors.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/screwdriver.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sd-card-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sd-card.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/search-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/search-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/search.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/segmented-nav.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-check-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-dash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-exclamation-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-exclamation.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-slash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/send.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/server.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/share-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/share.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-exclamation.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-fill-check.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-fill-exclamation.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-fill-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-fill-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-fill-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-lock-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-lock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-shaded.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-slash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shield.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shift-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shift.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shop-window.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shop.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/shuffle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/signal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/signpost-2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/signpost-2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/signpost-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/signpost-split-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/signpost-split.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/signpost.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sim-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sim.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-backward-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-backward.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-end-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-end-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-end-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-end-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-end-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-end.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-forward-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-forward.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-start-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-start-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-start-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-start-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-start-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skip-start.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/skype.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/slack.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/slash-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/slash-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/slash-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/slash-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/slash-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/slash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sliders.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sliders2-vertical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sliders2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/smartwatch.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/snapchat.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/snow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/snow2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/snow3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-down-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-up-alt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sort-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/soundwave.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/speaker-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/speaker.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/speedometer.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/speedometer2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/spellcheck.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/spotify.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/square-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stack-overflow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stack.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/star-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/star-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/star.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stars.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/steam.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stickies-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stickies.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sticky-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sticky.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stop-btn-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stop-btn.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stop-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stop-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stop-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stop.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stoplights-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stoplights.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stopwatch-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/stopwatch.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/strava.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/subtract.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-club-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-club.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-diamond-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-diamond.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-heart-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-heart.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-spade-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/suit-spade.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sun-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sun.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sunglasses.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sunrise-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sunrise.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sunset-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/sunset.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/symmetry-horizontal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/symmetry-vertical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/table.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tablet-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tablet-landscape-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tablet-landscape.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tablet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tag-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tag.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tags-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tags.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telegram.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-forward-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-forward.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-inbound-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-inbound.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-minus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-minus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-outbound-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-outbound.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-plus-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-x-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/telephone.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/terminal-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/terminal-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/terminal-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/terminal-split.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/terminal-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/terminal.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/text-center.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/text-indent-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/text-indent-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/text-left.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/text-paragraph.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/text-right.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/textarea-resize.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/textarea-t.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/textarea.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thermometer-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thermometer-high.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thermometer-low.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thermometer-snow.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thermometer-sun.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thermometer.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/three-dots-vertical.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/three-dots.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thunderbolt-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/thunderbolt.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ticket-detailed-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ticket-detailed.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ticket-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ticket-perforated-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ticket-perforated.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ticket.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tiktok.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/toggle-off.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/toggle-on.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/toggle2-off.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/toggle2-on.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/toggles.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/toggles2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tools.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tornado.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/translate.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trash-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trash2-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trash2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trash3-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trash3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tree-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tree.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/triangle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/triangle-half.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/triangle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trophy-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/trophy.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tropical-storm.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/truck-flatbed.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/truck.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tsunami.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tv-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/tv.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/twitch.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/twitter.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type-bold.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type-h1.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type-h2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type-h3.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type-italic.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type-strikethrough.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type-underline.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/type.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ui-checks-grid.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ui-checks.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ui-radios-grid.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/ui-radios.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/umbrella-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/umbrella.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/union.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/unlock-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/unlock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/upc-scan.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/upc.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/upload.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-c-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-c.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-drive-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-drive.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-micro-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-micro.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-mini-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-mini.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-plug-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-plug.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb-symbol.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/usb.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/valentine.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/valentine2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/vector-pen.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/view-list.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/view-stacked.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/vimeo.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/vinyl-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/vinyl.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/voicemail.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-down-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-down.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-mute-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-mute.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-off-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-off.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-up-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/volume-up.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/vr.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wallet-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wallet.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wallet2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/watch.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/water.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/webcam-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/webcam.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/whatsapp.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wifi-1.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wifi-2.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wifi-off.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wifi.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wind.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-dash.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-desktop.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-dock.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-fullscreen.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-plus.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-sidebar.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-split.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-stack.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window-x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/window.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/windows.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wordpress.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/wrench.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-circle-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-circle.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-diamond-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-diamond.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-lg.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-octagon-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-octagon.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-square-fill.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x-square.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/x.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/xbox.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/yin-yang.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/youtube.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/zoom-in.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap-icons/zoom-out.svg (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap5/bootstrap.min.css (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/libs/bootstrap5/bootstrap.min.css.map (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/main.css (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/css/overrides.css (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/ajax.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/context-menu.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/events.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/globals.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js.map (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/libs/jquery-3.7.1.min.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/post-ajax.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/ui-logic.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/context_path/resources/js/utils.js (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/archive.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/audio.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/bin.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/dir.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/doc.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/image.png (100%) rename user_config/usr/share/{app_name/icons/app_name-64x64.png => lsp_manager/icons/lsp_manager-64x64.png} (100%) rename user_config/usr/share/{app_name/icons/app_name.png => lsp_manager/icons/lsp_manager.png} (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/pdf.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/presentation.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/spreadsheet.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/text.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/trash.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/video.png (100%) rename user_config/usr/share/{app_name => lsp_manager}/icons/web.png (100%) create mode 100644 user_config/usr/share/lsp_manager/initialize-params-slim.json create mode 100644 user_config/usr/share/lsp_manager/initialize-params.json create mode 100644 user_config/usr/share/lsp_manager/key-bindings.json create mode 100644 user_config/usr/share/lsp_manager/lsp-servers-config.json rename user_config/usr/share/{app_name => lsp_manager}/stylesheet.css (92%) diff --git a/README.md b/README.md index cb2c302..4354c32 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,11 @@ -# Python-With-Gtk-Template -A template project for Python with Gtk applications. +# LSP Manager +A helpful tool to handle LSPs (Language Server Protocols) by creating the LSP process, sending client initialize and initialized messages, and allowing crafting of messages. ### Requirements * PyGObject (Gtk introspection library) * pyxdg (Desktop ".desktop" file parser) * setproctitle (Define process title to search and kill more easily) -* sqlmodel (SQL databases and is powered by Pydantic and SQLAlchemy) + ### Note -* Move respetive sub folder content under user_config to the same places in Linux. Though, user/share/ can go to ~/.config folder if prefered. -* In additiion, place the plugins folder in the same app folder you moved to /usr/share/ or ~/.config/ . -There are a "\" strings and files that need to be set according to your app's name located at: -* \_\_builtins\_\_.py -* user_config/bin/app_name -* user_config/usr/share/app_name -* user_config/usr/share/app_name/icons/app_name.png -* user_config/usr/share/app_name/icons/app_name-64x64.png -* user_config/usr/share/applications/app_name.desktop - - -For the user_config, after changing names and files, copy all content to their respective destinations. -The logic follows Debian Dpkg packaging and its placement logic. \ No newline at end of file +WIP \ No newline at end of file diff --git a/src/__builtins__.py b/src/__builtins__.py index 827ee12..7654dfa 100644 --- a/src/__builtins__.py +++ b/src/__builtins__.py @@ -11,7 +11,7 @@ from libs.event_system import EventSystem from libs.endpoint_registry import EndpointRegistry from libs.keybindings import Keybindings from libs.logger import Logger -from libs.settings_manager.manager import SettingsManager +from libs.settings.manager import SettingsManager @@ -35,7 +35,7 @@ def daemon_threaded_wrapper(fn): # NOTE: Just reminding myself we can add to builtins two different ways... # __builtins__.update({"event_system": Builtins()}) -builtins.app_name = "" +builtins.APP_NAME = "LSP_Manager" builtins.keybindings = Keybindings() builtins.event_system = EventSystem() diff --git a/src/__main__.py b/src/__main__.py index f5121f8..21ed66f 100644 --- a/src/__main__.py +++ b/src/__main__.py @@ -18,7 +18,7 @@ from app import Application def main(args, unknownargs): - setproctitle(f'{app_name}') + setproctitle(f'{APP_NAME}') if args.debug == "true": settings_manager.set_debug(True) diff --git a/src/app.py b/src/app.py index b945b22..02bf996 100644 --- a/src/app.py +++ b/src/app.py @@ -39,7 +39,7 @@ class Application: message = f"FILE|{arg}" ipc_server.send_ipc_message(message) - raise AppLaunchException(f"{app_name} IPC Server Exists: Have sent path(s) to it and closing...") + raise AppLaunchException(f"{APP_NAME} IPC Server Exists: Have sent path(s) to it and closing...") def ipc_realization_check(self, ipc_server): try: @@ -56,7 +56,7 @@ class Application: try: # kill -SIGUSR2 from Linux/Unix or SIGBREAK signal from Windows signal.signal( - vars(signal).get("SIGBREAK") or vars(signal).get("SIGUSR1"), + vars(signal).get("SIGBREAK") or vars(signal).get("SIGUSR2"), debug_signal_handler ) except ValueError: diff --git a/src/core/builder_wrapper.py b/src/core/builder_wrapper.py new file mode 100644 index 0000000..9245da9 --- /dev/null +++ b/src/core/builder_wrapper.py @@ -0,0 +1,33 @@ +# Python imports + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +from gi.repository import Gtk + +# Application imports + + + +class BuilderWrapper(Gtk.Builder): + """docstring for BuilderWrapper.""" + + def __init__(self): + super(BuilderWrapper, self).__init__() + + self.objects = {} + + def get_object(self, id: str, use_gtk: bool = True) -> any: + if not use_gtk: + return self.objects[id] + + return super(BuilderWrapper, self).get_object(id) + + def expose_object(self, id: str, object: any, use_gtk: bool = True) -> None: + if not use_gtk: + self.objects[id] = object + else: + super(BuilderWrapper, self).expose_object(id, object) + + def dereference_object(self, id: str) -> None: + del self.objects[id] diff --git a/src/core/containers/base_container.py b/src/core/containers/base_container.py index 387cbbd..79ab27e 100644 --- a/src/core/containers/base_container.py +++ b/src/core/containers/base_container.py @@ -22,7 +22,7 @@ class BaseContainer(Gtk.Box): self._subscribe_to_events() self._load_widgets() - self.show_all() + self.show() def _setup_styling(self): @@ -33,8 +33,8 @@ class BaseContainer(Gtk.Box): ... def _subscribe_to_events(self): - event_system.subscribe("update_transparency", self._update_transparency) - event_system.subscribe("remove_transparency", self._remove_transparency) + event_system.subscribe("update-transparency", self._update_transparency) + event_system.subscribe("remove-transparency", self._remove_transparency) def _load_widgets(self): self.add(HeaderContainer()) diff --git a/src/core/containers/body_container.py b/src/core/containers/body_container.py index e1d94b2..bdead24 100644 --- a/src/core/containers/body_container.py +++ b/src/core/containers/body_container.py @@ -23,13 +23,13 @@ class BodyContainer(Gtk.Box): self._subscribe_to_events() self._load_widgets() - self.show_all() + self.show() def _setup_styling(self): self.set_orientation(Gtk.Orientation.HORIZONTAL) self.ctx.add_class("body-container") - self.set_homogeneous(True) + # self.set_homogeneous(True) def _setup_signals(self): ... diff --git a/src/core/containers/center_container.py b/src/core/containers/center_container.py index 7d51eb2..329fd85 100644 --- a/src/core/containers/center_container.py +++ b/src/core/containers/center_container.py @@ -6,7 +6,7 @@ gi.require_version('Gtk', '3.0') from gi.repository import Gtk # Application imports -from ..widgets.webkit.webkit_ui import WebkitUI +from ..widgets.lsp_notebook import LSPNotebook @@ -21,6 +21,8 @@ class CenterContainer(Gtk.Box): self._subscribe_to_events() self._load_widgets() + self.show_all() + def _setup_styling(self): self.set_orientation(Gtk.Orientation.VERTICAL) @@ -31,18 +33,7 @@ class CenterContainer(Gtk.Box): ... def _subscribe_to_events(self): - # event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc) ... def _load_widgets(self): - glade_box = self._builder.get_object("glade_box") - button = Gtk.Button(label = "Click Me!") - - button.connect("clicked", self._hello_world) - - self.add(button) - self.add(glade_box) - self.add( WebkitUI() ) - - def _hello_world(self, widget = None, eve = None): - logger.debug("Hello, World!") \ No newline at end of file + self.add( LSPNotebook() ) \ No newline at end of file diff --git a/src/core/containers/header_container.py b/src/core/containers/header_container.py index 857cbeb..0216562 100644 --- a/src/core/containers/header_container.py +++ b/src/core/containers/header_container.py @@ -6,7 +6,8 @@ gi.require_version('Gtk', '3.0') from gi.repository import Gtk # Application imports -from ..widgets.transparency_scale import TransparencyScale +from ..widgets.controls.open_files_button import OpenFilesButton +from ..widgets.controls.transparency_scale import TransparencyScale @@ -21,8 +22,6 @@ class HeaderContainer(Gtk.Box): self._subscribe_to_events() self._load_widgets() - self.show_all() - def _setup_styling(self): self.set_orientation(Gtk.Orientation.HORIZONTAL) @@ -32,15 +31,19 @@ class HeaderContainer(Gtk.Box): ... def _subscribe_to_events(self): - ... + event_system.subscribe("tggl-top-main-menubar", self.tggl_top_main_menubar) def _load_widgets(self): - button = Gtk.Button(label = "Interactive Debug") + button = Gtk.Button(label = "Interactive Debug") button.connect("clicked", self._interactive_debug) - self.add(TransparencyScale()) + self.add( OpenFilesButton() ) + self.add( TransparencyScale() ) self.add(button) def _interactive_debug(self, widget = None, eve = None): - event_system.emit("load_interactive_debug") + event_system.emit("load-interactive-debug") + + def tggl_top_main_menubar(self): + self.hide() if self.is_visible() else self.show_all() \ No newline at end of file diff --git a/src/core/containers/left_container.py b/src/core/containers/left_container.py index 77cd490..4b4e564 100644 --- a/src/core/containers/left_container.py +++ b/src/core/containers/left_container.py @@ -18,6 +18,8 @@ class LeftContainer(Gtk.Box): self._subscribe_to_events() self._load_widgets() + self.show() + def _setup_styling(self): self.set_orientation(Gtk.Orientation.VERTICAL) @@ -28,8 +30,7 @@ class LeftContainer(Gtk.Box): ... def _subscribe_to_events(self): - # event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc) ... def _load_widgets(self): - ... + ... \ No newline at end of file diff --git a/src/core/containers/right_container.py b/src/core/containers/right_container.py index f0ac75d..5b61e21 100644 --- a/src/core/containers/right_container.py +++ b/src/core/containers/right_container.py @@ -18,6 +18,8 @@ class RightContainer(Gtk.Box): self._subscribe_to_events() self._load_widgets() + self.show() + def _setup_styling(self): self.set_orientation(Gtk.Orientation.VERTICAL) @@ -28,8 +30,7 @@ class RightContainer(Gtk.Box): ... def _subscribe_to_events(self): - # event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc) ... def _load_widgets(self): - ... + ... \ No newline at end of file diff --git a/src/core/controllers/base_controller.py b/src/core/controllers/base_controller.py index a42387f..9da61d9 100644 --- a/src/core/controllers/base_controller.py +++ b/src/core/controllers/base_controller.py @@ -1,5 +1,4 @@ # Python imports -import os # Lib imports import gi @@ -19,6 +18,8 @@ from .bridge_controller import BridgeController class BaseController(IPCSignalsMixin, KeyboardSignalsMixin, BaseControllerData): def __init__(self, args, unknownargs): + self.collect_files_dirs(args, unknownargs) + self.setup_controller_data() self._setup_styling() @@ -27,16 +28,13 @@ class BaseController(IPCSignalsMixin, KeyboardSignalsMixin, BaseControllerData): self._load_controllers() if args.no_plugins == "false": - self.plugins.launch_plugins() + self.plugins_controller.pre_launch_plugins() - for arg in unknownargs + [args.new_tab,]: - if os.path.isfile(arg): - message = f"FILE|{arg}" - event_system.emit("post_file_to_ipc", message) + if args.no_plugins == "false": + self.plugins_controller.post_launch_plugins() - if os.path.isdir(arg): - message = f"DIR|{arg}" - event_system.emit("post_file_to_ipc", message) + for file in settings_manager.get_starting_files(): + event_system.emit("post-file-to-ipc", file) logger.info(f"Made it past {self.__class__} loading...") @@ -50,10 +48,10 @@ class BaseController(IPCSignalsMixin, KeyboardSignalsMixin, BaseControllerData): self.window.connect("key-release-event", self.on_global_key_release_controller) def _subscribe_to_events(self): - event_system.subscribe("shutting_down", lambda: print("Shutting down...")) - event_system.subscribe("handle_file_from_ipc", self.handle_file_from_ipc) - event_system.subscribe("handle_dir_from_ipc", self.handle_dir_from_ipc) - event_system.subscribe("tggl_top_main_menubar", self._tggl_top_main_menubar) + event_system.subscribe("shutting-down", lambda: print("Shutting down...")) + event_system.subscribe("handle-file-from-ipc", self.handle_file_from_ipc) + event_system.subscribe("handle-dir-from-ipc", self.handle_dir_from_ipc) + event_system.subscribe("tggl-top-main-menubar", self._tggl_top_main_menubar) def _load_controllers(self): BridgeController() @@ -61,12 +59,12 @@ class BaseController(IPCSignalsMixin, KeyboardSignalsMixin, BaseControllerData): def _tggl_top_main_menubar(self): logger.debug("_tggl_top_main_menubar > stub...") - def setup_builder_and_container(self): - self.builder = Gtk.Builder() + def _load_glade_file(self): self.builder.add_from_file(settings_manager.get_glade_file()) self.builder.expose_object("main_window", self.window) settings_manager.set_builder(self.builder) self.base_container = BaseContainer() - settings_manager.register_signals_to_builder([self, self.base_container]) \ No newline at end of file + settings_manager.register_signals_to_builder([self, self.base_container]) + diff --git a/src/core/controllers/base_controller_data.py b/src/core/controllers/base_controller_data.py index 937ba88..4581209 100644 --- a/src/core/controllers/base_controller_data.py +++ b/src/core/controllers/base_controller_data.py @@ -7,6 +7,7 @@ from shutil import which # Application imports from plugins.plugins_controller import PluginsController +from ..builder_wrapper import BuilderWrapper @@ -14,16 +15,32 @@ class BaseControllerData: ''' BaseControllerData contains most of the state of the app at ay given time. It also has some support methods. ''' def setup_controller_data(self) -> None: - self.window = settings_manager.get_main_window() - self.builder = None - self.base_container = None - self.was_midified_key = False - self.ctrl_down = False - self.shift_down = False - self.alt_down = False + self.window = settings_manager.get_main_window() + self.builder = BuilderWrapper() + self.plugins_controller = PluginsController() - self.setup_builder_and_container() - self.plugins = PluginsController() + self.base_container = None + self.was_midified_key = False + self.ctrl_down = False + self.shift_down = False + self.alt_down = False + + self._load_glade_file() + + + def collect_files_dirs(self, args, unknownargs): + files = [] + for arg in unknownargs + [args.new_tab,]: + if os.path.isdir( arg.replace("file://", "") ): + files.append( f"DIR|{arg.replace('file://', '')}" ) + + # NOTE: If passing line number with file split against : + if os.path.isfile( arg.replace("file://", "").split(":")[0] ): + files.append( f"FILE|{arg.replace('file://', '')}" ) + + if len(files) > 0: + settings_manager.set_is_starting_with_file(True) + settings_manager.set_starting_files(files) def get_base_container(self): return self.base_container @@ -80,4 +97,4 @@ class BaseControllerData: proc = subprocess.Popen(command, stdin = subprocess.PIPE) proc.stdin.write(data.encode(encoding)) proc.stdin.close() - retcode = proc.wait() \ No newline at end of file + retcode = proc.wait() diff --git a/src/core/controllers/bridge_controller.py b/src/core/controllers/bridge_controller.py index 648139e..9a689c8 100644 --- a/src/core/controllers/bridge_controller.py +++ b/src/core/controllers/bridge_controller.py @@ -20,19 +20,19 @@ class BridgeController: ... def _subscribe_to_events(self): - event_system.subscribe("handle_bridge_event", self.handle_bridge_event) + event_system.subscribe("handle-bridge-event", self.handle_bridge_event) def handle_bridge_event(self, event): match event.topic: case "save": - event_system.emit(f"handle_file_event_{event.originator}", (event,)) + event_system.emit(f"handle-file-event-{event.originator}", (event,)) case "close": - event_system.emit(f"handle_file_event_{event.originator}", (event,)) + event_system.emit(f"handle-file-event-{event.originator}", (event,)) case "load_buffer": - event_system.emit(f"handle_file_event_{event.originator}", (event,)) + event_system.emit(f"handle-file-event-{event.originator}", (event,)) case "load_file": - event_system.emit(f"handle_file_event_{event.originator}", (event,)) + event_system.emit(f"handle-file-event-{event.originator}", (event,)) case "alert": content = base64.b64decode( event.content.encode() ).decode("utf-8") logger.info(f"\nMessage Topic: {event.topic}\nMessage Content: {content}") diff --git a/src/core/widgets/controls/__init__.py b/src/core/widgets/controls/__init__.py new file mode 100644 index 0000000..f53f627 --- /dev/null +++ b/src/core/widgets/controls/__init__.py @@ -0,0 +1,3 @@ +""" + Widgets.Controls Module +""" diff --git a/src/core/widgets/controls/open_files_button.py b/src/core/widgets/controls/open_files_button.py new file mode 100644 index 0000000..06e6a9f --- /dev/null +++ b/src/core/widgets/controls/open_files_button.py @@ -0,0 +1,86 @@ +# Python imports +import os + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +gi.require_version('Gdk', '3.0') +from gi.repository import Gtk +from gi.repository import Gdk +from gi.repository import Gio + +# Application imports + + + +class OpenFilesButton(Gtk.Button): + """docstring for OpenFilesButton.""" + + def __init__(self): + super(OpenFilesButton, self).__init__() + + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + self._load_widgets() + + + def _setup_styling(self): + self.set_label("Open File(s)...") + self.set_image( Gtk.Image.new_from_icon_name("gtk-open", 4) ) + self.set_always_show_image(True) + self.set_image_position(1) # Left - 0, Right = 1 + self.set_hexpand(False) + + def _setup_signals(self): + self.connect("button-release-event", self._open_files) + + def _subscribe_to_events(self): + event_system.subscribe("open_files", self._open_files) + + def _load_widgets(self): + ... + + def _open_files(self, widget = None, eve = None, gfile = None): + start_dir = None + _gfiles = [] + + if gfile and gfile.query_exists(): + start_dir = gfile.get_parent() + + chooser = Gtk.FileChooserDialog("Open File(s)...", None, + Gtk.FileChooserAction.OPEN, + ( + Gtk.STOCK_CANCEL, + Gtk.ResponseType.CANCEL, + Gtk.STOCK_OPEN, + Gtk.ResponseType.OK + ) + ) + + chooser.set_select_multiple(True) + + try: + folder = widget.get_current_file().get_parent() if not start_dir else start_dir + chooser.set_current_folder( folder.get_path() ) + except Exception as e: + ... + + response = chooser.run() + if not response == Gtk.ResponseType.OK: + chooser.destroy() + return _gfiles + + filenames = chooser.get_filenames() + if not filenames: + chooser.destroy() + return _gfiles + + for file in filenames: + path = file if os.path.isabs(file) else os.path.abspath(file) + _gfiles.append( Gio.File.new_for_path(path) ) + + chooser.destroy() + + logger.debug(_gfiles) + return _gfiles \ No newline at end of file diff --git a/src/core/widgets/transparency_scale.py b/src/core/widgets/controls/transparency_scale.py similarity index 89% rename from src/core/widgets/transparency_scale.py rename to src/core/widgets/controls/transparency_scale.py index 1e48177..223b59a 100644 --- a/src/core/widgets/transparency_scale.py +++ b/src/core/widgets/controls/transparency_scale.py @@ -37,12 +37,12 @@ class TransparencyScale(Gtk.Scale): def _load_widgets(self): adjust = self.get_adjustment() adjust.set_lower(0) - adjust.set_upper(99) + adjust.set_upper(100) adjust.set_value(settings.theming.transparency) adjust.set_step_increment(1.0) def _update_transparency(self, range): - event_system.emit("remove_transparency") + event_system.emit("remove-transparency") tp = int(range.get_value()) settings.theming.transparency = tp - event_system.emit("update_transparency") \ No newline at end of file + event_system.emit("update-transparency") \ No newline at end of file diff --git a/src/core/widgets/lsp_message_box.py b/src/core/widgets/lsp_message_box.py new file mode 100644 index 0000000..42cce56 --- /dev/null +++ b/src/core/widgets/lsp_message_box.py @@ -0,0 +1,380 @@ +# Python imports +import os +import signal +import json +import subprocess +import threading + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +gi.require_version('GtkSource', '4') +from gi.repository import Gtk +from gi.repository import GLib +from gi.repository import GtkSource + +# Application imports + + + +# Request type formatting +# https://github.com/microsoft/multilspy/blob/main/src/multilspy/language_server.py#L417 + +content_part = """{ + "method": "textDocument/definition", + "params": { + "textDocument": { + "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/testing/lsp_manager/src/core/widgets/lsp_message_box.py", + "languageId": "python3", + "version": 1, + "text": "" + }, + "position": { + "line": 5, + "character": 12, + "offset": 0 + } + } +} +""" + +references_query = """{ + + "method": "textDocument/references", + "params": { + "context": { + "includeDeclaration": false + }, + "textDocument": { + "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/testing/lsp_manager/src/core/widgets/lsp_message_box.py", + "languageId": "python3", + "version": 1, + "text": "" + }, + "position": { + "line": 43, + "character": 13, + "offset": 0 + } + } +} +""" + +symbols_query = """{ + "method": "textDocument/documentSymbol", + "params": { + "textDocument": { + "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/testing/lsp_manager/src/core/widgets/lsp_message_box.py", + "languageId": "python3", + "version": 1, + "text": "" + } + } +} + +""" + + + +LEN_HEADER = "Content-Length: " +TYPE_HEADER = "Content-Type: " + + + +class LSPMessageBox(Gtk.Box): + def __init__(self): + super(LSPMessageBox, self).__init__() + + self._lsp_pid = -1 + self._message_id = 0 + + # https://github.com/microsoft/multilspy/tree/main/src/multilspy/language_servers + # initialize-params-slim.json was created off of jedi_language_server one + self._lsp_init_data = settings_manager.get_lsp_init_data() + + self.read_lock = threading.Lock() + self.write_lock = threading.Lock() + + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + self._load_widgets() + + self.show_all() + + + def _setup_styling(self): + ctx = self.get_style_context() + ctx.add_class("lsp-message-box") + + self.set_orientation(Gtk.Orientation.VERTICAL) + self.set_hexpand(True) + self.set_vexpand(True) + + def _setup_signals(self): + ... + + def _subscribe_to_events(self): + ... + + def _load_widgets(self): + scrolled_win = Gtk.ScrolledWindow() + self.top_buttons = Gtk.ButtonBox() + self.buttons = Gtk.ButtonBox() + + file_choser_lbl = Gtk.Label(label="Workspace Folder:") + self.file_choser_btn = Gtk.FileChooserButton() + + initialize_btn = Gtk.Button(label="Send Initialize Message") + notification_btn = Gtk.Button(label="Send Notification Message") + message_btn = Gtk.Button(label="Send Message") + start_stop_lsp_btn = Gtk.Button(label="Start LSP") + + source_view = GtkSource.View() + language_manager = GtkSource.LanguageManager() + style_scheme_manager = GtkSource.StyleSchemeManager() + style_scheme = style_scheme_manager.get_scheme("peacocks-in-space") + style_scheme = style_scheme if style_scheme else style_scheme_manager.get_scheme("solarized-dark") + self.buffer = source_view.get_buffer() + + self.file_choser_btn.set_title("Chose Workspace") + self.file_choser_btn.set_action( Gtk.FileChooserAction.SELECT_FOLDER ) + self.file_choser_btn.set_uri("file:///home/abaddon/Coding/Projects/Active/Python_Projects/testing/lsp_manager") + + self.buffer.set_language( language_manager.get_language("json") ) + self.buffer.set_style_scheme(style_scheme) + self.buffer.set_text(content_part) + + source_view.set_indent_width(4) + source_view.set_tab_width(4) + source_view.set_insert_spaces_instead_of_tabs(True) + source_view.set_hexpand(True) + source_view.set_vexpand(True) + + initialize_btn.connect("clicked", self.send_initialize_message) + notification_btn.connect("clicked", self.send_notification_message) + message_btn.connect("clicked", self.send_message_message) + start_stop_lsp_btn.connect("clicked", self.start_stop_lsp) + + scrolled_win.add(source_view) + + self.top_buttons.add(Gtk.Label(label=f"Message ID: {self._message_id}")) + self.top_buttons.add(file_choser_lbl) + self.top_buttons.add(self.file_choser_btn) + + self.buttons.add(initialize_btn) + self.buttons.add(notification_btn) + self.buttons.add(message_btn) + self.buttons.add(start_stop_lsp_btn) + + self.add(self.top_buttons) + self.add(scrolled_win) + self.add(self.buttons) + + self._disable_buttons() + start_stop_lsp_btn.set_sensitive(True) + + def update_message_id_label(self): + self.top_buttons.get_children()[0].set_label(f"Message ID: {self._message_id}") + + def post_int_run(self): + lsp_ui = self.get_parent() + self.alt_command_entry = lsp_ui.alt_command_entry + self.command_entry = lsp_ui.command_entry + self.socket_entry = lsp_ui.socket_entry + self.init_options_buffer = lsp_ui.init_options_text_vw.get_buffer() + del lsp_ui + + def send_initialize_message(self, button, eve = None): + workspace_file = self.file_choser_btn.get_file().get_path() + workspace_uri = self.file_choser_btn.get_uri() + folder_name = os.path.basename(workspace_file) + + self._lsp_init_data["processId"] = settings_manager.get_app_pid() + self._lsp_init_data["rootPath"] = workspace_file + self._lsp_init_data["rootUri"] = workspace_uri + self._lsp_init_data["workspaceFolders"] = [ + { + "name": folder_name, + "uri": workspace_uri + } + ] + + start, end = self.init_options_buffer.get_bounds() + init_ops = self.init_options_buffer.get_text(start, end, True) + self._lsp_init_data["initializationOptions"] = json.loads(init_ops) + + self.make_request("initialize", self._lsp_init_data) + button.set_sensitive(False) + + def send_initialized_message(): + self.make_request("initialized") + + def make_notification(self, method: str, params: {} = {}): + data = { + "jsonrpc": "2.0", + "method": method, + "params": params + } + message_str = json.dumps(data) + message_size = len(message_str) + message = f"Content-Length: {message_size}\r\n\r\n{message_str}" + + self.lsp_process.stdin.write( message.encode("utf-8") ) + self.lsp_process.stdin.flush() + + def make_request(self, method: str, params: {} = {}): + self._monitor_lsp_response() + + data = { + "jsonrpc": "2.0", + "id": self._message_id, + "method": method, + "params": params + } + message_str = json.dumps(data) + message_size = len(message_str) + message = f"Content-Length: {message_size}\r\n\r\n{message_str}" + + with self.write_lock: + self.lsp_process.stdin.write( message.encode("utf-8") ) + self.lsp_process.stdin.flush() + + self._message_id += 1 + self.update_message_id_label() + + + def send_notification_message(self, button, eve = None): + pass + + def send_message_message(self, button, eve = None): + start, end = self.buffer.get_bounds() + data = self.buffer.get_text(start, end, True) + message = json.loads(data) + + self.make_request(message["method"], message["params"]) + + def start_stop_lsp(self, button, eve = None): + if self._lsp_pid == -1: + pid = self.start_lsp() + if not pid: return + + button.set_label("Stop LSP") + self._lsp_pid = pid + self._monitor_lsp_response() + self._enable_buttons() + else: + button.set_label("Start LSP") + self.stop_lsp() + self._disable_buttons() + button.set_sensitive(True) + + def start_lsp(self): + _command: str = self.alt_command_entry.get_text() + # _command: str = self.command_entry.get_text() + # _command: str = self.socket_entry.get_text() + command: [] = _command.split() if len( _command.split() ) > 0 else [ _command ] + self.lsp_process = subprocess.Popen( + command, + stdout = subprocess.PIPE, + stdin = subprocess.PIPE + ) + + return self.lsp_process.pid + + def stop_lsp(self): + if self._lsp_pid == -1: return + + self._lsp_pid = -1 + self._message_id = 0 + self.lsp_process.terminate() + self.update_message_id_label() + + # https://github.com/sr-lab/coqpyt/blob/master/coqpyt/lsp/json_rpc_endpoint.py#L65 + # Virtually this whole method unabashedly taken from ^ ... + @daemon_threaded + def _monitor_lsp_response(self): + with self.read_lock: + message_size = None + while True: + line = self.lsp_process.stdout.readline() + if not line: return None # Quit listener... + + line = line.decode("utf-8") + if not line.endswith("\r\n"): + raise Exception( + "Bad header: missing newline" + ) + line = line[:-2] # Strip the "\r\n" + if line == "": # We're done with the headers... + break + elif line.startswith(LEN_HEADER): + line = line[len(LEN_HEADER) :] + if not line.isdigit(): + raise Exception( + "Bad header: size is not int", + ) + message_size = int(line) + elif line.startswith(TYPE_HEADER): + # Not doing anything with type header, currently... + pass + else: + line = line.split(LEN_HEADER) + if len(line) == 2: + message_size = line[1] + raise Exception( + "Bad header: unknown header" + ) + + if not message_size: return + + data = self.lsp_process.stdout.read(message_size) + jsonrpc_res = data.decode("utf-8") + lsp_result = json.loads( jsonrpc_res ) + response_id = -1 + + if not lsp_result: return + if "id" in lsp_result.keys(): response_id = lsp_result["id"] + + GLib.idle_add(self.handle_lsp_response, response_id, lsp_result) + + def handle_lsp_response(self, id: int, lsp_result: {}): + keys = lsp_result.keys() + if "error" in keys: + lsp_result = lsp_result["error"] + logger.debug(f"LSP Error Code: {lsp_result['code']}") + logger.debug(f"LSP Error Message:\n{lsp_result['message']}") + return + + if "result" in keys: + lsp_result = lsp_result["result"] + + if isinstance(lsp_result, dict): + keys = lsp_result.keys() + if "capabilities" in keys: + logger.debug(f"LSP Capabilities Response:\n{lsp_result}") + self.send_initialized_message() + + + if isinstance(lsp_result, list): + print() + print( str(id) ) + print(lsp_result) + print() + print() + + if isinstance(lsp_result, tuple): + print() + print( str(id) ) + print(lsp_result) + print() + print() + + def _enable_buttons(self): + for button in self.buttons.get_children(): + button.set_sensitive(True) + + def _disable_buttons(self): + for button in self.buttons.get_children(): + button.set_sensitive(False) + \ No newline at end of file diff --git a/src/core/widgets/lsp_notebook.py b/src/core/widgets/lsp_notebook.py new file mode 100644 index 0000000..8393a9e --- /dev/null +++ b/src/core/widgets/lsp_notebook.py @@ -0,0 +1,51 @@ +# Python imports + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +from gi.repository import Gtk +from gi.repository import GLib + +# Application imports +from .lsp_window import LSPWindow + + + +class LSPNotebook(Gtk.Notebook): + def __init__(self): + super(LSPNotebook, self).__init__() + + self._builder = settings_manager.get_builder() + self.lsp_config_data = settings_manager.get_lsp_config_data() + + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + self._load_widgets() + + self.show_all() + + + def _setup_styling(self): + self.set_tab_pos(Gtk.PositionType.LEFT) + + self.set_hexpand(True) + self.set_vexpand(True) + + ctx = self.get_style_context() + ctx.add_class("lsp-notebook") + + def _setup_signals(self): + ... + + def _subscribe_to_events(self): + ... + + def _load_widgets(self): + for language, data in self.lsp_config_data.items(): + tab_widget = Gtk.Label(label=language) + lsp_window = LSPWindow(language, data) + + self.append_page(lsp_window, tab_widget) + self.set_tab_detachable(lsp_window, False) + self.set_tab_reorderable(lsp_window, False) diff --git a/src/core/widgets/lsp_ui.py b/src/core/widgets/lsp_ui.py new file mode 100644 index 0000000..4b681e6 --- /dev/null +++ b/src/core/widgets/lsp_ui.py @@ -0,0 +1,124 @@ +# Python imports +import json + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +gi.require_version('GtkSource', '4') +from gi.repository import Gtk +from gi.repository import GtkSource + +# Application imports +from .lsp_message_box import LSPMessageBox + + + +class LSPUI(Gtk.Grid): + def __init__(self, language, data): + super(LSPUI, self).__init__() + + self._data = data + self._language = language + self._no_init_ops_text = "{\n \n}" + + self.alt_command_entry = Gtk.Entry() + self.command_entry = Gtk.Entry() + self.socket_entry = Gtk.Entry() + self.init_options_text_vw = GtkSource.View() + self.message_box = LSPMessageBox() + + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + self._load_widgets() + + self.message_box.post_int_run() + + self.show_all() + + + def _setup_styling(self): + ctx = self.get_style_context() + ctx.add_class("lsp-ui") + + self.set_hexpand(True) + self.set_vexpand(True) + self.set_margin_top(5) + self.set_margin_bottom(5) + self.set_margin_left(10) + self.set_margin_right(10) + + self.alt_command_entry.set_hexpand(True) + self.command_entry.set_hexpand(True) + self.socket_entry.set_hexpand(True) + self.init_options_text_vw.set_vexpand(True) + self.init_options_text_vw.set_hexpand(True) + + self.alt_command_entry.set_placeholder_text("Alt Command:") + self.command_entry.set_placeholder_text("Command:") + self.socket_entry.set_placeholder_text("Socket") + + def _setup_signals(self): + ... + + def _subscribe_to_events(self): + ... + + def _load_widgets(self): + _language_manager = GtkSource.LanguageManager() + _style_scheme_manager = GtkSource.StyleSchemeManager() + style_scheme = _style_scheme_manager.get_scheme("peacocks-in-space") + style_scheme = style_scheme if style_scheme else _style_scheme_manager.get_scheme("solarized-dark") + buffer = self.init_options_text_vw.get_buffer() + scrolled_win1 = Gtk.ScrolledWindow() + + buffer.set_language( _language_manager.get_language("json") ) + buffer.set_style_scheme(style_scheme) + + info_link = self._data["info"] + info_link_title = self._language.title() + " LSP Info" if info_link else "Generic LSP Info" + info_link = info_link if info_link else "https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#contentPart" + link_btn = Gtk.LinkButton(info_link) + + alt_command_lbl = Gtk.Label(label="Alt Command:") + command_lbl = Gtk.Label(label="Command:") + socket_lbl = Gtk.Label(label="Socket:") + init_options_lbl = Gtk.Label(label="Initialization Options:") + message_box_lbl = Gtk.Label(label="Message Box:") + + self.alt_command_entry.set_text(self._data["alt-command"]) + self.command_entry.set_text(self._data["command"]) + self.socket_entry.set_text(self._data["socket"]) + + init_ops_txt = json.dumps( self._data["initialization-options"], separators=(',', ':'), indent=4 ) + init_ops_txt = init_ops_txt if not init_ops_txt in ["", "{}"] else self._no_init_ops_text + buffer.set_text(init_ops_txt) + + link_btn.set_label(info_link_title) + init_options_lbl.set_margin_top(10) + message_box_lbl.set_margin_top(10) + self.init_options_text_vw.set_indent_width(4) + self.init_options_text_vw.set_tab_width(4) + self.init_options_text_vw.set_insert_spaces_instead_of_tabs(True) + self.init_options_text_vw.set_hexpand(True) + self.init_options_text_vw.set_vexpand(True) + + scrolled_win1.add(self.init_options_text_vw) + + # child, left, top, width, height + self.attach(link_btn, 0, 0, 3, 1) + + self.attach(alt_command_lbl, 0, 1, 1, 1) + self.attach(command_lbl, 0, 2, 1, 1) + self.attach(socket_lbl, 0, 3, 1, 1) + + self.attach(self.alt_command_entry, 1, 1, 2, 1) + self.attach(self.command_entry, 1, 2, 2, 1) + self.attach(self.socket_entry, 1, 3, 2, 1) + + self.attach(init_options_lbl, 0, 4, 3, 1) + self.attach(scrolled_win1, 0, 5, 3, 1) + + self.attach(message_box_lbl, 0, 6, 3, 1) + self.attach(self.message_box, 0, 7, 3, 1) + diff --git a/src/core/widgets/lsp_window.py b/src/core/widgets/lsp_window.py new file mode 100644 index 0000000..f41b6eb --- /dev/null +++ b/src/core/widgets/lsp_window.py @@ -0,0 +1,38 @@ +# Python imports + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +from gi.repository import Gtk + +# Application imports +from .lsp_ui import LSPUI + + + +class LSPWindow(Gtk.ScrolledWindow): + def __init__(self, language, data): + super(LSPWindow, self).__init__() + + self._builder = settings_manager.get_builder() + + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + self._load_widgets(language, data) + + + def _setup_styling(self): + ctx = self.get_style_context() + ctx.add_class("lsp-window") + + def _setup_signals(self): + ... + + def _subscribe_to_events(self): + ... + + def _load_widgets(self, language, data): + viewport = Gtk.Viewport() + viewport.add( LSPUI(language, data) ) + self.add(viewport) diff --git a/src/core/widgets/webkit/webkit_ui.py b/src/core/widgets/webkit/webkit_ui.py index b16bebc..263e491 100644 --- a/src/core/widgets/webkit/webkit_ui.py +++ b/src/core/widgets/webkit/webkit_ui.py @@ -9,17 +9,14 @@ from gi.repository import Gdk from gi.repository import WebKit2 # Application imports -from libs.data_types import Event - +from libs.settings.other.webkit_ui_settings import WebkitUISettings +from libs.dto.event import Event class WebkitUI(WebKit2.WebView): def __init__(self): super(WebkitUI, self).__init__() - # self.get_context().set_sandbox_enabled(False) - - self._load_settings() self._setup_styling() self._subscribe_to_events() self._load_view() @@ -27,10 +24,6 @@ class WebkitUI(WebKit2.WebView): self.show_all() - if settings_manager.is_debug(): - inspector = self.get_inspector() - inspector.show() - def _setup_styling(self): self.set_vexpand(True) @@ -38,8 +31,8 @@ class WebkitUI(WebKit2.WebView): self.set_background_color( Gdk.RGBA(0, 0, 0, 0.0) ) def _subscribe_to_events(self): - event_system.subscribe(f"ui_message", self.ui_message) - + event_system.subscribe(f"ui-message", self.ui_message) + def _load_settings(self): self.set_settings( WebkitUISettings() ) @@ -54,7 +47,6 @@ class WebkitUI(WebKit2.WebView): def _setup_content_manager(self): content_manager = self.get_user_content_manager() - content_manager.connect("script-message-received", self._process_js_message) content_manager.register_script_message_handler("backend") @@ -64,45 +56,14 @@ class WebkitUI(WebKit2.WebView): try: event = Event( **json.loads(message) ) - event_system.emit("handle_bridge_event", (event,)) + event_system.emit("handle-bridge-event", (event,)) except Exception as e: logger.info(e) - def ui_message(self, mtype, message): + def ui_message(self, message, mtype): command = f"displayMessage('{message}', '{mtype}', '3')" self.run_javascript(command, None, None) - -class WebkitUISettings(WebKit2.Settings): - def __init__(self): - super(WebkitUISettings, self).__init__() - - self._set_default_settings() - - - # Note: Highly insecure setup but most "app" like setup I could think of. - # Audit heavily any scripts/links ran/clicked under this setup! - def _set_default_settings(self): - # self.set_enable_xss_auditor(True) - # self.set_enable_hyperlink_auditing(True) - self.set_enable_xss_auditor(False) - self.set_enable_hyperlink_auditing(False) - self.set_enable_dns_prefetching(False) - self.set_allow_file_access_from_file_urls(True) - self.set_allow_universal_access_from_file_urls(True) - # self.set_enable_java(True) - - self.set_enable_page_cache(False) - self.set_enable_offline_web_application_cache(False) - self.set_enable_html5_local_storage(False) - self.set_enable_html5_database(False) - - self.set_print_backgrounds(False) - self.set_enable_tabs_to_links(False) - self.set_enable_fullscreen(True) - self.set_enable_developer_extras(True) - self.set_enable_webrtc(True) - self.set_enable_webaudio(True) - self.set_enable_accelerated_2d_canvas(True) - - self.set_user_agent(f"Mozilla/5.0 {app_name}") \ No newline at end of file + def run_javascript(self, script, cancellable, callback): + logger.debug(script) + super().run_javascript(script, cancellable, callback) diff --git a/src/core/widgets/webkit_ui.py b/src/core/widgets/webkit_ui.py deleted file mode 100644 index 074adf0..0000000 --- a/src/core/widgets/webkit_ui.py +++ /dev/null @@ -1,64 +0,0 @@ -# Python imports - -# Lib imports -import gi -gi.require_version('Gdk', '3.0') -gi.require_version('WebKit2', '4.0') -from gi.repository import Gdk -from gi.repository import WebKit2 - -# Application imports -from libs.settings_manager.other.webkit_ui_settings import WebkitUISettings - - -class WebkitUI(WebKit2.WebView): - def __init__(self): - super(WebkitUI, self).__init__() - - self._setup_styling() - self._subscribe_to_events() - self._load_view() - self._setup_content_manager() - - self.show_all() - - - def _setup_styling(self): - self.set_vexpand(True) - self.set_hexpand(True) - self.set_background_color( Gdk.RGBA(0, 0, 0, 0.0) ) - - def _subscribe_to_events(self): - event_system.subscribe(f"ui_message", self.ui_message) - - def _load_settings(self): - self.set_settings( WebkitUISettings() ) - - def _load_view(self): - path = settings_manager.get_context_path() - data = None - - with open(f"{path}/index.html", "r") as f: - data = f.read() - - self.load_html(content = data, base_uri = f"file://{path}/") - - def _setup_content_manager(self): - content_manager = self.get_user_content_manager() - content_manager.connect("script-message-received", self._process_js_message) - content_manager.register_script_message_handler("backend") - - def _process_js_message(self, user_content_manager, js_result): - js_value = js_result.get_js_value() - message = js_value.to_string() - - try: - event = Event( **json.loads(message) ) - event_system.emit("handle_bridge_event", (event,)) - except Exception as e: - logger.info(e) - - def ui_message(self, message, mtype): - command = f"displayMessage('{message}', '{mtype}', '3')" - self.run_javascript(command, None, None) - diff --git a/src/core/window.py b/src/core/window.py index 7fad7b8..1b09fb4 100644 --- a/src/core/window.py +++ b/src/core/window.py @@ -11,6 +11,7 @@ from gi.repository import Gdk from gi.repository import GLib # Application imports +from libs.status_icon import StatusIcon from core.controllers.base_controller import BaseController @@ -27,7 +28,8 @@ class Window(Gtk.ApplicationWindow): super(Window, self).__init__() settings_manager.set_main_window(self) - self._controller = None + self._status_icon = None + self._controller = None self._setup_styling() self._setup_signals() @@ -41,7 +43,7 @@ class Window(Gtk.ApplicationWindow): def _setup_styling(self): - self.set_title(f"{app_name}") + self.set_title(f"{APP_NAME}") self.set_icon_from_file( settings_manager.get_window_icon() ) self.set_gravity(5) # 5 = CENTER self.set_position(1) # 1 = CENTER, 4 = CENTER_ALWAYS @@ -58,14 +60,15 @@ class Window(Gtk.ApplicationWindow): GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGINT, self._tear_down) def _subscribe_to_events(self): - event_system.subscribe("tear_down", self._tear_down) - event_system.subscribe("load_interactive_debug", self._load_interactive_debug) + event_system.subscribe("tear-down", self._tear_down) + event_system.subscribe("load-interactive-debug", self._load_interactive_debug) def _load_widgets(self, args, unknownargs): if settings_manager.is_debug(): self.set_interactive_debugging(True) - self._controller = BaseController(args, unknownargs) + self._controller = BaseController(args, unknownargs) + self._status_icon = StatusIcon() if not self._controller: raise ControllerStartException("BaseController exited and doesn't exist...") @@ -90,7 +93,7 @@ class Window(Gtk.ApplicationWindow): if visual and screen.is_composited() and settings.config.make_transparent == 0: self.set_visual(visual) self.set_app_paintable(True) - self.connect("draw", self._area_draw) + # self.connect("draw", self._area_draw) # bind css file cssProvider = Gtk.CssProvider() @@ -107,17 +110,17 @@ class Window(Gtk.ApplicationWindow): def _on_focus_in_event(self, widget, event): - event_system.emit("pause_dnd_signals") + event_system.emit("pause-dnd-signals") def _on_focus_out_event(self, widget, event): - event_system.emit("listen_dnd_signals") + event_system.emit("listen-dnd-signals") def _load_interactive_debug(self): self.set_interactive_debugging(True) def _tear_down(self, widget = None, eve = None): - event_system.emit("shutting_down") + event_system.emit("shutting-down") size = self.get_size() pos = self.get_position() @@ -132,4 +135,4 @@ class Window(Gtk.ApplicationWindow): Gtk.main_quit() def main(self): - Gtk.main() \ No newline at end of file + Gtk.main() diff --git a/src/libs/db/__init__.py b/src/libs/db/__init__.py new file mode 100644 index 0000000..135071c --- /dev/null +++ b/src/libs/db/__init__.py @@ -0,0 +1,6 @@ +""" + DB module +""" + +from .models import User +from .db import DB diff --git a/src/libs/db.py b/src/libs/db/db.py similarity index 100% rename from src/libs/db.py rename to src/libs/db/db.py diff --git a/src/libs/models.py b/src/libs/db/models.py similarity index 100% rename from src/libs/models.py rename to src/libs/db/models.py diff --git a/src/libs/debugging.py b/src/libs/debugging.py index b84193a..5eaa286 100644 --- a/src/libs/debugging.py +++ b/src/libs/debugging.py @@ -18,7 +18,7 @@ def debug_signal_handler(signal, frame): rpdb2.start_embedded_debugger("foobar", True, True) rpdb2.setbreak(depth=1) return - except StandardError: + except Exception: ... try: @@ -26,7 +26,7 @@ def debug_signal_handler(signal, frame): logger.debug("\n\nStarting embedded rconsole debugger...\n\n") rconsole.spawn_server() return - except StandardError as ex: + except Exception as ex: ... try: @@ -34,7 +34,15 @@ def debug_signal_handler(signal, frame): logger.debug("\n\nStarting PuDB debugger...\n\n") set_trace(paused = True) return - except StandardError as ex: + except Exception as ex: + ... + + try: + import ipdb + logger.debug("\n\nStarting IPDB debugger...\n\n") + ipdb.set_trace() + return + except Exception as ex: ... try: @@ -42,11 +50,11 @@ def debug_signal_handler(signal, frame): logger.debug("\n\nStarting embedded PDB debugger...\n\n") pdb.Pdb(skip=['gi.*']).set_trace() return - except StandardError as ex: + except Exception as ex: ... try: import code code.interact() - except StandardError as ex: - logger.debug(f"{ex}, returning to normal program flow...") + except Exception as ex: + logger.debug(f"{ex}, returning to normal program flow...") \ No newline at end of file diff --git a/src/libs/data_types/__init__.py b/src/libs/dto/__init__.py similarity index 100% rename from src/libs/data_types/__init__.py rename to src/libs/dto/__init__.py diff --git a/src/libs/data_types/event.py b/src/libs/dto/event.py similarity index 100% rename from src/libs/data_types/event.py rename to src/libs/dto/event.py diff --git a/src/libs/ipc_server.py b/src/libs/ipc_server.py index a351b66..a6052c4 100644 --- a/src/libs/ipc_server.py +++ b/src/libs/ipc_server.py @@ -13,17 +13,17 @@ from .singleton import Singleton class IPCServer(Singleton): - """ Create a listener so that other {app_name} instances send requests back to existing instance. """ + """ Create a listener so that other {APP_NAME} instances send requests back to existing instance. """ def __init__(self, ipc_address: str = '127.0.0.1', conn_type: str = "socket"): self.is_ipc_alive = False self._ipc_port = 4848 self._ipc_address = ipc_address self._conn_type = conn_type - self._ipc_authkey = b'' + bytes(f'{app_name}-ipc', 'utf-8') + self._ipc_authkey = b'' + bytes(f'{APP_NAME}-ipc', 'utf-8') self._ipc_timeout = 15.0 if conn_type == "socket": - self._ipc_address = f'/tmp/{app_name}-ipc.sock' + self._ipc_address = f'/tmp/{APP_NAME}-ipc.sock' elif conn_type == "full_network": self._ipc_address = '0.0.0.0' elif conn_type == "full_network_unsecured": @@ -35,7 +35,7 @@ class IPCServer(Singleton): self._subscribe_to_events() def _subscribe_to_events(self): - event_system.subscribe("post_file_to_ipc", self.send_ipc_message) + event_system.subscribe("post-file-to-ipc", self.send_ipc_message) def create_ipc_listener(self) -> None: @@ -74,12 +74,12 @@ class IPCServer(Singleton): if "FILE|" in msg: file = msg.split("FILE|")[1].strip() if file: - event_system.emit("handle_file_from_ipc", file) + event_system.emit("handle-file-from-ipc", file) if "DIR|" in msg: file = msg.split("DIR|")[1].strip() if file: - event_system.emit("handle_dir_from_ipc", file) + event_system.emit("handle-dir-from-ipc", file) conn.close() break diff --git a/src/libs/mixins/dnd_mixin.py b/src/libs/mixins/dnd_mixin.py index e4c9eed..4e231d3 100644 --- a/src/libs/mixins/dnd_mixin.py +++ b/src/libs/mixins/dnd_mixin.py @@ -67,4 +67,4 @@ class DnDMixin: files.append(gfile) - event_system.emit('set_pre_drop_dnd', (files,)) \ No newline at end of file + event_system.emit('set-pre-drop-dnd', (files,)) \ No newline at end of file diff --git a/src/libs/mixins/keyboard_signals_mixin.py b/src/libs/mixins/keyboard_signals_mixin.py index 4659adf..03446d0 100644 --- a/src/libs/mixins/keyboard_signals_mixin.py +++ b/src/libs/mixins/keyboard_signals_mixin.py @@ -68,11 +68,11 @@ class KeyboardSignalsMixin: if mapping: self.handle_mapped_key_event(mapping) else: - self.handle_as_key_event_scope(mapping) + self.handle_as_key_event_scope(keyname) def handle_mapped_key_event(self, mapping): try: - self.handle_as_controller_scope() + self.handle_as_controller_scope(mapping) except Exception: self.handle_as_plugin_scope(mapping) @@ -86,13 +86,11 @@ class KeyboardSignalsMixin: sender = "" eve_type = mapping - self.handle_as_key_event_system(sender, eve_type) - - def handle_as_key_event_scope(self, mapping): - logger.debug(f"on_global_key_release_controller > key > {keyname}") + self.handle_key_event_system(sender, eve_type) + def handle_as_key_event_scope(self, keyname): if self.ctrl_down and not keyname in ["1", "kp_1", "2", "kp_2", "3", "kp_3", "4", "kp_4"]: - self.handle_key_event_system(None, mapping) + self.handle_key_event_system(None, keyname) def handle_key_event_system(self, sender, eve_type): event_system.emit(eve_type) \ No newline at end of file diff --git a/src/libs/settings_manager/__init__.py b/src/libs/settings/__init__.py similarity index 100% rename from src/libs/settings_manager/__init__.py rename to src/libs/settings/__init__.py diff --git a/src/libs/settings_manager/manager.py b/src/libs/settings/manager.py similarity index 75% rename from src/libs/settings_manager/manager.py rename to src/libs/settings/manager.py index 6aa0fb7..6817a6d 100644 --- a/src/libs/settings_manager/manager.py +++ b/src/libs/settings/manager.py @@ -24,8 +24,8 @@ class SettingsManager(StartCheckMixin, Singleton): def __init__(self): self._SCRIPT_PTH = path.dirname(path.realpath(__file__)) self._USER_HOME = path.expanduser('~') - self._HOME_CONFIG_PATH = f"{self._USER_HOME}/.config/{app_name.lower()}" - self._USR_PATH = f"/usr/share/{app_name.lower()}" + self._HOME_CONFIG_PATH = f"{self._USER_HOME}/.config/{APP_NAME.lower()}" + self._USR_PATH = f"/usr/share/{APP_NAME.lower()}" self._USR_CONFIG_FILE = f"{self._USR_PATH}/settings.json" self._CONTEXT_PATH = f"{self._HOME_CONFIG_PATH}/context_path" @@ -35,10 +35,14 @@ class SettingsManager(StartCheckMixin, Singleton): self._GLADE_FILE = f"{self._HOME_CONFIG_PATH}/Main_Window.glade" self._CSS_FILE = f"{self._HOME_CONFIG_PATH}/stylesheet.css" self._KEY_BINDINGS_FILE = f"{self._HOME_CONFIG_PATH}/key-bindings.json" - self._PID_FILE = f"{self._HOME_CONFIG_PATH}/{app_name.lower()}.pid" + self._PID_FILE = f"{self._HOME_CONFIG_PATH}/{APP_NAME.lower()}.pid" self._UI_WIDEGTS_PATH = f"{self._HOME_CONFIG_PATH}/ui_widgets" self._CONTEXT_MENU = f"{self._HOME_CONFIG_PATH}/contexct_menu.json" - self._WINDOW_ICON = f"{self._DEFAULT_ICONS}/{app_name.lower()}.png" + self._LSP_CONFIG = f"{self._HOME_CONFIG_PATH}/lsp-servers-config.json" + # https://github.com/microsoft/multilspy/tree/main/src/multilspy/language_servers + # initialize-params-slim.json was created off of jedi_language_server one + self._LSP_INIT_CONFIG = f"{self._HOME_CONFIG_PATH}/initialize-params-slim.json" + self._WINDOW_ICON = f"{self._DEFAULT_ICONS}/{APP_NAME.lower()}.png" # self._USR_CONFIG_FILE = f"{self._USR_PATH}/settings.json" # self._PLUGINS_PATH = f"plugins" @@ -46,8 +50,8 @@ class SettingsManager(StartCheckMixin, Singleton): # self._GLADE_FILE = f"Main_Window.glade" # self._CSS_FILE = f"stylesheet.css" # self._KEY_BINDINGS_FILE = f"key-bindings.json" - # self._PID_FILE = f"{app_name.lower()}.pid" - # self._WINDOW_ICON = f"{app_name.lower()}.png" + # self._PID_FILE = f"{APP_NAME.lower()}.pid" + # self._WINDOW_ICON = f"{APP_NAME.lower()}.png" # self._UI_WIDEGTS_PATH = f"ui_widgets" # self._CONTEXT_MENU = f"contexct_menu.json" # self._DEFAULT_ICONS = f"icons" @@ -79,7 +83,7 @@ class SettingsManager(StartCheckMixin, Singleton): if not path.exists(self._CSS_FILE): raise MissingConfigError("Unable to find the application Stylesheet file.") if not path.exists(self._WINDOW_ICON): - self._WINDOW_ICON = f"{self._USR_PATH}/icons/{app_name.lower()}.png" + self._WINDOW_ICON = f"{self._USR_PATH}/icons/{APP_NAME.lower()}.png" if not path.exists(self._WINDOW_ICON): raise MissingConfigError("Unable to find the application icon.") if not path.exists(self._UI_WIDEGTS_PATH): @@ -101,6 +105,18 @@ class SettingsManager(StartCheckMixin, Singleton): except Exception as e: print( f"Settings Manager: {self._CONTEXT_MENU}\n\t\t{repr(e)}" ) + try: + with open(self._LSP_CONFIG) as file: + self._lsp_config_data = json.load(file) + except Exception as e: + print( f"Settings Manager: {self._LSP_CONFIG}\n\t\t{repr(e)}" ) + + try: + with open(self._LSP_INIT_CONFIG) as file: + self._lsp_init_data = json.load(file) + except Exception as e: + print( f"Settings Manager: {self._LSP_INIT_CONFIG}\n\t\t{repr(e)}" ) + self.settings: Settings = None self._main_window = None @@ -110,6 +126,8 @@ class SettingsManager(StartCheckMixin, Singleton): self._trace_debug = False self._debug = False self._dirty_start = False + self._passed_in_file = False + self._starting_files = [] def register_signals_to_builder(self, classes=None): @@ -128,7 +146,6 @@ class SettingsManager(StartCheckMixin, Singleton): def set_main_window(self, window): self._main_window = window def set_builder(self, builder) -> any: self._builder = builder - def get_monitor_data(self) -> list: screen = self._main_window.get_screen() monitors = [] @@ -144,6 +161,9 @@ class SettingsManager(StartCheckMixin, Singleton): def get_glade_file(self) -> str: return self._GLADE_FILE def get_ui_widgets_path(self) -> str: return self._UI_WIDEGTS_PATH def get_context_menu_data(self) -> str: return self._context_menu_data + def get_lsp_config_data(self) -> str: return self._lsp_config_data + def get_lsp_init_data(self) -> {}: return self._lsp_init_data + def get_app_pid(self) -> int: return self.pid def get_context_path(self) -> str: return self._CONTEXT_PATH def get_plugins_path(self) -> str: return self._PLUGINS_PATH @@ -152,21 +172,24 @@ class SettingsManager(StartCheckMixin, Singleton): def get_home_config_path(self) -> str: return self._HOME_CONFIG_PATH def get_window_icon(self) -> str: return self._WINDOW_ICON def get_home_path(self) -> str: return self._USER_HOME + def get_starting_files(self) -> []: return self._starting_files def is_trace_debug(self) -> str: return self._trace_debug def is_debug(self) -> str: return self._debug + def is_starting_with_file(self) -> bool: return self._passed_in_file def call_method(self, target_class = None, _method_name = None, data = None): method_name = str(_method_name) method = getattr(target_class, method_name, lambda data: f"No valid key passed...\nkey={method_name}\nargs={data}") return method(data) if data else method() - def set_main_window_x(self, x = 0): self.settings.config.main_window_x = x - def set_main_window_y(self, y = 0): self.settings.config.main_window_y = y - def set_main_window_width(self, width = 800): self.settings.config.main_window_width = width - def set_main_window_height(self, height = 600): self.settings.config.main_window_height = height + def set_main_window_x(self, x = 0): self.settings.config.main_window_x = x + def set_main_window_y(self, y = 0): self.settings.config.main_window_y = y + def set_main_window_width(self, width = 800): self.settings.config.main_window_width = width + def set_main_window_height(self, height = 600): self.settings.config.main_window_height = height def set_main_window_min_width(self, width = 720): self.settings.config.main_window_min_width = width def set_main_window_min_height(self, height = 480): self.settings.config.main_window_min_height = height + def set_starting_files(self, files: []) -> None: self._starting_files = files def set_trace_debug(self, trace_debug): self._trace_debug = trace_debug @@ -174,6 +197,8 @@ class SettingsManager(StartCheckMixin, Singleton): def set_debug(self, debug): self._debug = debug + def set_is_starting_with_file(self, is_passed_in_file: False): + self._passed_in_file = is_passed_in_file def load_settings(self): if not path.exists(self._CONFIG_FILE): diff --git a/src/libs/settings_manager/options/__init__.py b/src/libs/settings/options/__init__.py similarity index 100% rename from src/libs/settings_manager/options/__init__.py rename to src/libs/settings/options/__init__.py diff --git a/src/libs/settings_manager/options/config.py b/src/libs/settings/options/config.py similarity index 100% rename from src/libs/settings_manager/options/config.py rename to src/libs/settings/options/config.py diff --git a/src/libs/settings_manager/options/debugging.py b/src/libs/settings/options/debugging.py similarity index 100% rename from src/libs/settings_manager/options/debugging.py rename to src/libs/settings/options/debugging.py diff --git a/src/libs/settings_manager/options/filters.py b/src/libs/settings/options/filters.py similarity index 100% rename from src/libs/settings_manager/options/filters.py rename to src/libs/settings/options/filters.py diff --git a/src/libs/settings_manager/options/settings.py b/src/libs/settings/options/settings.py similarity index 100% rename from src/libs/settings_manager/options/settings.py rename to src/libs/settings/options/settings.py diff --git a/src/libs/settings_manager/options/theming.py b/src/libs/settings/options/theming.py similarity index 100% rename from src/libs/settings_manager/options/theming.py rename to src/libs/settings/options/theming.py diff --git a/src/libs/settings_manager/other/__init__.py b/src/libs/settings/other/__init__.py similarity index 100% rename from src/libs/settings_manager/other/__init__.py rename to src/libs/settings/other/__init__.py diff --git a/src/libs/settings_manager/other/webkit_ui_settings.py b/src/libs/settings/other/webkit_ui_settings.py similarity index 96% rename from src/libs/settings_manager/other/webkit_ui_settings.py rename to src/libs/settings/other/webkit_ui_settings.py index 962fe60..981ea49 100644 --- a/src/libs/settings_manager/other/webkit_ui_settings.py +++ b/src/libs/settings/other/webkit_ui_settings.py @@ -39,4 +39,4 @@ class WebkitUISettings(WebKit2.Settings): self.set_enable_webaudio(True) self.set_enable_accelerated_2d_canvas(True) - self.set_user_agent(f"{app_name}") \ No newline at end of file + self.set_user_agent(f"{APP_NAME}") \ No newline at end of file diff --git a/src/libs/settings_manager/start_check_mixin.py b/src/libs/settings/start_check_mixin.py similarity index 88% rename from src/libs/settings_manager/start_check_mixin.py rename to src/libs/settings/start_check_mixin.py index 6fc8208..491332d 100644 --- a/src/libs/settings_manager/start_check_mixin.py +++ b/src/libs/settings/start_check_mixin.py @@ -41,19 +41,20 @@ class StartCheckMixin: try: os.kill(pid, 0) except OSError: - print(f"{app_name} PID file exists but PID is irrelevant; starting dirty...") + print(f"{APP_NAME} PID file exists but PID is irrelevant; starting dirty...") self._dirty_start = True return False return True def _write_new_pid(self): - pid = os.getpid() + pid = os.getpid() + self.pid = pid self._write_pid(pid) self._print_pid(pid) def _print_pid(self, pid): - print(f"{app_name} PID: {pid}") + print(f"{APP_NAME} PID: {pid}") def _clean_pid(self): os.unlink(self._PID_FILE) diff --git a/src/libs/status_icon.py b/src/libs/status_icon.py new file mode 100644 index 0000000..2769a05 --- /dev/null +++ b/src/libs/status_icon.py @@ -0,0 +1,67 @@ +# Python imports + +# Lib imports +import gi +gi.require_version('Gtk', '3.0') +gi.require_version('AppIndicator3', '0.1') +from gi.repository import Gtk +from gi.repository import GLib +from gi.repository import AppIndicator3 + +# Application imports + + + +class StatusIcon(): + """ StatusIcon for Application to go to Status Tray. """ + + def __init__(self): + self._setup_styling() + self._setup_signals() + self._subscribe_to_events() + self._load_widgets() + + + def _setup_styling(self): + ... + + def _setup_signals(self): + ... + + def _subscribe_to_events(self): + ... + + def _load_widgets(self): + status_menu = Gtk.Menu() + icon_theme = Gtk.IconTheme.get_default() + check_menu_item = Gtk.CheckMenuItem.new_with_label("Update icon") + quit_menu_item = Gtk.MenuItem.new_with_label("Quit") + + # Create StatusNotifierItem + self.indicator = AppIndicator3.Indicator.new( + f"{APP_NAME}-statusicon", + "gtk-info", + AppIndicator3.IndicatorCategory.APPLICATION_STATUS) + self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE) + + check_menu_item.connect("activate", self.check_menu_item_cb) + quit_menu_item.connect("activate", self.quit_menu_item_cb) + icon_theme.connect('changed', self.icon_theme_changed_cb) + + self.indicator.set_menu(status_menu) + status_menu.append(check_menu_item) + status_menu.append(quit_menu_item) + status_menu.show_all() + + def update_icon(self, icon_name): + self.indicator.set_icon(icon_name) + + def check_menu_item_cb(self, widget, data = None): + icon_name = "parole" if widget.get_active() else "gtk-info" + self.update_icon(icon_name) + + def icon_theme_changed_cb(self, theme): + self.update_icon("gtk-info") + + def quit_menu_item_cb(self, widget, data = None): + event_system.emit("tear-down") diff --git a/src/plugins/manifest.py b/src/plugins/manifest.py index 1b93f34..b2320f5 100644 --- a/src/plugins/manifest.py +++ b/src/plugins/manifest.py @@ -15,13 +15,14 @@ class ManifestProcessor(Exception): class Plugin: - path: str = None - name: str = None - author: str = None - version: str = None - support: str = None - requests:{} = None - reference: type = None + path: str = None + name: str = None + author: str = None + version: str = None + support: str = None + requests:{} = None + reference: type = None + pre_launch: bool = False class ManifestProcessor: @@ -46,23 +47,25 @@ class ManifestProcessor: plugin.support = self._manifest["support"] plugin.requests = self._manifest["requests"] + if "pre_launch" in self._manifest.keys(): + plugin.pre_launch = True if self._manifest["pre_launch"] == "true" else False + return plugin def get_loading_data(self): loading_data = {} requests = self._plugin.requests - keys = requests.keys() - if "pass_events" in keys: + if "pass_events" in requests: if requests["pass_events"] in ["true"]: loading_data["pass_events"] = True - if "bind_keys" in keys: - if isinstance(requests["bind_keys"], list): - loading_data["bind_keys"] = requests["bind_keys"] - - if "pass_ui_objects" in keys: + if "pass_ui_objects" in requests: if isinstance(requests["pass_ui_objects"], list): loading_data["pass_ui_objects"] = [ self._builder.get_object(obj) for obj in requests["pass_ui_objects"] ] + if "bind_keys" in requests: + if isinstance(requests["bind_keys"], list): + loading_data["bind_keys"] = requests["bind_keys"] + return self._plugin, loading_data diff --git a/src/plugins/plugins_controller.py b/src/plugins/plugins_controller.py index a77186c..10d5dc2 100644 --- a/src/plugins/plugins_controller.py +++ b/src/plugins/plugins_controller.py @@ -10,6 +10,7 @@ from os.path import isdir import gi gi.require_version('Gtk', '3.0') from gi.repository import Gtk +from gi.repository import GLib from gi.repository import Gio # Application imports @@ -35,11 +36,23 @@ class PluginsController: self._plugins_dir_watcher = None self._plugin_collection = [] + self._plugin_manifests = {} + + self._load_manifests() - def launch_plugins(self) -> None: + def _load_manifests(self): + logger.info(f"Loading manifests...") + + for path, folder in [[join(self._plugins_path, item), item] if os.path.isdir(join(self._plugins_path, item)) else None for item in os.listdir(self._plugins_path)]: + manifest = ManifestProcessor(path, self._builder) + self._plugin_manifests[path] = { + "path": path, + "folder": folder, + "manifest": manifest + } + self._set_plugins_watcher() - self.load_plugins() def _set_plugins_watcher(self) -> None: self._plugins_dir_watcher = Gio.File.new_for_path(self._plugins_path) \ @@ -52,21 +65,47 @@ class PluginsController: Gio.FileMonitorEvent.MOVED_OUT]: self.reload_plugins(file) - def load_plugins(self, file: str = None) -> None: - logger.info(f"Loading plugins...") + def pre_launch_plugins(self) -> None: + logger.info(f"Loading pre-launch plugins...") + plugin_manifests: {} = {} + + for key in self._plugin_manifests: + target_manifest = self._plugin_manifests[key]["manifest"] + if target_manifest.is_pre_launch(): + plugin_manifests[key] = self._plugin_manifests[key] + + self._load_plugins(plugin_manifests, is_pre_launch = True) + + def post_launch_plugins(self) -> None: + logger.info(f"Loading post-launch plugins...") + plugin_manifests: {} = {} + + for key in self._plugin_manifests: + target_manifest = self._plugin_manifests[key]["manifest"] + if not target_manifest.is_pre_launch(): + plugin_manifests[key] = self._plugin_manifests[key] + + self._load_plugins(plugin_manifests) + + def _load_plugins(self, plugin_manifests: {} = {}, is_pre_launch: bool = False) -> None: parent_path = os.getcwd() - for path, folder in [[join(self._plugins_path, item), item] if os.path.isdir(join(self._plugins_path, item)) else None for item in os.listdir(self._plugins_path)]: - try: - target = join(path, "plugin.py") - manifest = ManifestProcessor(path, self._builder) + for key in plugin_manifests: + target_manifest = plugin_manifests[key] + path, folder, manifest = target_manifest["path"], target_manifest["folder"], target_manifest["manifest"] + try: + target = join(path, "plugin.py") if not os.path.exists(target): raise InvalidPluginException("Invalid Plugin Structure: Plugin doesn't have 'plugin.py'. Aboarting load...") plugin, loading_data = manifest.get_loading_data() module = self.load_plugin_module(path, folder, target) - self.execute_plugin(module, plugin, loading_data) + + if is_pre_launch: + self.execute_plugin(module, plugin, loading_data) + else: + GLib.idle_add(self.execute_plugin, *(module, plugin, loading_data)) except Exception as e: logger.info(f"Malformed Plugin: Not loading -->: '{folder}' !") logger.debug("Trace: ", traceback.print_exc()) diff --git a/user_config/bin/ b/user_config/bin/lsp-manager similarity index 53% rename from user_config/bin/ rename to user_config/bin/lsp-manager index c36f8a4..8a4fb19 100755 --- a/user_config/bin/ +++ b/user_config/bin/lsp-manager @@ -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 ": 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/.zip "$@" + python /opt/lsp-manager.zip "$@" } main "$@"; \ No newline at end of file diff --git a/user_config/usr/applications/.desktop b/user_config/usr/applications/.desktop deleted file mode 100755 index d459bfb..0000000 --- a/user_config/usr/applications/.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Name= -GenericName= -Comment= -Exec=/bin/ %F -Icon=/usr/share//icons/.png -Type=Application -StartupNotify=true -Categories=System;FileTools;Utility;Core;GTK;FileManager; -MimeType= -Terminal=false diff --git a/user_config/usr/applications/lsp-manager.desktop b/user_config/usr/applications/lsp-manager.desktop new file mode 100755 index 0000000..45b74df --- /dev/null +++ b/user_config/usr/applications/lsp-manager.desktop @@ -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 diff --git a/user_config/usr/share/app_name/key-bindings.json b/user_config/usr/share/app_name/key-bindings.json deleted file mode 100644 index a172eea..0000000 --- a/user_config/usr/share/app_name/key-bindings.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "keybindings": { - "help" : "F1", - "rename_files" : ["F2", "e"], - "open_terminal" : "F4", - "refresh_tab" : ["F5", "r"], - "delete_files" : "Delete", - "tggl_top_main_menubar" : "Alt_L", - "trash_files" : "t", - "tear_down" : "q", - "go_up" : "Up", - "go_home" : "slash", - "grab_focus_path_entry" : "l", - "open_files" : "o", - "show_hide_hidden_files" : "h", - "keyboard_create_tab" : "t", - "keyboard_close_tab" : "w", - "keyboard_copy_files" : "c", - "keyboard_cut_files" : "x", - "paste_files" : "v", - "show_new_file_menu" : "n" - } -} diff --git a/user_config/usr/share/app_name/Main_Window.glade b/user_config/usr/share/lsp_manager/Main_Window.glade similarity index 100% rename from user_config/usr/share/app_name/Main_Window.glade rename to user_config/usr/share/lsp_manager/Main_Window.glade diff --git a/user_config/usr/share/app_name/contexct_menu.json b/user_config/usr/share/lsp_manager/contexct_menu.json similarity index 100% rename from user_config/usr/share/app_name/contexct_menu.json rename to user_config/usr/share/lsp_manager/contexct_menu.json diff --git a/user_config/usr/share/app_name/context_path/index.html b/user_config/usr/share/lsp_manager/context_path/index.html similarity index 100% rename from user_config/usr/share/app_name/context_path/index.html rename to user_config/usr/share/lsp_manager/context_path/index.html diff --git a/user_config/usr/share/app_name/context_path/resources/css/context-menu.css b/user_config/usr/share/lsp_manager/context_path/resources/css/context-menu.css similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/context-menu.css rename to user_config/usr/share/lsp_manager/context_path/resources/css/context-menu.css diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/123.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/123.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/123.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/123.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/activity.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/activity.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/activity.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/activity.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/alarm-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/alarm-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/alarm-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/alarm-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/alarm.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/alarm.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/alarm.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/alarm.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-bottom.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-bottom.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-bottom.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-bottom.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-center.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-center.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-center.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-center.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-end.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-end.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-end.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-end.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-middle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-middle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-middle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-middle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-start.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-start.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-start.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-start.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-top.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-top.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/align-top.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/align-top.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/app-indicator.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/app-indicator.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/app-indicator.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/app-indicator.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/app.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/app.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/app.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/app.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/apple.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/apple.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/apple.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/apple.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/archive-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/archive-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/archive-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/archive-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/archive.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/archive.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/archive.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/archive.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-90deg-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-bar-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-bar-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-clockwise.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-clockwise.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-clockwise.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-clockwise.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-counterclockwise.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-counterclockwise.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-counterclockwise.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-counterclockwise.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-short.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-short.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-short.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-short.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-short.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-short.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-short.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-short.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-repeat.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-repeat.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-repeat.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-repeat.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-return-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-return-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-return-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-return-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-return-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-return-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-return-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-return-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-short.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-short.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-short.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-short.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-through-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-short.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-short.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-short.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-short.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrow-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrow-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-angle-contract.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-angle-contract.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-angle-contract.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-angle-contract.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-angle-expand.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-angle-expand.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-angle-expand.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-angle-expand.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-collapse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-collapse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-collapse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-collapse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-expand.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-expand.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-expand.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-expand.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-fullscreen.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-fullscreen.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-fullscreen.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-fullscreen.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-move.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-move.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/arrows-move.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/arrows-move.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/aspect-ratio-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/aspect-ratio-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/aspect-ratio-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/aspect-ratio-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/aspect-ratio.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/aspect-ratio.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/aspect-ratio.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/aspect-ratio.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/asterisk.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/asterisk.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/asterisk.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/asterisk.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/at.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/at.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/at.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/at.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/award-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/award-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/award-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/award-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/award.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/award.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/award.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/award.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/back.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/back.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/back.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/back.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace-reverse-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace-reverse-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace-reverse-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace-reverse-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace-reverse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace-reverse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace-reverse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace-reverse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/backspace.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/backspace.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-3d-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-3d-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-3d-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-3d-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-3d.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-3d.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-3d.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-3d.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-4k-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-4k-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-4k-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-4k-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-4k.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-4k.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-4k.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-4k.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-8k-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-8k-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-8k-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-8k-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-8k.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-8k.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-8k.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-8k.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ad-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ad-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ad-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ad-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ad.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ad.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ad.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ad.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ar-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ar-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ar-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ar-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ar.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ar.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-ar.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-ar.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-cc-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-cc-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-cc-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-cc-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-cc.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-cc.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-cc.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-cc.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-hd-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-hd-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-hd-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-hd-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-hd.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-hd.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-hd.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-hd.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-sd-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-sd-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-sd-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-sd-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-sd.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-sd.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-sd.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-sd.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-tm-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-tm-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-tm-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-tm-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-tm.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-tm.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-tm.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-tm.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vo-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vo-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vo-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vo-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vo.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vo.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vo.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vo.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vr-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vr-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vr-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vr-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vr.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vr.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-vr.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-vr.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-wc-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-wc-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-wc-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-wc-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-wc.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-wc.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/badge-wc.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/badge-wc.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-dash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-dash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-dash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-dash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bag.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bag.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/balloon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/balloon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bandaid-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bandaid-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bandaid-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bandaid-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bandaid.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bandaid.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bandaid.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bandaid.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bank.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bank.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bank.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bank.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bank2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bank2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bank2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bank2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-line-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-line-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-line-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-line-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-line.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-line.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-line.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-line.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-steps.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-steps.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart-steps.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart-steps.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bar-chart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bar-chart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket3-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket3-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket3-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket3-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/basket3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/basket3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery-charging.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery-charging.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery-charging.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery-charging.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery-full.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery-full.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery-full.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery-full.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/battery.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/battery.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/behance.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/behance.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/behance.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/behance.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell-slash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell-slash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell-slash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell-slash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell-slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell-slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell-slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell-slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bell.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bell.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bezier.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bezier.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bezier.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bezier.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bezier2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bezier2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bezier2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bezier2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bicycle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bicycle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bicycle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bicycle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/binoculars-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/binoculars-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/binoculars-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/binoculars-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/binoculars.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/binoculars.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/binoculars.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/binoculars.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/blockquote-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/blockquote-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/blockquote-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/blockquote-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/blockquote-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/blockquote-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/blockquote-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/blockquote-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bluetooth.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bluetooth.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bluetooth.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bluetooth.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/body-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/body-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/body-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/body-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/book-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/book-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/book-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/book-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/book-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/book-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/book-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/book-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/book.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/book.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/book.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/book.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-dash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-dash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-dash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-dash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-star-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-star-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-star-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-star-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-star.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-star.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-star.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-star.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmark.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmark.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmarks-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmarks-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmarks-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmarks-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmarks.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmarks.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookmarks.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookmarks.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookshelf.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookshelf.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bookshelf.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bookshelf.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/boombox-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/boombox-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/boombox-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/boombox-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/boombox.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/boombox.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/boombox.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/boombox.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.css b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.css similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.css rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.css diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.json b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.json similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.json rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.json diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.scss b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.scss similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.scss rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.scss diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-icons.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-reboot.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-reboot.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap-reboot.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap-reboot.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bootstrap.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bootstrap.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-all.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-all.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-all.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-all.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-bottom.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-bottom.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-bottom.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-bottom.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-center.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-center.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-center.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-center.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-inner.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-inner.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-inner.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-inner.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-middle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-middle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-middle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-middle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-outer.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-outer.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-outer.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-outer.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-style.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-style.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-style.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-style.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-top.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-top.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-top.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-top.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-width.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-width.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border-width.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border-width.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/border.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/border.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bounding-box-circles.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bounding-box-circles.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bounding-box-circles.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bounding-box-circles.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bounding-box.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bounding-box.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bounding-box.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bounding-box.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-down-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-in-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-up-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-arrow-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-arrow-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-seam.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-seam.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box-seam.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box-seam.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/box2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/box2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/boxes.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/boxes.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/boxes.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/boxes.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/braces-asterisk.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/braces-asterisk.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/braces-asterisk.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/braces-asterisk.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/braces.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/braces.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/braces.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/braces.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bricks.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bricks.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bricks.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bricks.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/briefcase-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/briefcase-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/briefcase-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/briefcase-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/briefcase.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/briefcase.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/briefcase.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/briefcase.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-high.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-alt-low.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-high-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-high-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-high-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-high-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-high.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-high.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-high.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-high.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-low-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-low-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-low-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-low-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-low.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-low.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brightness-low.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brightness-low.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/broadcast-pin.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/broadcast-pin.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/broadcast-pin.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/broadcast-pin.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/broadcast.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/broadcast.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/broadcast.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/broadcast.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brush-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brush-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brush-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brush-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brush.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brush.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/brush.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/brush.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bucket-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bucket-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bucket-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bucket-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bucket.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bucket.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bucket.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bucket.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bug-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bug-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bug-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bug-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bug.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bug.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bug.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bug.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/building.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/building.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/building.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/building.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bullseye.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bullseye.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/bullseye.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/bullseye.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calculator-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calculator-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calculator-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calculator-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calculator.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calculator.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calculator.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calculator.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-date-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-date-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-date-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-date-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-date.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-date.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-date.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-date.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-day-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-day-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-day-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-day-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-day.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-day.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-day.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-day.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-event-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-event-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-event-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-event-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-event.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-event.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-event.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-event.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-month-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-month-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-month-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-month-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-month.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-month.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-month.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-month.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-range-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-range-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-range-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-range-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-range.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-range.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-range.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-range.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-week-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-week-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-week-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-week-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-week.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-week.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-week.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-week.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-date-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-date-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-date-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-date-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-date.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-date.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-date.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-date.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-day-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-day-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-day-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-day-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-day.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-day.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-day.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-day.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-event-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-event-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-event-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-event-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-event.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-event.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-event.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-event.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-month-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-month-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-month-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-month-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-month.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-month.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-month.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-month.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-range-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-range-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-range-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-range-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-range.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-range.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-range.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-range.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-week-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-week-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-week-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-week-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-week.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-week.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-week.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-week.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-event-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-event-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-event-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-event-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-event.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-event.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-event.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-event.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-range-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-range-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-range-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-range-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-range.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-range.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-range.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-range.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-week-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-week-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-week-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-week-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-week.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-week.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3-week.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3-week.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4-event.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4-event.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4-event.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4-event.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4-range.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4-range.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4-range.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4-range.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4-week.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4-week.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4-week.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4-week.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/calendar4.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/calendar4.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-reels-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-reels-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-reels-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-reels-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-reels.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-reels.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-reels.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-reels.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video-off-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video-off-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video-off-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video-off-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video-off.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video-off.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video-off.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video-off.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera-video.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera-video.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/camera2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/camera2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/capslock-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/capslock-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/capslock-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/capslock-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/capslock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/capslock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/capslock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/capslock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-checklist.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-checklist.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-checklist.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-checklist.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-heading.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-heading.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-heading.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-heading.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-image.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-image.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-image.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-image.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-list.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-list.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-list.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-list.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/card-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/card-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/caret-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/caret-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-dash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-dash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-dash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-dash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart4.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart4.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cart4.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cart4.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cash-coin.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cash-coin.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cash-coin.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cash-coin.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cash-stack.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cash-stack.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cash-stack.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cash-stack.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cast.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cast.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cast.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cast.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-dots-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-dots-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-dots-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-dots-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-dots.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-dots.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-dots.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-dots.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-dots-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-dots-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-dots-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-dots-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-dots.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-dots.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-dots.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-dots.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-quote-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-quote-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-quote-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-quote-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-quote.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-quote.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-quote.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-quote.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-text-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-text-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-text-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-text-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-quote-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-quote-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-quote-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-quote-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-quote.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-quote.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-quote.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-quote.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-dots-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-dots-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-dots-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-dots-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-dots.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-dots.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-dots.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-dots.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-quote-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-quote-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-quote-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-quote-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-quote.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-quote.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-quote.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-quote.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-text-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-text-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-text-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-text-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-dots-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-dots-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-dots-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-dots-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-dots.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-dots.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-dots.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-dots.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-quote-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-quote-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-quote-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-quote-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-quote.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-quote.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-quote.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-quote.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-text-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-text-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-text-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-text-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-text-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-text-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-text-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-text-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chat.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chat.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-all.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-all.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-all.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-all.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2-all.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2-all.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2-all.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2-all.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/check2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/check2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-contract.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-contract.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-contract.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-contract.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-expand.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-expand.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-expand.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-expand.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-bar-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-bar-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-compact-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-compact-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-contract.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-contract.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-contract.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-contract.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-double-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-double-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-expand.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-expand.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-expand.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-expand.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/chevron-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/chevron-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-data-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-data-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-data-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-data-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-data.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-data.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-data.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-data.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-pulse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-pulse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-pulse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-pulse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-data-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-data-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-data-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-data-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-data.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-data.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-data.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-data.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-pulse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clipboard2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clipboard2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clock-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clock-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clock-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clock-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clock-history.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clock-history.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clock-history.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clock-history.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-arrow-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-download-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-download-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-download-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-download-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-download.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-download.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-download.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-download.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-drizzle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-fog2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-fog2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-hail-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-hail-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-hail-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-hail-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-hail.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-hail.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-hail.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-hail.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-haze2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-haze2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning-rain.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-lightning.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-lightning.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-moon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-moon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-moon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-moon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-moon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-moon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-moon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-moon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain-heavy.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-rain.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-rain.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-slash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-slash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-slash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-slash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sleet-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sleet-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sleet-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sleet-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sleet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sleet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sleet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sleet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-snow-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-snow-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-snow-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-snow-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-snow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-snow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-snow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-snow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sun-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sun-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sun-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sun-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sun.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sun.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-sun.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-sun.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-upload-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-upload-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-upload-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-upload-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-upload.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-upload.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud-upload.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud-upload.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloud.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloud.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clouds-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clouds-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clouds-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clouds-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clouds.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clouds.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/clouds.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/clouds.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloudy-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloudy-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloudy-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloudy-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloudy.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloudy.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cloudy.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cloudy.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/code-slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/code-slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/code-slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/code-slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/code-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/code-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/code-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/code-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/code.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/code.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/code.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/code.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/coin.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/coin.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/coin.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/coin.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection-play-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection-play-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection-play-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection-play-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection-play.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection-play.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection-play.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection-play.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/collection.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/collection.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/columns-gap.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/columns-gap.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/columns-gap.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/columns-gap.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/columns.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/columns.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/columns.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/columns.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/command.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/command.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/command.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/command.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/compass-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/compass-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/compass-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/compass-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/compass.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/compass.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/compass.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/compass.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cone-striped.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cone-striped.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cone-striped.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cone-striped.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cone.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cone.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cone.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cone.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/controller.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/controller.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/controller.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/controller.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cpu-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cpu-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cpu-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cpu-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cpu.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cpu.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cpu.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cpu.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-back.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-2-front.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/credit-card.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/credit-card.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/crop.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/crop.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/crop.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/crop.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cup-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cup-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cup-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cup-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cup-straw.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cup-straw.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cup-straw.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cup-straw.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cup.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cup.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cup.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cup.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-bitcoin.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-bitcoin.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-bitcoin.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-bitcoin.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-dollar.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-dollar.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-dollar.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-dollar.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-euro.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-euro.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-euro.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-euro.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-exchange.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-exchange.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-exchange.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-exchange.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-pound.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-pound.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-pound.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-pound.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-yen.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-yen.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/currency-yen.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/currency-yen.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cursor-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cursor-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cursor-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cursor-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cursor-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cursor-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cursor-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cursor-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cursor.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cursor.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/cursor.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/cursor.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-circle-dotted.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-circle-dotted.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-circle-dotted.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-circle-dotted.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-square-dotted.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-square-dotted.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-square-dotted.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-square-dotted.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-hdd-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-hdd-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-hdd-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-hdd-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-hdd.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-hdd.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-hdd.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-hdd.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-ssd-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-ssd-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-ssd-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-ssd-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-ssd.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-ssd.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/device-ssd.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/device-ssd.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-3-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-3-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-3-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-3-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diagram-3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diagram-3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diamond-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diamond-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diamond-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diamond-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diamond-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diamond-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diamond-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diamond-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diamond.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diamond.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/diamond.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/diamond.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-1-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-1-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-1-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-1-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-1.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-1.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-1.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-1.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-3-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-3-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-3-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-3-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-4-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-4-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-4-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-4-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-4.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-4.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-4.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-4.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-5-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-5-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-5-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-5-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-5.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-5.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-5.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-5.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-6-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-6-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-6-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-6-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-6.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-6.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dice-6.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dice-6.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/disc-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/disc-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/disc-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/disc-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/disc.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/disc.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/disc.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/disc.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/discord.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/discord.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/discord.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/discord.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/display-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/display-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/display-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/display-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/display.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/display.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/display.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/display.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/displayport-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/displayport-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/displayport-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/displayport-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/displayport.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/displayport.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/displayport.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/displayport.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/distribute-horizontal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/distribute-horizontal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/distribute-horizontal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/distribute-horizontal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/distribute-vertical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/distribute-vertical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/distribute-vertical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/distribute-vertical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-closed-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-closed-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-closed-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-closed-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-closed.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-closed.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-closed.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-closed.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-open-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-open-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-open-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-open-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-open.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-open.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/door-open.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/door-open.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dot.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dot.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dot.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dot.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/download.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/download.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/download.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/download.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dpad-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dpad-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dpad-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dpad-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dpad.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dpad.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dpad.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dpad.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dribbble.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dribbble.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/dribbble.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/dribbble.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/droplet-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/droplet-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/droplet-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/droplet-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/droplet-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/droplet-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/droplet-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/droplet-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/droplet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/droplet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/droplet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/droplet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ear-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ear-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ear-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ear-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ear.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ear.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ear.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ear.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/earbuds.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/earbuds.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/earbuds.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/earbuds.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel3-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel3-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel3-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel3-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/easel3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/easel3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/egg-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/egg-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/egg-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/egg-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/egg-fried.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/egg-fried.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/egg-fried.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/egg-fried.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/egg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/egg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/egg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/egg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eject-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eject-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eject-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eject-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eject.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eject.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eject.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eject.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-angry-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-angry-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-angry-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-angry-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-angry.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-angry.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-angry.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-angry.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-dizzy.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-expressionless.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-frown-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-frown-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-frown-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-frown-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-frown.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-frown.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-frown.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-frown.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-heart-eyes.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-kiss-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-kiss-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-kiss-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-kiss-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-kiss.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-kiss.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-kiss.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-kiss.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-laughing-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-laughing-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-laughing-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-laughing-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-laughing.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-laughing.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-laughing.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-laughing.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-neutral-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-neutral-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-neutral-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-neutral-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-neutral.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-neutral.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-neutral.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-neutral.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile-upside-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-smile.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-smile.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-sunglasses.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-wink-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-wink-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-wink-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-wink-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-wink.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-wink.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/emoji-wink.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/emoji-wink.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-dash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-dash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-dash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-dash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-exclamation.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-open.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-open.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-paper.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-paper.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-slash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-slash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-slash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-slash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/envelope.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/envelope.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eraser-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eraser-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eraser-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eraser-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eraser.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eraser.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eraser.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eraser.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ethernet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ethernet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ethernet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ethernet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-diamond.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-octagon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation-triangle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclamation.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclamation.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclude.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclude.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/exclude.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/exclude.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/explicit-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/explicit-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/explicit-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/explicit-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/explicit.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/explicit.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/explicit.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/explicit.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye-slash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye-slash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye-slash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye-slash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye-slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye-slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye-slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye-slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eye.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eye.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eyedropper.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eyedropper.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eyedropper.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eyedropper.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eyeglasses.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eyeglasses.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/eyeglasses.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/eyeglasses.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/facebook.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/facebook.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/facebook.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/facebook.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fan.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fan.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fan.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fan.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-down-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-down-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-down-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-down-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-up-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-up-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-up-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-up-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-arrow-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-arrow-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-bar-graph-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-bar-graph-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-bar-graph-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-bar-graph-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-bar-graph.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-bar-graph.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-bar-graph.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-bar-graph.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-binary-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-binary-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-binary-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-binary-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-binary.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-binary.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-binary.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-binary.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-break-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-break-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-break-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-break-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-break.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-break.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-break.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-break.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-code-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-code-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-code-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-code-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-code.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-code.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-code.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-code.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-diff-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-diff-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-diff-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-diff-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-diff.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-diff.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-diff.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-diff.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-arrow-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-bar-graph.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-binary.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-break-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-break-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-break-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-break-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-break.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-break.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-break.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-break.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-code-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-code-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-code-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-code-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-code.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-code.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-code.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-code.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-diff.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-easel.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-excel.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-font-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-font-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-font-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-font-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-font.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-font.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-font.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-font.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-image-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-image-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-image-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-image-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-image.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-image.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-image.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-image.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-lock2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-medical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-music-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-music-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-music-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-music-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-music.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-music.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-music.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-music.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-pdf.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-person-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-person-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-person-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-person-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-person.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-person.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-person.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-person.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-play-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-play-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-play-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-play-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-play.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-play.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-play.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-play.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-post-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-post-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-post-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-post-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-post.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-post.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-post.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-post.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ppt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-richtext.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-ruled.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-slides.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-spreadsheet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-text-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-text-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-text-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-text-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-word-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-word-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-word-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-word-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-word.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-word.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-word.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-word.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark-zip.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-earmark.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-earmark.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-easel-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-easel-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-easel-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-easel-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-easel.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-easel.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-easel.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-easel.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-excel-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-excel-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-excel-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-excel-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-excel.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-excel.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-excel.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-excel.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-font-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-font-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-font-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-font-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-font.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-font.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-font.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-font.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-image-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-image-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-image-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-image-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-image.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-image.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-image.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-image.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-lock2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-lock2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-medical-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-medical-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-medical-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-medical-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-medical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-medical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-medical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-medical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-music-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-music-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-music-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-music-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-music.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-music.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-music.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-music.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-pdf-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-pdf-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-pdf-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-pdf-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-pdf.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-pdf.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-pdf.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-pdf.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-person-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-person-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-person-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-person-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-person.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-person.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-person.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-person.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-play-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-play-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-play-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-play-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-play.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-play.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-play.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-play.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-post-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-post-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-post-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-post-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-post.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-post.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-post.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-post.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ppt-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ppt-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ppt-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ppt-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ppt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ppt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ppt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ppt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-richtext-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-richtext-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-richtext-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-richtext-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-richtext.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-richtext.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-richtext.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-richtext.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ruled-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ruled-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ruled-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ruled-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ruled.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ruled.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-ruled.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-ruled.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-slides-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-slides-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-slides-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-slides-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-slides.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-slides.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-slides.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-slides.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-spreadsheet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-text-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-text-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-text-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-text-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-word-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-word-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-word-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-word-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-word.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-word.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-word.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-word.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-zip-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-zip-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-zip-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-zip-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-zip.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-zip.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file-zip.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file-zip.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/file.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/file.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/files-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/files-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/files-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/files-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/files.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/files.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/files.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/files.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-aac.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-aac.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-aac.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-aac.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-ai.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-ai.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-ai.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-ai.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-bmp.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-bmp.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-bmp.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-bmp.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-cs.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-cs.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-cs.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-cs.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-css.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-css.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-css.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-css.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-csv.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-csv.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-csv.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-csv.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-doc.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-doc.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-doc.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-doc.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-docx.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-docx.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-docx.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-docx.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-exe.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-exe.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-exe.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-exe.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-gif.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-gif.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-gif.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-gif.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-heic.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-heic.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-heic.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-heic.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-html.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-html.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-html.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-html.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-java.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-java.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-java.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-java.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-jpg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-jpg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-jpg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-jpg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-js.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-js.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-js.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-js.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-json.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-json.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-json.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-json.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-jsx.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-jsx.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-jsx.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-jsx.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-key.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-key.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-key.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-key.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-m4p.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-m4p.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-m4p.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-m4p.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-md.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-md.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-md.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-md.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mdx.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mdx.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mdx.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mdx.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mov.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mov.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mov.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mov.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mp3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mp3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mp3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mp3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mp4.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mp4.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-mp4.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-mp4.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-otf.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-otf.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-otf.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-otf.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-pdf.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-pdf.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-pdf.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-pdf.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-php.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-php.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-php.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-php.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-png.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-png.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-png.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-png.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-ppt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-ppt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-ppt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-ppt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-pptx.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-pptx.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-pptx.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-pptx.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-psd.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-psd.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-psd.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-psd.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-py.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-py.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-py.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-py.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-raw.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-raw.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-raw.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-raw.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-rb.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-rb.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-rb.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-rb.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-sass.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-sass.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-sass.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-sass.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-scss.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-scss.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-scss.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-scss.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-sh.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-sh.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-sh.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-sh.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-svg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-svg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-svg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-svg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-tiff.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-tiff.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-tiff.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-tiff.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-tsx.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-tsx.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-tsx.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-tsx.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-ttf.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-ttf.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-ttf.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-ttf.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-txt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-txt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-txt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-txt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-wav.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-wav.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-wav.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-wav.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-woff.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-woff.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-woff.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-woff.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-xls.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-xls.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-xls.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-xls.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-xlsx.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-xlsx.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-xlsx.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-xlsx.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-xml.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-xml.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-xml.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-xml.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-yml.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-yml.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filetype-yml.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filetype-yml.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/film.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/film.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/film.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/film.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/filter.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/filter.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fingerprint.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fingerprint.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fingerprint.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fingerprint.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flag-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flag-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flag-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flag-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flag.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flag.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flag.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flag.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flower1.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flower1.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flower1.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flower1.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flower2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flower2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flower2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flower2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flower3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flower3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/flower3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/flower3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-symlink-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-symlink-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-symlink-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-symlink-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-symlink.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-symlink.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-symlink.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-symlink.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder2-open.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder2-open.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder2-open.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder2-open.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/folder2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/folder2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fonts.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fonts.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fonts.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fonts.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff2 b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff2 similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff2 rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fonts/bootstrap-icons.woff2 diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/forward-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/forward-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/forward-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/forward-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/forward.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/forward.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/forward.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/forward.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/front.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/front.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/front.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/front.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fullscreen-exit.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fullscreen-exit.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fullscreen-exit.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fullscreen-exit.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fullscreen.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fullscreen.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/fullscreen.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/fullscreen.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/funnel-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/funnel-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/funnel-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/funnel-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/funnel.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/funnel.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/funnel.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/funnel.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear-wide-connected.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear-wide-connected.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear-wide-connected.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear-wide-connected.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear-wide.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear-wide.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear-wide.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear-wide.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gear.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gear.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gem.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gem.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gem.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gem.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-ambiguous.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-ambiguous.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-ambiguous.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-ambiguous.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-female.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-female.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-female.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-female.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-male.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-male.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-male.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-male.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-trans.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-trans.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gender-trans.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gender-trans.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo-alt-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo-alt-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo-alt-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo-alt-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/geo.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/geo.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gift-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gift-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gift-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gift-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gift.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gift.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gift.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gift.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/git.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/git.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/git.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/git.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/github.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/github.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/github.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/github.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/globe.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/globe.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/globe.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/globe.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/globe2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/globe2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/globe2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/globe2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/google.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/google.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/google.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/google.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gpu-card.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gpu-card.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/gpu-card.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/gpu-card.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-down-arrow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-down-arrow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-down-arrow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-down-arrow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-up-arrow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-up-arrow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-up-arrow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-up-arrow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/graph-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/graph-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-1x2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-1x2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-1x2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-1x2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-1x2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-1x2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-1x2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-1x2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x2-gap.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x3-gap.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-3x3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-3x3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grid.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grid.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grip-horizontal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grip-horizontal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grip-horizontal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grip-horizontal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grip-vertical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grip-vertical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/grip-vertical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/grip-vertical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hammer.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hammer.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hammer.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hammer.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index-thumb.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-index.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-index.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hand-thumbs-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/handbag-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/handbag-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/handbag-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/handbag-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/handbag.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/handbag.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/handbag.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/handbag.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-network-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-network-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-network-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-network-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-network.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-network.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-network.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-network.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-rack-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-rack-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-rack-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-rack-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-rack.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-rack.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-rack.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-rack.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-stack-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-stack-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-stack-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-stack-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-stack.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-stack.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd-stack.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd-stack.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdd.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdd.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdmi-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdmi-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdmi-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdmi-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdmi.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdmi.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hdmi.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hdmi.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/headphones.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/headphones.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/headphones.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/headphones.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/headset-vr.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/headset-vr.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/headset-vr.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/headset-vr.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/headset.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/headset.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/headset.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/headset.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-arrow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-arrow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-arrow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-arrow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-pulse-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-pulse-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-pulse-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-pulse-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-pulse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-pulse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart-pulse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart-pulse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heartbreak-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heartbreak-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heartbreak-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heartbreak-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heartbreak.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heartbreak.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heartbreak.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heartbreak.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hearts.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hearts.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hearts.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hearts.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heptagon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heptagon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heptagon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heptagon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heptagon-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heptagon-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heptagon-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heptagon-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heptagon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heptagon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/heptagon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/heptagon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hexagon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hexagon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hexagon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hexagon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hexagon-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hexagon-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hexagon-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hexagon-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hexagon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hexagon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hexagon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hexagon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hospital-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hospital-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hospital-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hospital-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hospital.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hospital.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hospital.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hospital.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass-bottom.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass-bottom.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass-bottom.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass-bottom.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass-split.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass-split.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass-split.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass-split.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass-top.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass-top.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass-top.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass-top.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hourglass.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hourglass.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-door-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-door-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-door-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-door-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-door.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-door.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-door.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-door.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/house.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/house.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hr.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hr.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hr.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hr.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hurricane.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hurricane.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hurricane.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hurricane.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hypnotize.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hypnotize.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/hypnotize.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/hypnotize.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/image-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/image-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/image-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/image-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/image-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/image-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/image-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/image-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/image.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/image.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/image.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/image.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/images.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/images.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/images.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/images.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inbox-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inbox-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inbox-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inbox-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inbox.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inbox.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inbox.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inbox.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inboxes-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inboxes-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inboxes-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inboxes-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inboxes.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inboxes.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/inboxes.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/inboxes.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/incognito.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/incognito.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/incognito.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/incognito.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/index.html b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/index.html similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/index.html rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/index.html diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/infinity.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/infinity.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/infinity.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/infinity.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/info.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/info.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/input-cursor-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/input-cursor-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/input-cursor-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/input-cursor-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/input-cursor.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/input-cursor.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/input-cursor.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/input-cursor.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/instagram.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/instagram.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/instagram.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/instagram.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/intersect.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/intersect.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/intersect.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/intersect.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-album.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-album.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-album.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-album.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-arrow-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-arrow-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-arrow-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-arrow-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-arrow-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-arrow-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-arrow-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-arrow-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-bookmark-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-bookmark-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-bookmark-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-bookmark-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-bookmark.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-bookmark.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-bookmark.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-bookmark.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-code.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-code.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-code.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-code.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-medical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-medical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-medical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-medical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-richtext.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-richtext.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-richtext.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-richtext.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-text.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-text.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-text.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-text.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journals.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journals.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/journals.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/journals.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/joystick.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/joystick.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/joystick.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/joystick.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/justify-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/justify-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/justify-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/justify-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/justify-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/justify-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/justify-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/justify-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/justify.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/justify.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/justify.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/justify.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/kanban-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/kanban-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/kanban-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/kanban-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/kanban.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/kanban.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/kanban.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/kanban.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/key-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/key-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/key-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/key-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/key.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/key.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/key.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/key.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/keyboard-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/keyboard-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/keyboard-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/keyboard-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/keyboard.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/keyboard.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/keyboard.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/keyboard.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ladder.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ladder.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ladder.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ladder.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lamp-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lamp-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lamp-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lamp-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lamp.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lamp.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lamp.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lamp.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/laptop-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/laptop-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/laptop-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/laptop-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/laptop.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/laptop.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/laptop.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/laptop.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layer-backward.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layer-backward.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layer-backward.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layer-backward.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layer-forward.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layer-forward.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layer-forward.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layer-forward.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layers-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layers-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layers-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layers-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layers-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layers-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layers-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layers-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layers.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layers.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layers.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layers.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset-reverse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset-reverse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset-reverse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset-reverse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-inset.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-reverse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-reverse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-reverse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar-reverse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-sidebar.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-sidebar.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-split.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-split.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-split.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-split.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar-reverse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar-reverse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar-reverse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar-reverse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-sidebar.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-window-reverse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-window-reverse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-window-reverse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-window-reverse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-window.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-window.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-text-window.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-text-window.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-three-columns.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-three-columns.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-three-columns.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-three-columns.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-wtf.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-wtf.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/layout-wtf.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/layout-wtf.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/life-preserver.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/life-preserver.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/life-preserver.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/life-preserver.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb-off-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb-off-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb-off-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb-off-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb-off.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb-off.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb-off.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb-off.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightbulb.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightbulb.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning-charge-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning-charge-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning-charge-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning-charge-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning-charge.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning-charge.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning-charge.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning-charge.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lightning.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lightning.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/line.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/line.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/line.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/line.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/link-45deg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/link-45deg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/link-45deg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/link-45deg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/link.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/link.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/link.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/link.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/linkedin.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/linkedin.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/linkedin.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/linkedin.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-columns-reverse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-columns-reverse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-columns-reverse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-columns-reverse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-columns.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-columns.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-columns.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-columns.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-nested.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-nested.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-nested.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-nested.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-ol.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-ol.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-ol.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-ol.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-stars.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-stars.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-stars.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-stars.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-task.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-task.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-task.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-task.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-ul.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-ul.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list-ul.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list-ul.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/list.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/list.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lock-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lock-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lock-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lock-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/lock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/lock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/magic.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/magic.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/magic.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/magic.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/magnet-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/magnet-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/magnet-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/magnet-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/magnet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/magnet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/magnet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/magnet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mailbox.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mailbox.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mailbox.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mailbox.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mailbox2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mailbox2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mailbox2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mailbox2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/map-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/map-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/map-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/map-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/map.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/map.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/map.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/map.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/markdown-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/markdown-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/markdown-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/markdown-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/markdown.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/markdown.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/markdown.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/markdown.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mask.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mask.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mask.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mask.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mastodon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mastodon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mastodon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mastodon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/medium.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/medium.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/medium.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/medium.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/megaphone-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/megaphone-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/megaphone-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/megaphone-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/megaphone.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/megaphone.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/megaphone.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/megaphone.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/memory.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/memory.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/memory.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/memory.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-app-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-app-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-app-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-app-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-app.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-app.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-app.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-app.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button-wide-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button-wide-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button-wide-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button-wide-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button-wide.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button-wide.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button-wide.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button-wide.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-button.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-button.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/menu-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/menu-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/messenger.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/messenger.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/messenger.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/messenger.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/meta.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/meta.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/meta.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/meta.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic-mute-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic-mute-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic-mute-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic-mute-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic-mute.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic-mute.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic-mute.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic-mute.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mic.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mic.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/microsoft.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/microsoft.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/microsoft.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/microsoft.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/minecart-loaded.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/minecart-loaded.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/minecart-loaded.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/minecart-loaded.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/minecart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/minecart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/minecart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/minecart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/modem-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/modem-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/modem-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/modem-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/modem.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/modem.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/modem.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/modem.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moisture.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moisture.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moisture.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moisture.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon-stars-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon-stars-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon-stars-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon-stars-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon-stars.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon-stars.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon-stars.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon-stars.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/moon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/moon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mortarboard-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mortarboard-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mortarboard-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mortarboard-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mortarboard.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mortarboard.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mortarboard.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mortarboard.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/motherboard-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/motherboard-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/motherboard-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/motherboard-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/motherboard.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/motherboard.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/motherboard.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/motherboard.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse3-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse3-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse3-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse3-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/mouse3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/mouse3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-note-beamed.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-note-beamed.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-note-beamed.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-note-beamed.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-note-list.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-note-list.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-note-list.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-note-list.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-note.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-note.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-note.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-note.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-player-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-player-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-player-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-player-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-player.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-player.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/music-player.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/music-player.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/newspaper.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/newspaper.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/newspaper.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/newspaper.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/nintendo-switch.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/nintendo-switch.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/nintendo-switch.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/nintendo-switch.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/node-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/node-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/nut-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/nut-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/nut-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/nut-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/nut.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/nut.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/nut.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/nut.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/octagon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/octagon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/octagon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/octagon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/octagon-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/octagon-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/octagon-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/octagon-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/octagon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/octagon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/octagon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/octagon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/optical-audio-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/optical-audio-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/optical-audio-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/optical-audio-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/optical-audio.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/optical-audio.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/optical-audio.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/optical-audio.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/option.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/option.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/option.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/option.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/outlet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/outlet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/outlet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/outlet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paint-bucket.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paint-bucket.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paint-bucket.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paint-bucket.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/palette-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/palette-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/palette-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/palette-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/palette.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/palette.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/palette.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/palette.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/palette2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/palette2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/palette2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/palette2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paperclip.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paperclip.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paperclip.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paperclip.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paragraph.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paragraph.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paragraph.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paragraph.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-exclamation-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-exclamation-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-exclamation-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-exclamation-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-exclamation.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-exclamation.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-exclamation.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-exclamation.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-question-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-question-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-question-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-question-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-question.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-question.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/patch-question.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/patch-question.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pause.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pause.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paypal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paypal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/paypal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/paypal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc-display-horizontal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc-display-horizontal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc-display-horizontal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc-display-horizontal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc-display.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc-display.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc-display.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc-display.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc-horizontal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc-horizontal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc-horizontal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc-horizontal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pc.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pc.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pci-card.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pci-card.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pci-card.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pci-card.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/peace-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/peace-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/peace-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/peace-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/peace.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/peace.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/peace.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/peace.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pen-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pen-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pen-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pen-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pen.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pen.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pen.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pen.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pencil-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pencil-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pencil-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pencil-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pencil-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pencil-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pencil-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pencil-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pencil.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pencil.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pencil.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pencil.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pentagon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pentagon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pentagon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pentagon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pentagon-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pentagon-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pentagon-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pentagon-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pentagon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pentagon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pentagon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pentagon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/people-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/people-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/people-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/people-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/people.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/people.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/people.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/people.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/percent.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/percent.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/percent.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/percent.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-badge-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-badge-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-badge-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-badge-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-badge.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-badge.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-badge.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-badge.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-bounding-box.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-bounding-box.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-bounding-box.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-bounding-box.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-dash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-dash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-dash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-dash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-hearts.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-hearts.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-hearts.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-hearts.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-lines-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-lines-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-lines-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-lines-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-rolodex.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-rolodex.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-rolodex.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-rolodex.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-video.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-video.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-video.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-video.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-video2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-video2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-video2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-video2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-video3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-video3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-video3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-video3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-workspace.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-workspace.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-workspace.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-workspace.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/person.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/person.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-flip.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-flip.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-flip.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-flip.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-landscape-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-landscape-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-landscape-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-landscape-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-landscape.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-landscape.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-landscape.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-landscape.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-vibrate-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-vibrate-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-vibrate-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-vibrate-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-vibrate.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-vibrate.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone-vibrate.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone-vibrate.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/phone.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/phone.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pie-chart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pie-chart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pie-chart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pie-chart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pie-chart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pie-chart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pie-chart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pie-chart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/piggy-bank-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/piggy-bank-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/piggy-bank-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/piggy-bank-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/piggy-bank.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/piggy-bank.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/piggy-bank.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/piggy-bank.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-angle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-angle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-angle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-angle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-angle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-angle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-angle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-angle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-map-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-map-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-map-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-map-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-map.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-map.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin-map.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin-map.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pin.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pin.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pinterest.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pinterest.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pinterest.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pinterest.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pip-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pip-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pip-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pip-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pip.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pip.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/pip.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/pip.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/play.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/play.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/playstation.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/playstation.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/playstation.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/playstation.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plug-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plug-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plug-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plug-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plug.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plug.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plug.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plug.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plugin.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plugin.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plugin.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plugin.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-circle-dotted.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-circle-dotted.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-circle-dotted.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-circle-dotted.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-slash-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-slash-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-slash-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-slash-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-square-dotted.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-square-dotted.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-square-dotted.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-square-dotted.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postage.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postage.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/postcard.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/postcard.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/power.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/power.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/power.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/power.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/printer-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/printer-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/printer-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/printer-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/printer.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/printer.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/printer.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/printer.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/projector-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/projector-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/projector-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/projector-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/projector.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/projector.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/projector.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/projector.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/puzzle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/puzzle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/puzzle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/puzzle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/puzzle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/puzzle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/puzzle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/puzzle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/qr-code-scan.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/qr-code-scan.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/qr-code-scan.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/qr-code-scan.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/qr-code.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/qr-code.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/qr-code.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/qr-code.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-diamond-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-diamond-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-diamond-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-diamond-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-diamond.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-diamond.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-diamond.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-diamond.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-octagon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-octagon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-octagon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-octagon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-octagon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-octagon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-octagon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-octagon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/question.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/question.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/quora.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/quora.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/quora.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/quora.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/quote.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/quote.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/quote.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/quote.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/radioactive.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/radioactive.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/radioactive.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/radioactive.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rainbow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rainbow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rainbow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rainbow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/receipt-cutoff.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/receipt-cutoff.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/receipt-cutoff.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/receipt-cutoff.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/receipt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/receipt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/receipt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/receipt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-0.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-0.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-0.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-0.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-1.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-1.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-1.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-1.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-4.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-4.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reception-4.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reception-4.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/record2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/record2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/recycle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/recycle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/recycle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/recycle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reddit.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reddit.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reddit.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reddit.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply-all-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply-all-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply-all-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply-all-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply-all.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply-all.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply-all.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply-all.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/reply.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/reply.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/robot.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/robot.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/robot.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/robot.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/router-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/router-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/router-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/router-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/router.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/router.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/router.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/router.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rss-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rss-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rss-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rss-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rss.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rss.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rss.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rss.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rulers.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rulers.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/rulers.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/rulers.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/safe2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/safe2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/save2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/save2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/scissors.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/scissors.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/scissors.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/scissors.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/screwdriver.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/screwdriver.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/screwdriver.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/screwdriver.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sd-card-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sd-card-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sd-card-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sd-card-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sd-card.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sd-card.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sd-card.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sd-card.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/search-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/search-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/search-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/search-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/search-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/search-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/search-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/search-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/search.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/search.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/search.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/search.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/segmented-nav.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/segmented-nav.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/segmented-nav.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/segmented-nav.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-check-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-check-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-check-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-check-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-dash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-dash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-dash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-dash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-exclamation-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-exclamation-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-exclamation-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-exclamation-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-exclamation.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-exclamation.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-exclamation.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-exclamation.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-slash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-slash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-slash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-slash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/send.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/send.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/server.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/server.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/server.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/server.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/share-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/share-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/share-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/share-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/share.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/share.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/share.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/share.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-exclamation.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-exclamation.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-exclamation.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-exclamation.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-check.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-check.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-check.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-check.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-exclamation.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-exclamation.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-exclamation.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-exclamation.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-lock-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-lock-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-lock-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-lock-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-lock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-lock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-lock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-lock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-shaded.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-shaded.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-shaded.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-shaded.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-slash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-slash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-slash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-slash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shield.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shield.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shift-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shift-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shift-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shift-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shift.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shift.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shift.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shift.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shop-window.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shop-window.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shop-window.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shop-window.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shop.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shop.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shop.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shop.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shuffle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shuffle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/shuffle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/shuffle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-split-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-split-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-split-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-split-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-split.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-split.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost-split.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost-split.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/signpost.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/signpost.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sim-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sim-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sim-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sim-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sim.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sim.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sim.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sim.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-backward.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-backward.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-end.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-end.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-forward.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-forward.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skip-start.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skip-start.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skype.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skype.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/skype.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/skype.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slack.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slack.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slack.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slack.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/slash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/slash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sliders.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sliders.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sliders.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sliders.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sliders2-vertical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sliders2-vertical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sliders2-vertical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sliders2-vertical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sliders2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sliders2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sliders2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sliders2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/smartwatch.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/smartwatch.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/smartwatch.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/smartwatch.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snapchat.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snapchat.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snapchat.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snapchat.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snow2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snow2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snow2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snow2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snow3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snow3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/snow3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/snow3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-alpha-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-down-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-down-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-down-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-down-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-numeric-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-up-alt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-up-alt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-up-alt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-up-alt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sort-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sort-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/soundwave.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/soundwave.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/soundwave.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/soundwave.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speaker-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speaker-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speaker-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speaker-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speaker.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speaker.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speaker.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speaker.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speedometer.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speedometer.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speedometer.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speedometer.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speedometer2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speedometer2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/speedometer2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/speedometer2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/spellcheck.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/spellcheck.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/spellcheck.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/spellcheck.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/spotify.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/spotify.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/spotify.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/spotify.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/square-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/square-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/square-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/square-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stack-overflow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stack-overflow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stack-overflow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stack-overflow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stack.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stack.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stack.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stack.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/star-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/star-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/star-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/star-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/star-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/star-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/star-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/star-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/star.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/star.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/star.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/star.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stars.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stars.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stars.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stars.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/steam.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/steam.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/steam.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/steam.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stickies-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stickies-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stickies-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stickies-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stickies.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stickies.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stickies.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stickies.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sticky-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sticky-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sticky-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sticky-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sticky.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sticky.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sticky.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sticky.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-btn-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-btn-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-btn-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-btn-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-btn.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-btn.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-btn.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-btn.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stop.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stop.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stoplights-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stoplights-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stoplights-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stoplights-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stoplights.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stoplights.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stoplights.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stoplights.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stopwatch-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stopwatch-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stopwatch-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stopwatch-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stopwatch.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stopwatch.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/stopwatch.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/stopwatch.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/strava.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/strava.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/strava.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/strava.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/subtract.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/subtract.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/subtract.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/subtract.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-club-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-club-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-club-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-club-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-club.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-club.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-club.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-club.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-diamond-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-diamond-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-diamond-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-diamond-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-diamond.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-diamond.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-diamond.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-diamond.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-heart-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-heart-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-heart-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-heart-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-heart.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-heart.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-heart.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-heart.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-spade-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-spade-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-spade-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-spade-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-spade.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-spade.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/suit-spade.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/suit-spade.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sun-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sun-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sun-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sun-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sun.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sun.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sun.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sun.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunglasses.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunglasses.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunglasses.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunglasses.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunrise-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunrise-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunrise-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunrise-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunrise.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunrise.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunrise.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunrise.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunset-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunset-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunset-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunset-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunset.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunset.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/sunset.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/sunset.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/symmetry-horizontal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/symmetry-horizontal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/symmetry-horizontal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/symmetry-horizontal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/symmetry-vertical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/symmetry-vertical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/symmetry-vertical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/symmetry-vertical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/table.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/table.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/table.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/table.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet-landscape-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet-landscape-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet-landscape-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet-landscape-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet-landscape.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet-landscape.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet-landscape.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet-landscape.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tablet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tablet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tag-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tag-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tag-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tag-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tag.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tag.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tag.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tag.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tags-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tags-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tags-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tags-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tags.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tags.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tags.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tags.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telegram.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telegram.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telegram.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telegram.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-forward-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-forward-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-forward-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-forward-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-forward.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-forward.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-forward.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-forward.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-inbound-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-inbound-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-inbound-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-inbound-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-inbound.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-inbound.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-inbound.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-inbound.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-minus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-minus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-minus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-minus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-minus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-minus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-minus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-minus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-outbound-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-outbound-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-outbound-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-outbound-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-outbound.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-outbound.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-outbound.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-outbound.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-plus-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-plus-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-plus-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-plus-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-x-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-x-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-x-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-x-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/telephone.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/telephone.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-split.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-split.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-split.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-split.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/terminal.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/terminal.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-center.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-center.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-center.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-center.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-indent-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-indent-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-indent-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-indent-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-indent-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-indent-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-indent-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-indent-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-left.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-left.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-left.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-left.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-paragraph.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-paragraph.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-paragraph.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-paragraph.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-right.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-right.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/text-right.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/text-right.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/textarea-resize.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/textarea-resize.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/textarea-resize.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/textarea-resize.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/textarea-t.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/textarea-t.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/textarea-t.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/textarea-t.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/textarea.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/textarea.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/textarea.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/textarea.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-high.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-high.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-high.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-high.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-low.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-low.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-low.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-low.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-snow.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-snow.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-snow.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-snow.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-sun.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-sun.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer-sun.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer-sun.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thermometer.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thermometer.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/three-dots-vertical.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/three-dots-vertical.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/three-dots-vertical.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/three-dots-vertical.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/three-dots.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/three-dots.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/three-dots.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/three-dots.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thunderbolt-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thunderbolt-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thunderbolt-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thunderbolt-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thunderbolt.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thunderbolt.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/thunderbolt.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/thunderbolt.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-detailed-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-detailed-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-detailed-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-detailed-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-detailed.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-detailed.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-detailed.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-detailed.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-perforated-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-perforated-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-perforated-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-perforated-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-perforated.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-perforated.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket-perforated.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket-perforated.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ticket.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ticket.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tiktok.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tiktok.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tiktok.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tiktok.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle-off.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle-off.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle-off.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle-off.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle-on.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle-on.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle-on.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle-on.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle2-off.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle2-off.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle2-off.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle2-off.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle2-on.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle2-on.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggle2-on.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggle2-on.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggles.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggles.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggles.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggles.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggles2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggles2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/toggles2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/toggles2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tools.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tools.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tools.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tools.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tornado.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tornado.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tornado.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tornado.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/translate.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/translate.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/translate.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/translate.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash2-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash2-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash2-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash2-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash3-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash3-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash3-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash3-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trash3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trash3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tree-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tree-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tree-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tree-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tree.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tree.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tree.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tree.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/triangle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/triangle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/triangle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/triangle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/triangle-half.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/triangle-half.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/triangle-half.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/triangle-half.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/triangle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/triangle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/triangle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/triangle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trophy-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trophy-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trophy-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trophy-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trophy.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trophy.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/trophy.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/trophy.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tropical-storm.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tropical-storm.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tropical-storm.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tropical-storm.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/truck-flatbed.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/truck-flatbed.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/truck-flatbed.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/truck-flatbed.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/truck.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/truck.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/truck.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/truck.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tsunami.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tsunami.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tsunami.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tsunami.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tv-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tv-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tv-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tv-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tv.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tv.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/tv.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/tv.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/twitch.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/twitch.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/twitch.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/twitch.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/twitter.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/twitter.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/twitter.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/twitter.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-bold.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-bold.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-bold.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-bold.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-h1.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-h1.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-h1.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-h1.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-h2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-h2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-h2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-h2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-h3.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-h3.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-h3.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-h3.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-italic.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-italic.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-italic.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-italic.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-strikethrough.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-strikethrough.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-strikethrough.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-strikethrough.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-underline.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-underline.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type-underline.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type-underline.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/type.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/type.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-checks-grid.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-checks-grid.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-checks-grid.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-checks-grid.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-checks.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-checks.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-checks.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-checks.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-radios-grid.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-radios-grid.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-radios-grid.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-radios-grid.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-radios.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-radios.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/ui-radios.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/ui-radios.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/umbrella-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/umbrella-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/umbrella-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/umbrella-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/umbrella.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/umbrella.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/umbrella.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/umbrella.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/union.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/union.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/union.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/union.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/unlock-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/unlock-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/unlock-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/unlock-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/unlock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/unlock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/unlock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/unlock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/upc-scan.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/upc-scan.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/upc-scan.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/upc-scan.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/upc.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/upc.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/upc.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/upc.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/upload.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/upload.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/upload.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/upload.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-c-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-c-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-c-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-c-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-c.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-c.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-c.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-c.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-drive-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-drive-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-drive-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-drive-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-drive.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-drive.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-drive.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-drive.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-micro-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-micro-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-micro-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-micro-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-micro.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-micro.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-micro.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-micro.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-mini-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-mini-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-mini-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-mini-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-mini.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-mini.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-mini.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-mini.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-plug-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-plug-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-plug-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-plug-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-plug.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-plug.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-plug.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-plug.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-symbol.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-symbol.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb-symbol.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb-symbol.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/usb.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/usb.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/valentine.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/valentine.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/valentine.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/valentine.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/valentine2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/valentine2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/valentine2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/valentine2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vector-pen.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vector-pen.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vector-pen.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vector-pen.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/view-list.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/view-list.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/view-list.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/view-list.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/view-stacked.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/view-stacked.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/view-stacked.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/view-stacked.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vimeo.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vimeo.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vimeo.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vimeo.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vinyl-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vinyl-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vinyl-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vinyl-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vinyl.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vinyl.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vinyl.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vinyl.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/voicemail.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/voicemail.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/voicemail.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/voicemail.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-down-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-down-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-down-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-down-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-down.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-down.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-down.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-down.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-mute-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-mute-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-mute-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-mute-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-mute.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-mute.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-mute.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-mute.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-off-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-off-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-off-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-off-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-off.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-off.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-off.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-off.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-up-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-up-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-up-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-up-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-up.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-up.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/volume-up.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/volume-up.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vr.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vr.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/vr.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/vr.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wallet-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wallet-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wallet-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wallet-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wallet.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wallet.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wallet.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wallet.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wallet2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wallet2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wallet2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wallet2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/watch.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/watch.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/watch.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/watch.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/water.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/water.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/water.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/water.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/webcam-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/webcam-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/webcam-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/webcam-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/webcam.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/webcam.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/webcam.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/webcam.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/whatsapp.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/whatsapp.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/whatsapp.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/whatsapp.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi-1.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi-1.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi-1.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi-1.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi-2.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi-2.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi-2.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi-2.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi-off.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi-off.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi-off.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi-off.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wifi.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wifi.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wind.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wind.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wind.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wind.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-dash.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-dash.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-dash.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-dash.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-desktop.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-desktop.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-desktop.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-desktop.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-dock.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-dock.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-dock.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-dock.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-fullscreen.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-fullscreen.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-fullscreen.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-fullscreen.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-plus.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-plus.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-plus.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-plus.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-sidebar.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-sidebar.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-sidebar.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-sidebar.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-split.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-split.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-split.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-split.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-stack.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-stack.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-stack.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-stack.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window-x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window-x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/window.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/window.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/windows.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/windows.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/windows.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/windows.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wordpress.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wordpress.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wordpress.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wordpress.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench-adjustable.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/wrench.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/wrench.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-circle-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-circle-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-circle-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-circle-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-circle.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-circle.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-circle.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-circle.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-diamond-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-diamond-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-diamond-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-diamond-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-diamond.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-diamond.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-diamond.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-diamond.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-lg.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-lg.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-lg.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-lg.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-octagon-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-octagon-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-octagon-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-octagon-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-octagon.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-octagon.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-octagon.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-octagon.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-square-fill.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-square-fill.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-square-fill.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-square-fill.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-square.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-square.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x-square.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x-square.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/x.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/x.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/xbox.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/xbox.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/xbox.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/xbox.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/yin-yang.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/yin-yang.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/yin-yang.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/yin-yang.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/youtube.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/youtube.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/youtube.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/youtube.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/zoom-in.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/zoom-in.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/zoom-in.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/zoom-in.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/zoom-out.svg b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/zoom-out.svg similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap-icons/zoom-out.svg rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap-icons/zoom-out.svg diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap5/bootstrap.min.css b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap5/bootstrap.min.css similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap5/bootstrap.min.css rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap5/bootstrap.min.css diff --git a/user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap5/bootstrap.min.css.map b/user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap5/bootstrap.min.css.map similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/libs/bootstrap5/bootstrap.min.css.map rename to user_config/usr/share/lsp_manager/context_path/resources/css/libs/bootstrap5/bootstrap.min.css.map diff --git a/user_config/usr/share/app_name/context_path/resources/css/main.css b/user_config/usr/share/lsp_manager/context_path/resources/css/main.css similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/main.css rename to user_config/usr/share/lsp_manager/context_path/resources/css/main.css diff --git a/user_config/usr/share/app_name/context_path/resources/css/overrides.css b/user_config/usr/share/lsp_manager/context_path/resources/css/overrides.css similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/css/overrides.css rename to user_config/usr/share/lsp_manager/context_path/resources/css/overrides.css diff --git a/user_config/usr/share/app_name/context_path/resources/js/ajax.js b/user_config/usr/share/lsp_manager/context_path/resources/js/ajax.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/ajax.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/ajax.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/context-menu.js b/user_config/usr/share/lsp_manager/context_path/resources/js/context-menu.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/context-menu.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/context-menu.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/events.js b/user_config/usr/share/lsp_manager/context_path/resources/js/events.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/events.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/events.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/globals.js b/user_config/usr/share/lsp_manager/context_path/resources/js/globals.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/globals.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/globals.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js b/user_config/usr/share/lsp_manager/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js.map b/user_config/usr/share/lsp_manager/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js.map similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js.map rename to user_config/usr/share/lsp_manager/context_path/resources/js/libs/bootstrap5/bootstrap.bundle.min.js.map diff --git a/user_config/usr/share/app_name/context_path/resources/js/libs/jquery-3.7.1.min.js b/user_config/usr/share/lsp_manager/context_path/resources/js/libs/jquery-3.7.1.min.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/libs/jquery-3.7.1.min.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/libs/jquery-3.7.1.min.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/post-ajax.js b/user_config/usr/share/lsp_manager/context_path/resources/js/post-ajax.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/post-ajax.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/post-ajax.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/ui-logic.js b/user_config/usr/share/lsp_manager/context_path/resources/js/ui-logic.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/ui-logic.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/ui-logic.js diff --git a/user_config/usr/share/app_name/context_path/resources/js/utils.js b/user_config/usr/share/lsp_manager/context_path/resources/js/utils.js similarity index 100% rename from user_config/usr/share/app_name/context_path/resources/js/utils.js rename to user_config/usr/share/lsp_manager/context_path/resources/js/utils.js diff --git a/user_config/usr/share/app_name/icons/archive.png b/user_config/usr/share/lsp_manager/icons/archive.png similarity index 100% rename from user_config/usr/share/app_name/icons/archive.png rename to user_config/usr/share/lsp_manager/icons/archive.png diff --git a/user_config/usr/share/app_name/icons/audio.png b/user_config/usr/share/lsp_manager/icons/audio.png similarity index 100% rename from user_config/usr/share/app_name/icons/audio.png rename to user_config/usr/share/lsp_manager/icons/audio.png diff --git a/user_config/usr/share/app_name/icons/bin.png b/user_config/usr/share/lsp_manager/icons/bin.png similarity index 100% rename from user_config/usr/share/app_name/icons/bin.png rename to user_config/usr/share/lsp_manager/icons/bin.png diff --git a/user_config/usr/share/app_name/icons/dir.png b/user_config/usr/share/lsp_manager/icons/dir.png similarity index 100% rename from user_config/usr/share/app_name/icons/dir.png rename to user_config/usr/share/lsp_manager/icons/dir.png diff --git a/user_config/usr/share/app_name/icons/doc.png b/user_config/usr/share/lsp_manager/icons/doc.png similarity index 100% rename from user_config/usr/share/app_name/icons/doc.png rename to user_config/usr/share/lsp_manager/icons/doc.png diff --git a/user_config/usr/share/app_name/icons/image.png b/user_config/usr/share/lsp_manager/icons/image.png similarity index 100% rename from user_config/usr/share/app_name/icons/image.png rename to user_config/usr/share/lsp_manager/icons/image.png diff --git a/user_config/usr/share/app_name/icons/app_name-64x64.png b/user_config/usr/share/lsp_manager/icons/lsp_manager-64x64.png similarity index 100% rename from user_config/usr/share/app_name/icons/app_name-64x64.png rename to user_config/usr/share/lsp_manager/icons/lsp_manager-64x64.png diff --git a/user_config/usr/share/app_name/icons/app_name.png b/user_config/usr/share/lsp_manager/icons/lsp_manager.png similarity index 100% rename from user_config/usr/share/app_name/icons/app_name.png rename to user_config/usr/share/lsp_manager/icons/lsp_manager.png diff --git a/user_config/usr/share/app_name/icons/pdf.png b/user_config/usr/share/lsp_manager/icons/pdf.png similarity index 100% rename from user_config/usr/share/app_name/icons/pdf.png rename to user_config/usr/share/lsp_manager/icons/pdf.png diff --git a/user_config/usr/share/app_name/icons/presentation.png b/user_config/usr/share/lsp_manager/icons/presentation.png similarity index 100% rename from user_config/usr/share/app_name/icons/presentation.png rename to user_config/usr/share/lsp_manager/icons/presentation.png diff --git a/user_config/usr/share/app_name/icons/spreadsheet.png b/user_config/usr/share/lsp_manager/icons/spreadsheet.png similarity index 100% rename from user_config/usr/share/app_name/icons/spreadsheet.png rename to user_config/usr/share/lsp_manager/icons/spreadsheet.png diff --git a/user_config/usr/share/app_name/icons/text.png b/user_config/usr/share/lsp_manager/icons/text.png similarity index 100% rename from user_config/usr/share/app_name/icons/text.png rename to user_config/usr/share/lsp_manager/icons/text.png diff --git a/user_config/usr/share/app_name/icons/trash.png b/user_config/usr/share/lsp_manager/icons/trash.png similarity index 100% rename from user_config/usr/share/app_name/icons/trash.png rename to user_config/usr/share/lsp_manager/icons/trash.png diff --git a/user_config/usr/share/app_name/icons/video.png b/user_config/usr/share/lsp_manager/icons/video.png similarity index 100% rename from user_config/usr/share/app_name/icons/video.png rename to user_config/usr/share/lsp_manager/icons/video.png diff --git a/user_config/usr/share/app_name/icons/web.png b/user_config/usr/share/lsp_manager/icons/web.png similarity index 100% rename from user_config/usr/share/app_name/icons/web.png rename to user_config/usr/share/lsp_manager/icons/web.png diff --git a/user_config/usr/share/lsp_manager/initialize-params-slim.json b/user_config/usr/share/lsp_manager/initialize-params-slim.json new file mode 100644 index 0000000..2786490 --- /dev/null +++ b/user_config/usr/share/lsp_manager/initialize-params-slim.json @@ -0,0 +1,151 @@ +{ + "_description": "The parameters sent by the client when initializing the language server with the \"initialize\" request. More details at https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initialize", + "processId": "os.getpid()", + "clientInfo": { + "name": "LSP Manager", + "version": "0.0.1" + }, + "locale": "en", + "rootPath": "repository_absolute_path", + "rootUri": "pathlib.Path(repository_absolute_path).as_uri()", + "capabilities": { + "textDocument": { + "completion": { + "dynamicRegistration": true, + "contextSupport": true, + "completionItem": { + "snippetSupport": false, + "commitCharactersSupport": true, + "documentationFormat": [ + "markdown", + "plaintext" + ], + "deprecatedSupport": true, + "preselectSupport": true, + "tagSupport": { + "valueSet": [ + 1 + ] + }, + "insertReplaceSupport": false, + "resolveSupport": { + "properties": [ + "documentation", + "detail", + "additionalTextEdits" + ] + }, + "insertTextModeSupport": { + "valueSet": [ + 1, + 2 + ] + }, + "labelDetailsSupport": true + }, + "insertTextMode": 2, + "completionItemKind": { + "valueSet": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ] + }, + "completionList": { + "itemDefaults": [ + "commitCharacters", + "editRange", + "insertTextFormat", + "insertTextMode" + ] + } + }, + "hover": { + "dynamicRegistration": true, + "contentFormat": [ + "markdown", + "plaintext" + ] + }, + "signatureHelp": { + "dynamicRegistration": true, + "signatureInformation": { + "documentationFormat": [ + "markdown", + "plaintext" + ], + "parameterInformation": { + "labelOffsetSupport": true + }, + "activeParameterSupport": true + }, + "contextSupport": true + }, + "definition": { + "dynamicRegistration": true, + "linkSupport": true + }, + "references": { + "dynamicRegistration": true + }, + "typeDefinition": { + "dynamicRegistration": true, + "linkSupport": true + }, + "implementation": { + "dynamicRegistration": true, + "linkSupport": true + }, + "colorProvider": { + "dynamicRegistration": true + }, + "declaration": { + "dynamicRegistration": true, + "linkSupport": true + }, + "callHierarchy": { + "dynamicRegistration": true + }, + "inlayHint": { + "dynamicRegistration": true, + "resolveSupport": { + "properties": [ + "tooltip", + "textEdits", + "label.tooltip", + "label.location", + "label.command" + ] + } + }, + "diagnostic": { + "dynamicRegistration": true, + "relatedDocumentSupport": false + } + } + }, + "trace": "verbose", + "workspaceFolders": "[\n {\n \"uri\": pathlib.Path(repository_absolute_path).as_uri(),\n \"name\": os.path.basename(repository_absolute_path),\n }\n ]" +} diff --git a/user_config/usr/share/lsp_manager/initialize-params.json b/user_config/usr/share/lsp_manager/initialize-params.json new file mode 100644 index 0000000..5c4cd52 --- /dev/null +++ b/user_config/usr/share/lsp_manager/initialize-params.json @@ -0,0 +1,849 @@ +{ + "_description": "The parameters sent by the client when initializing the language server with the \"initialize\" request. More details at https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#initialize", + "processId": "os.getpid()", + "clientInfo": { + "name": "Visual Studio Code - Insiders", + "version": "1.77.0-insider" + }, + "locale": "en", + "rootPath": "repository_absolute_path", + "rootUri": "pathlib.Path(repository_absolute_path).as_uri()", + "capabilities": { + "workspace": { + "applyEdit": true, + "workspaceEdit": { + "documentChanges": true, + "resourceOperations": [ + "create", + "rename", + "delete" + ], + "failureHandling": "textOnlyTransactional", + "normalizesLineEndings": true, + "changeAnnotationSupport": { + "groupsOnLabel": true + } + }, + "didChangeConfiguration": { + "dynamicRegistration": true + }, + "didChangeWatchedFiles": { + "dynamicRegistration": true, + "relativePatternSupport": true + }, + "symbol": { + "dynamicRegistration": true, + "symbolKind": { + "valueSet": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26 + ] + }, + "tagSupport": { + "valueSet": [ + 1 + ] + }, + "resolveSupport": { + "properties": [ + "location.range" + ] + } + }, + "codeLens": { + "refreshSupport": true + }, + "executeCommand": { + "dynamicRegistration": true + }, + "configuration": true, + "workspaceFolders": true, + "semanticTokens": { + "refreshSupport": true + }, + "fileOperations": { + "dynamicRegistration": true, + "didCreate": true, + "didRename": true, + "didDelete": true, + "willCreate": true, + "willRename": true, + "willDelete": true + }, + "inlineValue": { + "refreshSupport": true + }, + "inlayHint": { + "refreshSupport": true + }, + "diagnostics": { + "refreshSupport": true + } + }, + "textDocument": { + "publishDiagnostics": { + "relatedInformation": true, + "versionSupport": false, + "tagSupport": { + "valueSet": [ + 1, + 2 + ] + }, + "codeDescriptionSupport": true, + "dataSupport": true + }, + "synchronization": { + "dynamicRegistration": true, + "willSave": true, + "willSaveWaitUntil": true, + "didSave": true + }, + "completion": { + "dynamicRegistration": true, + "contextSupport": true, + "completionItem": { + "snippetSupport": false, + "commitCharactersSupport": true, + "documentationFormat": [ + "markdown", + "plaintext" + ], + "deprecatedSupport": true, + "preselectSupport": true, + "tagSupport": { + "valueSet": [ + 1 + ] + }, + "insertReplaceSupport": false, + "resolveSupport": { + "properties": [ + "documentation", + "detail", + "additionalTextEdits" + ] + }, + "insertTextModeSupport": { + "valueSet": [ + 1, + 2 + ] + }, + "labelDetailsSupport": true + }, + "insertTextMode": 2, + "completionItemKind": { + "valueSet": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ] + }, + "completionList": { + "itemDefaults": [ + "commitCharacters", + "editRange", + "insertTextFormat", + "insertTextMode" + ] + } + }, + "hover": { + "dynamicRegistration": true, + "contentFormat": [ + "markdown", + "plaintext" + ] + }, + "signatureHelp": { + "dynamicRegistration": true, + "signatureInformation": { + "documentationFormat": [ + "markdown", + "plaintext" + ], + "parameterInformation": { + "labelOffsetSupport": true + }, + "activeParameterSupport": true + }, + "contextSupport": true + }, + "definition": { + "dynamicRegistration": true, + "linkSupport": true + }, + "references": { + "dynamicRegistration": true + }, + "documentHighlight": { + "dynamicRegistration": true + }, + "documentSymbol": { + "dynamicRegistration": true, + "symbolKind": { + "valueSet": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26 + ] + }, + "hierarchicalDocumentSymbolSupport": true, + "tagSupport": { + "valueSet": [ + 1 + ] + }, + "labelSupport": true + }, + "codeAction": { + "dynamicRegistration": true, + "isPreferredSupport": true, + "disabledSupport": true, + "dataSupport": true, + "resolveSupport": { + "properties": [ + "edit" + ] + }, + "codeActionLiteralSupport": { + "codeActionKind": { + "valueSet": [ + "", + "quickfix", + "refactor", + "refactor.extract", + "refactor.inline", + "refactor.rewrite", + "source", + "source.organizeImports" + ] + } + }, + "honorsChangeAnnotations": false + }, + "codeLens": { + "dynamicRegistration": true + }, + "formatting": { + "dynamicRegistration": true + }, + "rangeFormatting": { + "dynamicRegistration": true + }, + "onTypeFormatting": { + "dynamicRegistration": true + }, + "rename": { + "dynamicRegistration": true, + "prepareSupport": true, + "prepareSupportDefaultBehavior": 1, + "honorsChangeAnnotations": true + }, + "documentLink": { + "dynamicRegistration": true, + "tooltipSupport": true + }, + "typeDefinition": { + "dynamicRegistration": true, + "linkSupport": true + }, + "implementation": { + "dynamicRegistration": true, + "linkSupport": true + }, + "colorProvider": { + "dynamicRegistration": true + }, + "foldingRange": { + "dynamicRegistration": true, + "rangeLimit": 5000, + "lineFoldingOnly": true, + "foldingRangeKind": { + "valueSet": [ + "comment", + "imports", + "region" + ] + }, + "foldingRange": { + "collapsedText": false + } + }, + "declaration": { + "dynamicRegistration": true, + "linkSupport": true + }, + "selectionRange": { + "dynamicRegistration": true + }, + "callHierarchy": { + "dynamicRegistration": true + }, + "semanticTokens": { + "dynamicRegistration": true, + "tokenTypes": [ + "namespace", + "type", + "class", + "enum", + "interface", + "struct", + "typeParameter", + "parameter", + "variable", + "property", + "enumMember", + "event", + "function", + "method", + "macro", + "keyword", + "modifier", + "comment", + "string", + "number", + "regexp", + "operator", + "decorator" + ], + "tokenModifiers": [ + "declaration", + "definition", + "readonly", + "static", + "deprecated", + "abstract", + "async", + "modification", + "documentation", + "defaultLibrary" + ], + "formats": [ + "relative" + ], + "requests": { + "range": true, + "full": { + "delta": true + } + }, + "multilineTokenSupport": false, + "overlappingTokenSupport": false, + "serverCancelSupport": true, + "augmentsSyntaxTokens": true + }, + "linkedEditingRange": { + "dynamicRegistration": true + }, + "typeHierarchy": { + "dynamicRegistration": true + }, + "inlineValue": { + "dynamicRegistration": true + }, + "inlayHint": { + "dynamicRegistration": true, + "resolveSupport": { + "properties": [ + "tooltip", + "textEdits", + "label.tooltip", + "label.location", + "label.command" + ] + } + }, + "diagnostic": { + "dynamicRegistration": true, + "relatedDocumentSupport": false + } + }, + "window": { + "showMessage": { + "messageActionItem": { + "additionalPropertiesSupport": true + } + }, + "showDocument": { + "support": true + }, + "workDoneProgress": true + }, + "general": { + "staleRequestSupport": { + "cancel": true, + "retryOnContentModified": [ + "textDocument/semanticTokens/full", + "textDocument/semanticTokens/range", + "textDocument/semanticTokens/full/delta" + ] + }, + "regularExpressions": { + "engine": "ECMAScript", + "version": "ES2020" + }, + "markdown": { + "parser": "marked", + "version": "1.1.0" + }, + "positionEncodings": [ + "utf-16" + ] + }, + "notebookDocument": { + "synchronization": { + "dynamicRegistration": true, + "executionSummarySupport": true + } + } + }, + "initializationOptions": { + "bundles": [ + "intellicode-core.jar" + ], + "workspaceFolders": "[pathlib.Path(repository_absolute_path).as_uri()]", + "settings": { + "java": { + "home": null, + "jdt": { + "ls": { + "java": { + "home": null + }, + "vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable", + "lombokSupport": { + "enabled": true + }, + "protobufSupport": { + "enabled": true + }, + "androidSupport": { + "enabled": true + } + } + }, + "errors": { + "incompleteClasspath": { + "severity": "error" + } + }, + "configuration": { + "checkProjectSettingsExclusions": false, + "updateBuildConfiguration": "interactive", + "maven": { + "userSettings": null, + "globalSettings": null, + "notCoveredPluginExecutionSeverity": "warning", + "defaultMojoExecutionAction": "ignore" + }, + "workspaceCacheLimit": 90, + "runtimes": [ + { + "name": "JavaSE-17", + "path": "static/vscode-java/extension/jre/17.0.8.1-linux-x86_64", + "default": true + } + ] + }, + "trace": { + "server": "verbose" + }, + "import": { + "maven": { + "enabled": true, + "offline": { + "enabled": false + }, + "disableTestClasspathFlag": false + }, + "gradle": { + "enabled": true, + "wrapper": { + "enabled": true + }, + "version": null, + "home": "abs(static/gradle-7.3.3)", + "java": { + "home": "abs(static/launch_jres/17.0.6-linux-x86_64)" + }, + "offline": { + "enabled": false + }, + "arguments": null, + "jvmArguments": null, + "user": { + "home": null + }, + "annotationProcessing": { + "enabled": true + } + }, + "exclusions": [ + "**/node_modules/**", + "**/.metadata/**", + "**/archetype-resources/**", + "**/META-INF/maven/**" + ], + "generatesMetadataFilesAtProjectRoot": false + }, + "maven": { + "downloadSources": true, + "updateSnapshots": true + }, + "eclipse": { + "downloadSources": true + }, + "referencesCodeLens": { + "enabled": true + }, + "signatureHelp": { + "enabled": true, + "description": { + "enabled": true + } + }, + "implementationsCodeLens": { + "enabled": true + }, + "format": { + "enabled": true, + "settings": { + "url": null, + "profile": null + }, + "comments": { + "enabled": true + }, + "onType": { + "enabled": true + }, + "insertSpaces": true, + "tabSize": 4 + }, + "saveActions": { + "organizeImports": false + }, + "project": { + "referencedLibraries": [ + "lib/**/*.jar" + ], + "importOnFirstTimeStartup": "automatic", + "importHint": true, + "resourceFilters": [ + "node_modules", + "\\.git" + ], + "encoding": "ignore", + "exportJar": { + "targetPath": "${workspaceFolder}/${workspaceFolderBasename}.jar" + } + }, + "contentProvider": { + "preferred": null + }, + "autobuild": { + "enabled": true + }, + "maxConcurrentBuilds": 1, + "recommendations": { + "dependency": { + "analytics": { + "show": true + } + } + }, + "completion": { + "maxResults": 0, + "enabled": true, + "guessMethodArguments": true, + "favoriteStaticMembers": [ + "org.junit.Assert.*", + "org.junit.Assume.*", + "org.junit.jupiter.api.Assertions.*", + "org.junit.jupiter.api.Assumptions.*", + "org.junit.jupiter.api.DynamicContainer.*", + "org.junit.jupiter.api.DynamicTest.*", + "org.mockito.Mockito.*", + "org.mockito.ArgumentMatchers.*", + "org.mockito.Answers.*" + ], + "filteredTypes": [ + "java.awt.*", + "com.sun.*", + "sun.*", + "jdk.*", + "org.graalvm.*", + "io.micrometer.shaded.*" + ], + "importOrder": [ + "#", + "java", + "javax", + "org", + "com", + "" + ], + "postfix": { + "enabled": false + }, + "matchCase": "off" + }, + "foldingRange": { + "enabled": true + }, + "progressReports": { + "enabled": false + }, + "codeGeneration": { + "hashCodeEquals": { + "useJava7Objects": false, + "useInstanceof": false + }, + "useBlocks": false, + "generateComments": false, + "toString": { + "template": "${object.className} [${member.name()}=${member.value}, ${otherMembers}]", + "codeStyle": "STRING_CONCATENATION", + "skipNullValues": false, + "listArrayContents": true, + "limitElements": 0 + }, + "insertionLocation": "afterCursor" + }, + "selectionRange": { + "enabled": true + }, + "showBuildStatusOnStart": { + "enabled": "notification" + }, + "server": { + "launchMode": "Standard" + }, + "sources": { + "organizeImports": { + "starThreshold": 99, + "staticStarThreshold": 99 + } + }, + "imports": { + "gradle": { + "wrapper": { + "checksums": [] + } + } + }, + "templates": { + "fileHeader": [], + "typeComment": [] + }, + "references": { + "includeAccessors": true, + "includeDecompiledSources": true + }, + "typeHierarchy": { + "lazyLoad": false + }, + "settings": { + "url": null + }, + "symbols": { + "includeSourceMethodDeclarations": false + }, + "quickfix": { + "showAt": "line" + }, + "inlayHints": { + "parameterNames": { + "enabled": "literals", + "exclusions": [] + } + }, + "codeAction": { + "sortMembers": { + "avoidVolatileChanges": true + } + }, + "compile": { + "nullAnalysis": { + "nonnull": [ + "javax.annotation.Nonnull", + "org.eclipse.jdt.annotation.NonNull", + "org.springframework.lang.NonNull" + ], + "nullable": [ + "javax.annotation.Nullable", + "org.eclipse.jdt.annotation.Nullable", + "org.springframework.lang.Nullable" + ], + "mode": "automatic" + } + }, + "cleanup": { + "actionsOnSave": [] + }, + "sharedIndexes": { + "enabled": "auto", + "location": "" + }, + "refactoring": { + "extract": { + "interface": { + "replace": true + } + } + }, + "debug": { + "logLevel": "verbose", + "settings": { + "showHex": false, + "showStaticVariables": false, + "showQualifiedNames": false, + "showLogicalStructure": true, + "showToString": true, + "maxStringLength": 0, + "numericPrecision": 0, + "hotCodeReplace": "manual", + "enableRunDebugCodeLens": true, + "forceBuildBeforeLaunch": true, + "onBuildFailureProceed": false, + "console": "integratedTerminal", + "exceptionBreakpoint": { + "skipClasses": [] + }, + "stepping": { + "skipClasses": [], + "skipSynthetics": false, + "skipStaticInitializers": false, + "skipConstructors": false + }, + "jdwp": { + "limitOfVariablesPerJdwpRequest": 100, + "requestTimeout": 3000, + "async": "auto" + }, + "vmArgs": "" + } + }, + "silentNotification": false, + "dependency": { + "showMembers": false, + "syncWithFolderExplorer": true, + "autoRefresh": true, + "refreshDelay": 2000, + "packagePresentation": "flat" + }, + "help": { + "firstView": "auto", + "showReleaseNotes": true, + "collectErrorLog": false + }, + "test": { + "defaultConfig": "", + "config": {} + } + } + }, + "extendedClientCapabilities": { + "progressReportProvider": false, + "classFileContentsSupport": true, + "overrideMethodsPromptSupport": true, + "hashCodeEqualsPromptSupport": true, + "advancedOrganizeImportsSupport": true, + "generateToStringPromptSupport": true, + "advancedGenerateAccessorsSupport": true, + "generateConstructorsPromptSupport": true, + "generateDelegateMethodsPromptSupport": true, + "advancedExtractRefactoringSupport": true, + "inferSelectionSupport": [ + "extractMethod", + "extractVariable", + "extractField" + ], + "moveRefactoringSupport": true, + "clientHoverProvider": true, + "clientDocumentSymbolProvider": true, + "gradleChecksumWrapperPromptSupport": true, + "resolveAdditionalTextEditsSupport": true, + "advancedIntroduceParameterRefactoringSupport": true, + "actionableRuntimeNotificationSupport": true, + "shouldLanguageServerExitOnShutdown": true, + "onCompletionItemSelectedCommand": "editor.action.triggerParameterHints", + "extractInterfaceSupport": true, + "advancedUpgradeGradleSupport": true + }, + "triggerFiles": [] + }, + "trace": "verbose", + "workspaceFolders": "[\n {\n \"uri\": pathlib.Path(repository_absolute_path).as_uri(),\n \"name\": os.path.basename(repository_absolute_path),\n }\n ]" +} \ No newline at end of file diff --git a/user_config/usr/share/lsp_manager/key-bindings.json b/user_config/usr/share/lsp_manager/key-bindings.json new file mode 100644 index 0000000..8eb8187 --- /dev/null +++ b/user_config/usr/share/lsp_manager/key-bindings.json @@ -0,0 +1,24 @@ +{ + "keybindings": { + "help" : "F1", + "rename-files" : ["F2", "e"], + "open-terminal" : "F4", + "refresh-tab" : ["F5", "r"], + "delete-files" : "Delete", + "tggl-top-main-menubar" : "Alt_L", + "tggl-top-main-menubar" : "0", + "trash-files" : "t", + "tear-down" : "q", + "go-up" : "Up", + "go-home" : "slash", + "grab-focus-path-entry" : "l", + "open-files" : "o", + "show-hide-hidden-files" : "h", + "keyboard-create-tab" : "t", + "keyboard-close-tab" : "w", + "keyboard-copy-files" : "c", + "keyboard-cut-files" : "x", + "paste-files" : "v", + "show-new-file-menu" : "n" + } +} diff --git a/user_config/usr/share/lsp_manager/lsp-servers-config.json b/user_config/usr/share/lsp_manager/lsp-servers-config.json new file mode 100644 index 0000000..35ca348 --- /dev/null +++ b/user_config/usr/share/lsp_manager/lsp-servers-config.json @@ -0,0 +1,109 @@ +{ + "sh": { + "info": "", + "alt-command": "", + "command": "", + "socket": "ws://127.0.0.1:3030/?name=shell", + "initialization-options": {} + }, + "python": { + "info": "https://github.com/python-lsp/python-lsp-server", + "alt-command": "pylsp --ws --port 3030", + "command": "lsp-ws-proxy --listen 3030 -- pylsp", + "socket": "ws://127.0.0.1:3030/?name=pylsp", + "initialization-options": { + "pylsp.plugins.rope_autoimport.enabled": true, + "pylsp.plugins.rope_completion.enabled": true, + "pylsp.plugins.rope_completion.eager": true, + "pylsp.plugins.jedi_completion.fuzzy": true, + "pylsp.plugins.jedi.extra_paths": [ + "/home/abaddon/Portable_Apps/py-venvs/lsp_bridge-venv/venv/lib/python3.10/site-packages/gi-stubs" + ] + } + }, + "python_alt_config": { + "info": "https://github.com/python-lsp/python-lsp-server", + "alt-command": "pylsp", + "alt-command2": "pylsp --ws --port 3030", + "command": "lsp-ws-proxy --listen 3030 -- pylsp", + "socket": "ws://127.0.0.1:3030/?name=pylsp", + "initialization-options": { + "pylsp.plugins.ruff": true, + "pylsp.plugins.pylsp_rope.rename": true, + "pylsp.plugins.rope_rename.enabled": false, + "pylsp.plugins.rope_autoimport.enabled": true, + "pylsp.plugins.rope_completion.enabled": false, + "pylsp.plugins.rope_completion.eager": false, + "pylsp.plugins.jedi_rename.enabled": false, + "pylsp.plugins.jedi_completion.enabled": true, + "pylsp.plugins.jedi_completion.include_class_objects": false, + "pylsp.plugins.jedi_completion.include_function_objects": false, + "pylsp.plugins.jedi_completion.fuzzy": true, + "pylsp.plugins.jedi.extra_paths": [ + "/home/abaddon/Portable_Apps/py-venvs/lsp_bridge-venv/venv/lib/python3.10/site-packages/gi-stubs" + ] + } + }, + "python3": { + "info": "https://pypi.org/project/jedi-language-server/", + "alt-command": "jedi-language-server", + "command": "lsp-ws-proxy --listen 3030 -- jedi-language-server", + "socket": "ws://127.0.0.1:3030/?name=jedi-language-server", + "initialization-options": { + "jediSettings": { + "autoImportModules": [], + "caseInsensitiveCompletion": true, + "debug": false + }, + "completion": { + "disableSnippets": false, + "resolveEagerly": false, + "ignorePatterns": [] + }, + "markupKindPreferred": "markdown", + "workspace": { + "extraPaths": ["/home/abaddon/Portable_Apps/py-venvs/gtk-apps-venv/venv/lib/python3.10/site-packages/gi"], + "environmentPath": "/home/abaddon/Portable_Apps/py-venvs/gtk-apps-venv/venv/bin/python", + "symbols": { + "ignoreFolders": [".nox", ".tox", ".venv", "__pycache__", "venv"], + "maxSymbols": 20 + } + } + } + }, + "c": { + "info": "https://clangd.llvm.org/", + "alt-command": "clangd", + "command": "lsp-ws-proxy --listen 3030 -- clangd", + "socket": "ws://127.0.0.1:3030/?name=clangd", + "initialization-options": {} + }, + "cpp": { + "info": "https://clangd.llvm.org/", + "alt-command": "clangd", + "command": "lsp-ws-proxy --listen 3030 -- clangd", + "socket": "ws://127.0.0.1:3030/?name=clangd", + "initialization-options": {} + }, + "java": { + "info": "https://download.eclipse.org/jdtls/", + "alt-command": "java-language-server", + "command": "lsp-ws-proxy --listen 3030 -- java-language-server", + "socket": "ws://127.0.0.1:3030/?name=java-language-server", + "initialization-options": {} + }, + "lua": { + "info": "https://github.com/LuaLS/lua-language-server", + "alt-command": "lua-language-server", + "command": "lsp-ws-proxy --listen 3030 -- lua-language-server", + "socket": "ws://127.0.0.1:3030/?name=gopls", + "initialization-options": {} + }, + "go": { + "info": "https://pkg.go.dev/golang.org/x/tools/gopls#section-readme", + "alt-command": "gopls", + "command": "lsp-ws-proxy --listen 3030 -- gopls", + "socket": "ws://127.0.0.1:3030/?name=gopls", + "initialization-options": {} + } +} \ No newline at end of file diff --git a/user_config/usr/share/app_name/stylesheet.css b/user_config/usr/share/lsp_manager/stylesheet.css similarity index 92% rename from user_config/usr/share/app_name/stylesheet.css rename to user_config/usr/share/lsp_manager/stylesheet.css index ce012b1..db9ed2c 100644 --- a/user_config/usr/share/app_name/stylesheet.css +++ b/user_config/usr/share/lsp_manager/stylesheet.css @@ -1,3 +1,16 @@ +/* ---- Make most desired things base transparent ---- */ +popover, +popover > *, +scrolledwindow > *, +textview > *, +.main-window > .base-container > .body-container, +.main-window > .base-container > .body-container > .left-container, +.main-window > .base-container > .body-container > .center-container, +.main-window > .base-container > .body-container > .right-container { + background: rgba(0, 0, 0, 0.0); + color: rgba(255, 255, 255, 1); +} + .base-container { margin: 10px; } @@ -128,3 +141,4 @@ XfdesktopIconView.view:active { .mw_transparency_97 { background: rgba(39, 43, 52, 0.97); } .mw_transparency_98 { background: rgba(39, 43, 52, 0.98); } .mw_transparency_99 { background: rgba(39, 43, 52, 0.99); } +.mw_transparency_100 { background: rgba(39, 43, 52, 1.00); } \ No newline at end of file