Compare commits

..

No commits in common. "d85aa7f7298fc09aad5888969ae8e9eb475828e7" and "9fcc33f76cdf830b0baeec2d5042f69c6ea7f023" have entirely different histories.

6 changed files with 10 additions and 25 deletions

3
.gitmodules vendored
View File

@ -4,6 +4,3 @@
[submodule "src/.local/bin/pyinstantref"] [submodule "src/.local/bin/pyinstantref"]
path = src/.local/bin/pyinstantref path = src/.local/bin/pyinstantref
url = https://github.com/dogeystamp/pyinstantref url = https://github.com/dogeystamp/pyinstantref
[submodule "src/.local/bin/inkscape-shortcut-manager"]
path = src/.local/bin/inkscape-shortcut-manager
url = https://github.com/dogeystamp/inkscape-shortcut-manager

View File

@ -43,7 +43,6 @@ pipewire-pulse
# #
# utility # utility
# #
speedtest-cli
obs-studio obs-studio
dosfstools dosfstools
which which
@ -123,7 +122,6 @@ xsel
# inkscape shortcut manager # inkscape shortcut manager
python-xlib python-xlib
pdf2svg
chromium chromium
cargo cargo

View File

@ -1,10 +0,0 @@
main:
# ctrl-enter is broken for me and idk why
'Ctrl+u': add_newline
visual:
# just to emphasize that these binds do exist by default 🐸
'h': clear
'k': select_prev
'j': select_next
'l': confirm

View File

@ -7,7 +7,7 @@ function EditFig()
let figure_fname = expand('<cfile>') let figure_fname = expand('<cfile>')
exec "silent !typst-figure " .. figure_fname exec "silent !typst-figure " .. figure_fname
vsp vsp
exec "term inkscape-shortcut-single" exec "term inkscape-shortcut-manager"
quit quit
endfunc endfunc

@ -1 +0,0 @@
Subproject commit 6e8db1e3feb4439a5495cc18c425bbfbd6aed40a

View File

@ -0,0 +1,9 @@
#!/bin/sh
# wrapper to have a single instance of inkscape-shortcut-manager running
if ! pgrep -f inkscape-shortcut-manager/main.py; then
# really hacky hardcoding of path here
# https://github.com/dogeystamp/inkscape-shortcut-manager
# clone this and point to its main.py
python3 ~/dox/proj/inkscape-shortcut-manager/main.py
fi

View File

@ -1,8 +0,0 @@
#!/bin/sh
# hacky wrapper to have a single instance of inkscape-shortcut-manager running
if ! pgrep -u "$USER" -f inkscape-shortcut-manager/main.py; then
# https://github.com/dogeystamp/inkscape-shortcut-manager
# clone this and point to its main.py
python3 ~/.local/bin/inkscape-shortcut-manager/main.py
fi