Compare commits

...

2 Commits

Author SHA1 Message Date
c0827c076c
programs: more programs
programs-python: added
2023-06-30 18:48:01 -04:00
5ac55ecc39
qutebrowser: escape dismisses messages 2023-06-28 19:27:56 -04:00
3 changed files with 22 additions and 3 deletions

View File

@ -41,6 +41,7 @@ pipewire-pulse
# utility # utility
# #
which which
dnsutils
# in the aur # in the aur
tmsu tmsu
@ -115,6 +116,22 @@ lowdown
# for lobster.sh # for lobster.sh
html-xml-utils html-xml-utils
# for general compiling from source
cmake
ninja
fakeroot
autoconf
automake
bison
flex
gcc
libtool
m4
make
patch
pkgconf
texinfo
# #
# for new systems # for new systems
# #
@ -127,10 +144,7 @@ xorg-xinit
man man
# for compiling suckless utilities # for compiling suckless utilities
make
freetype2 freetype2
pkgconf
gcc
# #
# personal # personal

2
programs-python Normal file
View File

@ -0,0 +1,2 @@
termdown
animdl

View File

@ -116,6 +116,9 @@ config.bind("ct", "hint title userscript code_select.py")
config.bind(",fl", "hint links userscript fixlink.sh") config.bind(",fl", "hint links userscript fixlink.sh")
config.bind(",fL", "hint links userscript fixlink-tab.sh") config.bind(",fL", "hint links userscript fixlink-tab.sh")
# dismiss on-screen messages
config.bind("<escape>", "clear-messages")
# homegrown file selector # homegrown file selector
c.fileselect.handler = "external" c.fileselect.handler = "external"
c.fileselect.multiple_files.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"] c.fileselect.multiple_files.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]