Compare commits

..

5 Commits

Author SHA1 Message Date
002b7ea59f
programs: add cloc 2023-06-28 12:13:59 -04:00
cc348b5711
fish-fm: sxiv helper function 2023-06-27 16:11:59 -04:00
a1742ca0d2
zathurarc: disable recolor by default 2023-06-27 16:11:28 -04:00
3d4009673a
programs: add more entries 2023-06-27 16:09:07 -04:00
6da824e060
programs: add pyperclip 2023-06-24 19:30:05 -04:00
3 changed files with 22 additions and 1 deletions

View File

@ -41,6 +41,13 @@ pipewire-pulse
# utility
#
which
# in the aur
tmsu
# for qutebrowser copy code block
python-pyperclip
termdown
rsync
unzip
@ -57,6 +64,7 @@ remmina
python-pynvim
xorg-xinput
neofetch
cloc
aerc
# use w3m for aerc and disallow network
@ -104,6 +112,9 @@ ansible
# for personal website compilation
lowdown
# for lobster.sh
html-xml-utils
#
# for new systems
#

View File

@ -1,6 +1,6 @@
set recolor-darkcolor "#ffffff"
set recolor-lightcolor "#000000"
set recolor true
# set recolor true
set default-bg "#000000ff"
set index-bg "#000000"

View File

@ -41,3 +41,13 @@ function sel
end
exit
end
# use sxiv to select pictures
# see its man page about marking
# 'm' marks a single picture
function ssel
set res (sxiv -to $argv)
if test -n "$res"
sel $res
end
end