Compare commits
5 commits
ec217a1187
...
67ef2d3626
Author | SHA1 | Date | |
---|---|---|---|
67ef2d3626 | |||
1cfc8f242d | |||
3c3d9678a6 | |||
bc1493ef4a | |||
970b269f61 |
10 changed files with 115 additions and 138 deletions
|
@ -1,73 +1,99 @@
|
||||||
{
|
{
|
||||||
"security.workspace.trust.enabled": false,
|
|
||||||
"workbench.startupEditor": "none",
|
|
||||||
"[html]": {
|
|
||||||
//"editor.formatOnSave": true
|
|
||||||
},
|
|
||||||
"atomKeymap.promptV3Features": true,
|
|
||||||
"editor.multiCursorModifier": "ctrlCmd",
|
|
||||||
"editor.formatOnPaste": true,
|
|
||||||
"git.enableSmartCommit": true,
|
|
||||||
"git.confirmSync": false,
|
|
||||||
"git.autofetch": true,
|
|
||||||
"intelephense.format.braces": "k&r",
|
|
||||||
"polacode.transparentBackground": true,
|
|
||||||
"editor.formatOnSave": true,
|
|
||||||
"files.associations": {
|
|
||||||
"*.ctest": "c",
|
|
||||||
"*.cc": "cpp",
|
|
||||||
"*.hh": "cpp",
|
|
||||||
"*.h": "c",
|
|
||||||
"*.tih": "pascal",
|
|
||||||
"*.tig": "pascal"
|
|
||||||
},
|
|
||||||
"editor.fontFamily": "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace",
|
|
||||||
"editor.fontLigatures": true,
|
|
||||||
"extensions.ignoreRecommendations": true,
|
|
||||||
"window.menuBarVisibility": "toggle",
|
|
||||||
"editor.rulers": [
|
|
||||||
120
|
|
||||||
],
|
|
||||||
"[python]": {
|
|
||||||
"editor.formatOnType": true
|
|
||||||
},
|
|
||||||
"update.showReleaseNotes": false,
|
|
||||||
"git.openRepositoryInParentFolders": "always",
|
|
||||||
"editor.inlineSuggest.enabled": true,
|
|
||||||
"github.copilot.enable": {
|
|
||||||
"*": true,
|
|
||||||
"plaintext": true,
|
|
||||||
"markdown": true,
|
|
||||||
"scminput": false,
|
|
||||||
"yaml": false
|
|
||||||
},
|
|
||||||
"editor.formatOnSaveMode": "file",
|
|
||||||
"explorer.confirmDelete": false,
|
|
||||||
"editor.inlineSuggest.showToolbar": "always",
|
|
||||||
"c-cpp-flylint.clang.language": "C++",
|
|
||||||
"c-cpp-flylint.cppcheck.standard": [
|
|
||||||
"c++20"
|
|
||||||
],
|
|
||||||
"c-cpp-flylint.clang.standard": [
|
|
||||||
"c++20"
|
|
||||||
],
|
|
||||||
"editor.inlayHints.enabled": "off",
|
|
||||||
"editor.detectIndentation": false,
|
|
||||||
"[c]": {
|
"[c]": {
|
||||||
"editor.defaultFormatter": "xaver.clang-format"
|
"editor.defaultFormatter": "xaver.clang-format"
|
||||||
},
|
},
|
||||||
"[cpp]": {
|
"[cpp]": {
|
||||||
"editor.defaultFormatter": "xaver.clang-format"
|
"editor.defaultFormatter": "xaver.clang-format"
|
||||||
},
|
},
|
||||||
"c-cpp-flylint.flawfinder.enable": false,
|
"[html]": {
|
||||||
"c-cpp-flylint.flexelint.enable": false,
|
//"editor.formatOnSave": true
|
||||||
"c-cpp-flylint.lizard.enable": false,
|
},
|
||||||
"c-cpp-flylint.clang.enable": false,
|
|
||||||
"haskell.manageHLS": "GHCup",
|
|
||||||
"redhat.telemetry.enabled": false,
|
|
||||||
"[java]": {
|
"[java]": {
|
||||||
"editor.defaultFormatter": "redhat.java"
|
"editor.defaultFormatter": "redhat.java"
|
||||||
},
|
},
|
||||||
|
"[python]": {
|
||||||
|
"editor.formatOnType": true
|
||||||
|
},
|
||||||
|
"atomKeymap.promptV3Features": true,
|
||||||
|
"c-cpp-flylint.clang.enable": false,
|
||||||
|
"c-cpp-flylint.clang.language": "C",
|
||||||
|
"c-cpp-flylint.clang.standard": [
|
||||||
|
"c++20"
|
||||||
|
],
|
||||||
|
"c-cpp-flylint.cppcheck.standard": [
|
||||||
|
"c++20"
|
||||||
|
],
|
||||||
|
"c-cpp-flylint.flawfinder.enable": false,
|
||||||
|
"c-cpp-flylint.flexelint.enable": false,
|
||||||
|
"c-cpp-flylint.lizard.enable": false,
|
||||||
|
"deno.enable": true,
|
||||||
|
"editor.detectIndentation": false,
|
||||||
|
"editor.fontFamily": "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace",
|
||||||
|
"editor.fontLigatures": true,
|
||||||
|
"editor.formatOnPaste": true,
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.formatOnSaveMode": "file",
|
||||||
|
"editor.inlayHints.enabled": "off",
|
||||||
|
"editor.inlineSuggest.enabled": true,
|
||||||
|
"editor.inlineSuggest.showToolbar": "always",
|
||||||
"editor.largeFileOptimizations": false,
|
"editor.largeFileOptimizations": false,
|
||||||
"github.copilot.editor.enableAutoCompletions": true
|
"editor.multiCursorModifier": "ctrlCmd",
|
||||||
|
"editor.rulers": [
|
||||||
|
120
|
||||||
|
],
|
||||||
|
"explorer.confirmDelete": false,
|
||||||
|
"extensions.ignoreRecommendations": true,
|
||||||
|
"files.associations": {
|
||||||
|
"*.cc": "cpp",
|
||||||
|
"*.ctest": "c",
|
||||||
|
"*.h": "c",
|
||||||
|
"*.hh": "cpp",
|
||||||
|
"*.tig": "pascal",
|
||||||
|
"*.tih": "pascal"
|
||||||
|
},
|
||||||
|
"files.exclude": {
|
||||||
|
"**/.git": false
|
||||||
|
},
|
||||||
|
"git.autofetch": true,
|
||||||
|
"git.confirmSync": false,
|
||||||
|
"git.enableSmartCommit": true,
|
||||||
|
"git.openRepositoryInParentFolders": "always",
|
||||||
|
"github.copilot.editor.enableAutoCompletions": false,
|
||||||
|
"haskell.manageHLS": "GHCup",
|
||||||
|
"intelephense.format.braces": "k&r",
|
||||||
|
"materialTheme.accent": "Yellow",
|
||||||
|
"polacode.transparentBackground": true,
|
||||||
|
"redhat.telemetry.enabled": false,
|
||||||
|
"security.workspace.trust.enabled": false,
|
||||||
|
"update.showReleaseNotes": false,
|
||||||
|
"window.menuBarVisibility": "toggle",
|
||||||
|
"workbench.colorCustomizations": {
|
||||||
|
"[Material Theme Darker High Contrast]": {
|
||||||
|
"activityBar.activeBorder": "#FFA000",
|
||||||
|
"activityBarBadge.background": "#FFA000",
|
||||||
|
"breadcrumb.activeSelectionForeground": "#FFA000",
|
||||||
|
"editor.findMatchBorder": "#FFA000",
|
||||||
|
"editorSuggestWidget.highlightForeground": "#FFA000",
|
||||||
|
"editorWidget.border": "#FFA000",
|
||||||
|
"editorWidget.resizeBorder": "#FFA000",
|
||||||
|
"list.activeSelectionForeground": "#FFA000",
|
||||||
|
"list.highlightForeground": "#FFA000",
|
||||||
|
"list.inactiveSelectionForeground": "#FFA000",
|
||||||
|
"menu.selectionForeground": "#FFA000",
|
||||||
|
"menubar.selectionForeground": "#FFA000",
|
||||||
|
"notificationLink.foreground": "#FFA000",
|
||||||
|
"panelTitle.activeBorder": "#FFA000",
|
||||||
|
"pickerGroup.foreground": "#FFA000",
|
||||||
|
"progressBar.background": "#FFA000",
|
||||||
|
"scrollbarSlider.activeBackground": "#FFA00050",
|
||||||
|
"selection.background": "#FFA00040",
|
||||||
|
"settings.headerForeground": "#FFA000",
|
||||||
|
"settings.modifiedItemIndicator": "#FFA000",
|
||||||
|
"statusBarItem.remoteBackground": "#FFA000",
|
||||||
|
"tab.activeBorder": "#FFA000",
|
||||||
|
"textLink.foreground": "#FFA000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"workbench.colorTheme": "Material Theme Darker High Contrast",
|
||||||
|
"workbench.startupEditor": "none"
|
||||||
}
|
}
|
|
@ -1,30 +1,29 @@
|
||||||
; thunar GtkAccelMap rc-file -*- scheme -*-
|
; thunar GtkAccelMap rc-file -*- scheme -*-
|
||||||
; this file is an automated accelerator map dump
|
; this file is an automated accelerator map dump
|
||||||
;
|
;
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-mtime" "")
|
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/restore" "")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/restore" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/undo" "<Primary>z")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/undo" "<Primary>z")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/select-all-files" "<Primary>a")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/select-all-files" "<Primary>a")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/invert-selection" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-dtime" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStatusBar/toggle-last-modified" "")
|
; (gtk_accel_path "<Actions>/ThunarStatusBar/toggle-last-modified" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarBookmarks/0c5aefe1b02f04f1fa3b4e105e63cd44" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/invert-selection" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStatusBar/toggle-display-name" "")
|
; (gtk_accel_path "<Actions>/ThunarStatusBar/toggle-display-name" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-ascending" "")
|
(gtk_accel_path "<Actions>/ThunarActions/uca-action-1677354678427435-1" "<Primary>t")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/cut" "<Primary>x")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/cut" "<Primary>x")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/restore-show" "")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/restore-show" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-in" "<Primary>plus")
|
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-in" "<Primary>plus")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/trash-delete" "Delete")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-ascending" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/empty-trash" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/empty-trash" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/reload" "<Primary>r")
|
; (gtk_accel_path "<Actions>/ThunarWindow/reload" "<Primary>r")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/toggle-image-preview" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/toggle-image-preview" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/cut-2" "")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/cut-2" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/view-side-pane-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/view-side-pane-menu" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/delete" "")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/trash-delete" "Delete")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/open-network" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/open-network" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/trash-delete-2" "KP_Delete")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/trash-delete-2" "KP_Delete")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/contents/help-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/contents/help-menu" "")
|
||||||
|
; (gtk_accel_path "<Actions>/ThunarActionManager/delete" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/set-default-app" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/set-default-app" "")
|
||||||
(gtk_accel_path "<Actions>/ThunarActions/uca-action-1677354678427435-1" "<Primary>t")
|
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/back-alt" "BackSpace")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/back-alt" "BackSpace")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/open-in-new-tab" "<Primary><Shift>p")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/open-in-new-tab" "<Primary><Shift>p")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/switch-next-tab" "<Primary>Page_Down")
|
; (gtk_accel_path "<Actions>/ThunarWindow/switch-next-tab" "<Primary>Page_Down")
|
||||||
|
@ -40,7 +39,7 @@
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/properties" "<Alt>Return")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/properties" "<Alt>Return")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/back" "<Alt>Left")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/back" "<Alt>Left")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/sendto-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/sendto-menu" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarBookmarks/e4f76ad6ea7f792c66ef25f620e4c7f1" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-mtime" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/open-location" "")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/open-location" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/bookmarks-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/bookmarks-menu" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/reload-alt" "F5")
|
; (gtk_accel_path "<Actions>/ThunarWindow/reload-alt" "F5")
|
||||||
|
@ -74,17 +73,15 @@
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/duplicate" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/duplicate" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/remove-from-recent" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/remove-from-recent" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-out" "<Primary>minus")
|
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-out" "<Primary>minus")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/preferences" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/close-window" "<Primary>q")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/edit-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/edit-menu" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/view-side-pane-shortcuts" "<Primary>b")
|
; (gtk_accel_path "<Actions>/ThunarWindow/view-side-pane-shortcuts" "<Primary>b")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/show-highlight" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/show-highlight" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/contents" "F1")
|
; (gtk_accel_path "<Actions>/ThunarWindow/contents" "F1")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/close-window" "<Primary>q")
|
; (gtk_accel_path "<Actions>/ThunarWindow/preferences" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/switch-previous-tab" "<Primary>Page_Up")
|
; (gtk_accel_path "<Actions>/ThunarWindow/switch-previous-tab" "<Primary>Page_Up")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-in-alt1" "<Primary>KP_Add")
|
; (gtk_accel_path "<Actions>/ThunarWindow/zoom-in-alt1" "<Primary>KP_Add")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-descending" "")
|
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/toggle-sort-order" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/toggle-sort-order" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarBookmarks/1efb7301331245696f8b8006eeaa6a35" "")
|
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/open-in-new-window" "<Primary><Shift>o")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/open-in-new-window" "<Primary><Shift>o")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/view-configure-toolbar" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/view-configure-toolbar" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/view-location-selector-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/view-location-selector-menu" "")
|
||||||
|
@ -106,11 +103,11 @@
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/new-window" "<Primary>n")
|
; (gtk_accel_path "<Actions>/ThunarWindow/new-window" "<Primary>n")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/forward" "<Alt>Right")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/forward" "<Alt>Right")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/redo" "<Primary><Shift>z")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/redo" "<Primary><Shift>z")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-dtime" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-descending" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/file-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/file-menu" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/make-link" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/make-link" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarActionManager/delete-2" "<Shift>Delete")
|
; (gtk_accel_path "<Actions>/ThunarActionManager/delete-2" "<Shift>Delete")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/new-tab" "<Primary>t")
|
(gtk_accel_path "<Actions>/ThunarWindow/new-tab" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarWindow/go-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarWindow/go-menu" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-size" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/sort-by-size" "")
|
||||||
; (gtk_accel_path "<Actions>/ThunarStandardView/arrange-items-menu" "")
|
; (gtk_accel_path "<Actions>/ThunarStandardView/arrange-items-menu" "")
|
||||||
|
|
Binary file not shown.
|
@ -1 +1 @@
|
||||||
Subproject commit fca3335489bdbab4cce150cb440d3559ff5400e2
|
Subproject commit b1abdd54ba655ef34f75a568d78625981bf1722c
|
|
@ -1,37 +1 @@
|
||||||
{
|
{}
|
||||||
"com.github.lighttigerxiv.ulauncher-terminal-runner-extension": {
|
|
||||||
"id": "com.github.lighttigerxiv.ulauncher-terminal-runner-extension",
|
|
||||||
"url": "https://github.com/lighttigerXIV/ulauncher-terminal-runner-extension/",
|
|
||||||
"updated_at": "2022-07-13T19:01:25.636039",
|
|
||||||
"last_commit": "8cbcf85e8b3a48a45d2d181488af6e5d89bff1b0",
|
|
||||||
"last_commit_time": "2022-05-22T12:33:25"
|
|
||||||
},
|
|
||||||
"com.github.ulauncher.ulauncher-emoji": {
|
|
||||||
"id": "com.github.ulauncher.ulauncher-emoji",
|
|
||||||
"url": "https://github.com/Ulauncher/ulauncher-emoji",
|
|
||||||
"updated_at": "2022-07-13T19:12:21.718990",
|
|
||||||
"last_commit": "4c6af50d1c9a24d5aad2c597634ff0c634972a5c",
|
|
||||||
"last_commit_time": "2021-08-08T19:19:59"
|
|
||||||
},
|
|
||||||
"com.github.isacikgoz.ukill": {
|
|
||||||
"id": "com.github.isacikgoz.ukill",
|
|
||||||
"url": "https://github.com/isacikgoz/ukill",
|
|
||||||
"updated_at": "2022-07-13T19:12:25.910851",
|
|
||||||
"last_commit": "bc50d9f41d46b6813a5aeebddd15734dcdb9d8db",
|
|
||||||
"last_commit_time": "2019-05-28T18:30:00"
|
|
||||||
},
|
|
||||||
"com.github.fajtak.ulauncher-weather": {
|
|
||||||
"id": "com.github.fajtak.ulauncher-weather",
|
|
||||||
"url": "https://github.com/fajtak/ulauncher-weather",
|
|
||||||
"updated_at": "2022-07-13T19:12:47.563579",
|
|
||||||
"last_commit": "996da704e505776753f6340755d20f03075c2be8",
|
|
||||||
"last_commit_time": "2022-04-05T18:23:30"
|
|
||||||
},
|
|
||||||
"com.github.ulauncher.ulauncher-timer": {
|
|
||||||
"id": "com.github.ulauncher.ulauncher-timer",
|
|
||||||
"url": "https://github.com/Ulauncher/ulauncher-timer",
|
|
||||||
"updated_at": "2024-02-01T13:47:26.735390",
|
|
||||||
"last_commit": "2d3fe82fe1e38670e6eb8887cd2a4b4d1c2baa79",
|
|
||||||
"last_commit_time": "2023-03-25T08:07:41"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,22 +1 @@
|
||||||
{
|
{}
|
||||||
"7638bfb0-7394-4c45-a410-328d5656bd8a": {
|
|
||||||
"id": "7638bfb0-7394-4c45-a410-328d5656bd8a",
|
|
||||||
"name": "Wikipedia",
|
|
||||||
"keyword": "wiki",
|
|
||||||
"cmd": "https://en.wikipedia.org/wiki/%s",
|
|
||||||
"icon": "/usr/share/ulauncher/media/wikipedia-icon.png",
|
|
||||||
"is_default_search": true,
|
|
||||||
"run_without_argument": false,
|
|
||||||
"added": 1657728435.1251569
|
|
||||||
},
|
|
||||||
"c55e92ac-ebf6-4a62-a6cb-5a44be27634a": {
|
|
||||||
"id": "c55e92ac-ebf6-4a62-a6cb-5a44be27634a",
|
|
||||||
"name": "deno",
|
|
||||||
"keyword": "=",
|
|
||||||
"cmd": "#!/usr/bin/env sh\n\nkitty deno repl\n\n#CODE=\"console.log($@);\"\n#kitty deno repl --eval \"$CODE\"",
|
|
||||||
"icon": null,
|
|
||||||
"is_default_search": false,
|
|
||||||
"run_without_argument": false,
|
|
||||||
"added": 1657728813.5875454
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 4c82a2eedf0c43d47601ffa8b0303ed1326fab8f
|
Subproject commit f6cd6a776993b584f4abbdd204c6e4011b7d2f93
|
|
@ -1 +1 @@
|
||||||
Subproject commit 978e79e12c44b5b1d3e1e2920c537002087b82c2
|
Subproject commit 10dd51ded39e1068681e08aa0083233fae985896
|
|
@ -1 +1 @@
|
||||||
Subproject commit bde5ca4c2aa6e0c52dd7f15cf216dffdb1ec788c
|
Subproject commit d71edb83f9c7f045a0d528eeff3445ec3d518d71
|
11
src/update_submodules
Executable file
11
src/update_submodules
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
cd "$(dirname "$(realpath "$0")")"
|
||||||
|
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
cat .gitmodules | grep 'path = ' | cut -d '=' -f 2- | while read module_path
|
||||||
|
do
|
||||||
|
echo "[update_submodules] updating '$module_path'"
|
||||||
|
( cd "$module_path" ; git pull origin master || git pull origin main; )
|
||||||
|
done
|
Loading…
Add table
Add a link
Reference in a new issue