Compare commits
No commits in common. "d85aa7f7298fc09aad5888969ae8e9eb475828e7" and "9fcc33f76cdf830b0baeec2d5042f69c6ea7f023" have entirely different histories.
d85aa7f729
...
9fcc33f76c
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -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
|
|
||||||
|
2
programs
2
programs
@ -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
|
||||||
|
@ -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
|
|
@ -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
|
|
9
src/.local/bin/inkscape-shortcut-manager
Executable file
9
src/.local/bin/inkscape-shortcut-manager
Executable 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
|
@ -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
|
|
Loading…
x
Reference in New Issue
Block a user