Compare commits
5 Commits
9fcc33f76c
...
d85aa7f729
Author | SHA1 | Date | |
---|---|---|---|
d85aa7f729 | |||
e8b9712d59 | |||
c70fc2ecda | |||
49e7178980 | |||
d2c8b4fa60 |
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -4,3 +4,6 @@
|
||||
[submodule "src/.local/bin/pyinstantref"]
|
||||
path = src/.local/bin/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,6 +43,7 @@ pipewire-pulse
|
||||
#
|
||||
# utility
|
||||
#
|
||||
speedtest-cli
|
||||
obs-studio
|
||||
dosfstools
|
||||
which
|
||||
@ -122,6 +123,7 @@ xsel
|
||||
|
||||
# inkscape shortcut manager
|
||||
python-xlib
|
||||
pdf2svg
|
||||
|
||||
chromium
|
||||
cargo
|
||||
|
10
src/.config/gomuks/keybindings.yaml
Normal file
10
src/.config/gomuks/keybindings.yaml
Normal file
@ -0,0 +1,10 @@
|
||||
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>')
|
||||
exec "silent !typst-figure " .. figure_fname
|
||||
vsp
|
||||
exec "term inkscape-shortcut-manager"
|
||||
exec "term inkscape-shortcut-single"
|
||||
quit
|
||||
endfunc
|
||||
|
||||
|
@ -1,9 +0,0 @@
|
||||
#!/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
src/.local/bin/inkscape-shortcut-manager
Submodule
1
src/.local/bin/inkscape-shortcut-manager
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 6e8db1e3feb4439a5495cc18c425bbfbd6aed40a
|
8
src/.local/bin/inkscape-shortcut-single
Executable file
8
src/.local/bin/inkscape-shortcut-single
Executable file
@ -0,0 +1,8 @@
|
||||
#!/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