Changes before laptop nuke
This commit is contained in:
parent
b6377ee119
commit
cc134086cb
17 changed files with 273 additions and 95 deletions
|
|
@ -24,3 +24,10 @@ todo: move vimwiki out of this repo, configure so that home has a /wiki and a /b
|
||||||
Notes on fish:
|
Notes on fish:
|
||||||
After stowing fish, should be good to run:
|
After stowing fish, should be good to run:
|
||||||
`curl -L https://get.oh-my.fish | fish`
|
`curl -L https://get.oh-my.fish | fish`
|
||||||
|
|
||||||
|
# Other things that need to be installed manually
|
||||||
|
st
|
||||||
|
dmenu
|
||||||
|
lf
|
||||||
|
fzf (sbopkg version still not good?)
|
||||||
|
|
||||||
|
|
|
||||||
15
dotfiles/bin/scripts/gapcycle
Executable file
15
dotfiles/bin/scripts/gapcycle
Executable file
|
|
@ -0,0 +1,15 @@
|
||||||
|
#!/usr/bin/fish
|
||||||
|
|
||||||
|
set gap (bspc config window_gap)
|
||||||
|
|
||||||
|
if [ $gap = 40 ]
|
||||||
|
set new_gap 18
|
||||||
|
else if [ $gap = 18 ]
|
||||||
|
set new_gap 12
|
||||||
|
else if [ $gap = 12 ]
|
||||||
|
set new_gap 0
|
||||||
|
else if [ $gap = 0 ]
|
||||||
|
set new_gap 40
|
||||||
|
end
|
||||||
|
|
||||||
|
bspc config window_gap $new_gap
|
||||||
7
dotfiles/bin/scripts/languagecycle
Executable file
7
dotfiles/bin/scripts/languagecycle
Executable file
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/usr/bin/fish
|
||||||
|
|
||||||
|
if [ (xkblayout-state print "%n") = "Russian" ]
|
||||||
|
setxkbmap -layout us
|
||||||
|
else
|
||||||
|
setxkbmap -layout ru
|
||||||
|
end
|
||||||
37
dotfiles/bin/scripts/layoutcycle
Executable file
37
dotfiles/bin/scripts/layoutcycle
Executable file
|
|
@ -0,0 +1,37 @@
|
||||||
|
#!/usr/bin/fish
|
||||||
|
|
||||||
|
bsp-layout next --layouts tall,grid,rgrid,tiled
|
||||||
|
|
||||||
|
set layout (bsp-layout get)
|
||||||
|
|
||||||
|
if ps -aux | grep layoutcycle | grep -v grep
|
||||||
|
exit
|
||||||
|
else if [ $layout = "tall" ]
|
||||||
|
notify-send -t 1000 "Layout: Tall" (echo \
|
||||||
|
" ______________ \n" \
|
||||||
|
" | |____| \n" \
|
||||||
|
" | |____| \n" \
|
||||||
|
" | |____| \n" \
|
||||||
|
" |________|____| " )
|
||||||
|
else if [ $layout = "grid" ]
|
||||||
|
notify-send -t 1000 "Layout: hGrid" (echo \
|
||||||
|
" ____________ \n" \
|
||||||
|
" | | | | \n" \
|
||||||
|
" |___|___|___| \n" \
|
||||||
|
" | | | | \n" \
|
||||||
|
" |___|___|___| " )
|
||||||
|
else if [ $layout = "rgrid" ]
|
||||||
|
vgrid
|
||||||
|
notify-send -t 1000 "Layout: vGrid" (echo \
|
||||||
|
" ____________ \n" \
|
||||||
|
" |_____|_____| \n" \
|
||||||
|
" |_____|_____| \n" \
|
||||||
|
" |_____|_____| " )
|
||||||
|
else if [ $layout = "tiled" ]
|
||||||
|
notify-send -t 1000 "Layout: Tiled" (echo \
|
||||||
|
" ______________ \n" \
|
||||||
|
" | | | \n" \
|
||||||
|
" | |____| \n" \
|
||||||
|
" | | | | \n" \
|
||||||
|
" |________|__|_| " )
|
||||||
|
end
|
||||||
|
|
@ -28,3 +28,4 @@ bspc config gapless_monocle true
|
||||||
|
|
||||||
lemonlaunch &
|
lemonlaunch &
|
||||||
xsetroot -cursor_name left_ptr &
|
xsetroot -cursor_name left_ptr &
|
||||||
|
notify-send "thots" "$(fortune)" -c 15
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@ set EDITOR vim
|
||||||
set PAGER bat
|
set PAGER bat
|
||||||
set BROWSER firefox
|
set BROWSER firefox
|
||||||
|
|
||||||
if status --is-interactive
|
# if status --is-interactive
|
||||||
set BASE16_SHELL "$HOME/.config/base16-shell/"
|
# set BASE16_SHELL "$HOME/.config/base16-shell/"
|
||||||
source "$BASE16_SHELL/profile_helper.fish"
|
# source "$BASE16_SHELL/profile_helper.fish"
|
||||||
end
|
# end
|
||||||
|
|
||||||
begin
|
begin
|
||||||
set --local AUTOJUMP_PATH $HOME/.config/fish/functions/autojump.fish
|
set --local AUTOJUMP_PATH $HOME/.config/fish/functions/autojump.fish
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# This file contains fish universal variable definitions.
|
# This file contains fish universal variable definitions.
|
||||||
# VERSION: 3.0
|
# VERSION: 3.0
|
||||||
SETUVAR __fish_initialized:3100
|
SETUVAR __fish_initialized:3400
|
||||||
SETUVAR _fish_abbr_mux:tmuxinator
|
SETUVAR _fish_abbr_mux:tmuxinator
|
||||||
SETUVAR _fisher_jorgebucaran_2F_fisher_files:/Users/iankeane/\x2econfig/fish/functions/fisher\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/fisher\x2efish
|
SETUVAR _fisher_jorgebucaran_2F_fisher_files:/Users/iankeane/\x2econfig/fish/functions/fisher\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/fisher\x2efish
|
||||||
SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:/Users/iankeane/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_list\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/nvm\x2efish
|
SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:/Users/iankeane/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_list\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e/Users/iankeane/\x2econfig/fish/functions/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e/Users/iankeane/\x2econfig/fish/completions/nvm\x2efish
|
||||||
|
|
@ -32,6 +32,7 @@ SETUVAR fish_pager_color_completion:\x1d
|
||||||
SETUVAR fish_pager_color_description:B3A06D\x1eyellow
|
SETUVAR fish_pager_color_description:B3A06D\x1eyellow
|
||||||
SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||||
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
||||||
SETUVAR fish_user_paths:/Users/iankeane/\x2elocal/bin\x1e/Users/iankeane/\x2egem/ruby/3\x2e1\x2e0/bin\x1e/usr/local/Cellar/ruby/3\x2e1\x2e2/bin
|
SETUVAR fish_pager_color_selected_background:\x2dr
|
||||||
|
SETUVAR fish_user_paths:/home/green/scripts\x1e/home/green/\x2elocal/bin\x1e/home/green/\x2ecargo/bin\x1e/usr/games\x1e/Users/iankeane/\x2elocal/bin\x1e/Users/iankeane/\x2egem/ruby/3\x2e1\x2e0/bin\x1e/usr/local/Cellar/ruby/3\x2e1\x2e2/bin
|
||||||
SETUVAR nvm_data:/Users/iankeane/\x2elocal/share/nvm
|
SETUVAR nvm_data:/Users/iankeane/\x2elocal/share/nvm
|
||||||
SETUVAR nvm_mirror:https\x3a//nodejs\x2eorg/dist
|
SETUVAR nvm_mirror:https\x3a//nodejs\x2eorg/dist
|
||||||
|
|
|
||||||
3
dotfiles/fish/.config/fish/functions/dunsttest.fish
Normal file
3
dotfiles/fish/.config/fish/functions/dunsttest.fish
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
function dunsttest --wraps='notify-send -u low "test" && notify-send -u normal "test" && notify-send -u critical "test"' --description 'alias dunsttest notify-send -u low "test" && notify-send -u normal "test" && notify-send -u critical "test"'
|
||||||
|
notify-send -u low "test" && notify-send -u normal "test" && notify-send -u critical "test" $argv;
|
||||||
|
end
|
||||||
3
dotfiles/fish/.config/fish/functions/vim.fish
Normal file
3
dotfiles/fish/.config/fish/functions/vim.fish
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
function vim --wraps=nvim --description 'alias vim nvim'
|
||||||
|
nvim $argv;
|
||||||
|
end
|
||||||
|
|
@ -15,7 +15,7 @@ hook = "pkill dunst"
|
||||||
|
|
||||||
|
|
||||||
[[items]]
|
[[items]]
|
||||||
file = "~/.local/bin/lemonlaunch"
|
file = "~/scripts/lemonlaunch"
|
||||||
template = "lemonlaunch"
|
template = "lemonlaunch"
|
||||||
rewrite = true
|
rewrite = true
|
||||||
hook = "lemonlaunch &"
|
hook = "lemonlaunch &"
|
||||||
|
|
@ -58,7 +58,7 @@ end = "-- end flavours"
|
||||||
hook = "echo 'loaded'"
|
hook = "echo 'loaded'"
|
||||||
|
|
||||||
[[items]]
|
[[items]]
|
||||||
file = "~/.local/bin/dmenu_run_top"
|
file = "~/scripts/dmenu_run_top"
|
||||||
template = "dmenu_run_top"
|
template = "dmenu_run_top"
|
||||||
rewrite = false
|
rewrite = false
|
||||||
start = "# start flavours"
|
start = "# start flavours"
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
frame_color = "#{{base05-hex}}"
|
frame_color = "#{{base01-hex}}"
|
||||||
separator_color = "#{{base05-hex}}"
|
separator_color = "#{{base05-hex}}"
|
||||||
|
|
||||||
[urgency_low]
|
[urgency_low]
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
require('base16-colorscheme').setup({
|
require('base16-colorscheme').setup({
|
||||||
base00 = '#{{base01-hex}}',
|
base00 = '#{{base00-hex}}',
|
||||||
base01 = '#{{base02-hex}}',
|
base01 = '#{{base01-hex}}',
|
||||||
base02 = '#{{base03-hex}}',
|
base02 = '#{{base02-hex}}',
|
||||||
base03 = '#{{base04-hex}}',
|
base03 = '#{{base03-hex}}',
|
||||||
base04 = '#{{base05-hex}}',
|
base04 = '#{{base04-hex}}',
|
||||||
base05 = '#{{base06-hex}}',
|
base05 = '#{{base05-hex}}',
|
||||||
base06 = '#{{base07-hex}}',
|
base06 = '#{{base06-hex}}',
|
||||||
base07 = '#{{base08-hex}}',
|
base07 = '#{{base07-hex}}',
|
||||||
base08 = '#{{base09-hex}}',
|
base08 = '#{{base08-hex}}',
|
||||||
base09 = '#{{base0A-hex}}',
|
base09 = '#{{base09-hex}}',
|
||||||
base0A = '#{{base0B-hex}}',
|
base0A = '#{{base0A-hex}}',
|
||||||
base0B = '#{{base0C-hex}}',
|
base0B = '#{{base0B-hex}}',
|
||||||
base0C = '#{{base0D-hex}}',
|
base0C = '#{{base0C-hex}}',
|
||||||
base0D = '#{{base0E-hex}}',
|
base0D = '#{{base0D-hex}}',
|
||||||
base0E = '#{{base0F-hex}}',
|
base0E = '#{{base0E-hex}}',
|
||||||
base0F = '#{{base0G-hex}}'
|
base0F = '#{{base0F-hex}}'
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
# start flavours
|
# start flavours
|
||||||
set norm_bg "#41323f"
|
set norm_bg "#343D46"
|
||||||
set norm_fg "#b9b6b0"
|
set norm_fg "#CDD3DE"
|
||||||
set sel_bg "#48b685"
|
set sel_bg "#99C794"
|
||||||
set sel_fg "#41323f"
|
set sel_fg "#343D46"
|
||||||
# end flavours
|
# end flavours
|
||||||
|
|
||||||
# terminal emulator
|
# terminal emulator
|
||||||
|
|
@ -157,10 +157,10 @@ super + d
|
||||||
dmenu_run_top
|
dmenu_run_top
|
||||||
|
|
||||||
super + w
|
super + w
|
||||||
bspc config window_gap 0
|
gapcycle
|
||||||
|
|
||||||
super + shift + w
|
super + shift + w
|
||||||
bspc config window_gap 12
|
layoutcycle && sleep .1
|
||||||
|
|
||||||
super + m
|
super + m
|
||||||
{bspc rule -a \* -o state=floating && st -e ncmpcpp}
|
{bspc rule -a \* -o state=floating && st -e ncmpcpp}
|
||||||
|
|
@ -179,11 +179,11 @@ super + c
|
||||||
{bspc rule -a \* -o state=floating && st -e calcurse -D ~/.config/calcurse }
|
{bspc rule -a \* -o state=floating && st -e calcurse -D ~/.config/calcurse }
|
||||||
|
|
||||||
# Increase/descrease gap size
|
# Increase/descrease gap size
|
||||||
super + z
|
# super + z
|
||||||
bspc config window_gap $(($(bspc config window_gap) - 3))
|
# bspc config window_gap $(($(bspc config window_gap) - 3))
|
||||||
|
|
||||||
super + shift + z
|
# super + shift + z
|
||||||
bspc config window_gap $(($(bspc config window_gap) + 3))
|
# bspc config window_gap $(($(bspc config window_gap) + 3))
|
||||||
|
|
||||||
super + r
|
super + r
|
||||||
{bspc rule -a \* -o state=floating && st -e ranger}
|
{bspc rule -a \* -o state=floating && st -e ranger}
|
||||||
|
|
@ -192,9 +192,6 @@ super + b
|
||||||
exec qutebrowser
|
exec qutebrowser
|
||||||
|
|
||||||
super + x
|
super + x
|
||||||
setxkbmap -layout us
|
languagecycle
|
||||||
|
|
||||||
super + shift + x
|
|
||||||
setxkbmap -layout ru
|
|
||||||
|
|
||||||
# After quitting bar, reset spaces: bspc config top_padding 0 or bottom_padding
|
# After quitting bar, reset spaces: bspc config top_padding 0 or bottom_padding
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
# Use the command 'task show' to see all defaults and overrides
|
# Use the command 'task show' to see all defaults and overrides
|
||||||
|
|
||||||
# Files
|
# Files
|
||||||
data.location=/Users/iankeane/.task
|
data.location=/home/green/.task
|
||||||
|
|
||||||
# To use the default location of the XDG directories,
|
# To use the default location of the XDG directories,
|
||||||
# move this configuration file from ~/.taskrc to ~/.config/task/taskrc and uncomment below
|
# move this configuration file from ~/.taskrc to ~/.config/task/taskrc and uncomment below
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
#picom &
|
#picom &
|
||||||
|
|
||||||
|
#.screenlayout/desktop_ultrawide.sh
|
||||||
xss-lock i3lock-fancy &
|
xss-lock i3lock-fancy &
|
||||||
ntpdate pool.ntp.org
|
ntpdate pool.ntp.org
|
||||||
xrdb .Xresources &
|
xrdb .Xresources &
|
||||||
|
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
||||||
# sbopkg
|
|
||||||
# Generate queuefile with `sqg -p <this_list>`
|
|
||||||
autojump
|
|
||||||
bspwm?
|
|
||||||
bat
|
|
||||||
calcurse
|
|
||||||
dtrx
|
|
||||||
fd
|
|
||||||
feh
|
|
||||||
fish
|
|
||||||
i3lock-fancy
|
|
||||||
lemonbar-xft
|
|
||||||
lutris
|
|
||||||
mpd
|
|
||||||
mpv
|
|
||||||
ncdu
|
|
||||||
ncmpcpp
|
|
||||||
neovim
|
|
||||||
neovim-remote
|
|
||||||
newsboat
|
|
||||||
nim
|
|
||||||
noto-emoji
|
|
||||||
picom
|
|
||||||
pipewire-native-jack
|
|
||||||
qutebrowser
|
|
||||||
ranger
|
|
||||||
ripgrep
|
|
||||||
rtorrent
|
|
||||||
rustup
|
|
||||||
sbcl
|
|
||||||
screenfetch
|
|
||||||
scrot
|
|
||||||
stow
|
|
||||||
sxhkd
|
|
||||||
sxiv
|
|
||||||
task
|
|
||||||
tree-sitter
|
|
||||||
unicode-character-database
|
|
||||||
xclip
|
|
||||||
xss-lock
|
|
||||||
youtube-dl
|
|
||||||
zathura-djvu
|
|
||||||
|
|
||||||
|
|
||||||
# Other things that need to be installed manually
|
|
||||||
st
|
|
||||||
dmenu
|
|
||||||
lf
|
|
||||||
fzf (sbopkg version still not good?)
|
|
||||||
|
|
||||||
156
warez.sqg
Normal file
156
warez.sqg
Normal file
|
|
@ -0,0 +1,156 @@
|
||||||
|
BeautifulSoup4
|
||||||
|
FontAwesome
|
||||||
|
apsw
|
||||||
|
arandr
|
||||||
|
atomicwrites
|
||||||
|
autojump
|
||||||
|
avahi
|
||||||
|
awscli
|
||||||
|
bat
|
||||||
|
bcdoc
|
||||||
|
bluez-alsa
|
||||||
|
bombadillo
|
||||||
|
botocore
|
||||||
|
btop
|
||||||
|
bubblewrap
|
||||||
|
caffeine-ng
|
||||||
|
calcurse
|
||||||
|
colorama
|
||||||
|
confuse
|
||||||
|
dmenu
|
||||||
|
dnstop
|
||||||
|
docopt
|
||||||
|
dtrx
|
||||||
|
dunst
|
||||||
|
dzen2
|
||||||
|
fd
|
||||||
|
feh
|
||||||
|
fish
|
||||||
|
fmt
|
||||||
|
fontforge
|
||||||
|
fortune-slackware
|
||||||
|
funcsigs
|
||||||
|
functools-lru-cache
|
||||||
|
geoclue2
|
||||||
|
giblib
|
||||||
|
girara
|
||||||
|
gnome-desktop
|
||||||
|
google-go-lang
|
||||||
|
greenlet
|
||||||
|
html5lib
|
||||||
|
imlib2
|
||||||
|
jmespath
|
||||||
|
lemonbar-xft
|
||||||
|
libass
|
||||||
|
libcbor
|
||||||
|
libconfig
|
||||||
|
libdaemon
|
||||||
|
libev
|
||||||
|
libfido2
|
||||||
|
libmpdclient
|
||||||
|
libplacebo
|
||||||
|
libtermkey
|
||||||
|
libtorrent
|
||||||
|
libtorrent-rasterbar
|
||||||
|
libvterm
|
||||||
|
libwpe
|
||||||
|
light
|
||||||
|
llfuse
|
||||||
|
lua
|
||||||
|
lua-lpeg
|
||||||
|
lua-luv
|
||||||
|
lua-mpack
|
||||||
|
lua53
|
||||||
|
luajit
|
||||||
|
lutris
|
||||||
|
lxml
|
||||||
|
more-itertools
|
||||||
|
mpd
|
||||||
|
mpv
|
||||||
|
msgpack-c
|
||||||
|
msgpack-python
|
||||||
|
mujs
|
||||||
|
ncdu
|
||||||
|
ncmpcpp
|
||||||
|
neovim
|
||||||
|
neovim-remote
|
||||||
|
newsboat
|
||||||
|
nim
|
||||||
|
noto-emoji
|
||||||
|
password-store
|
||||||
|
pathlib2
|
||||||
|
picom
|
||||||
|
pipewire-native-jack
|
||||||
|
pluggy
|
||||||
|
portaudio
|
||||||
|
psutil
|
||||||
|
py
|
||||||
|
pyOpenSSL
|
||||||
|
pyasn1
|
||||||
|
pyewmh
|
||||||
|
pytest
|
||||||
|
pytest-runner
|
||||||
|
python-magic
|
||||||
|
python-neovim
|
||||||
|
python-xlib
|
||||||
|
python2-BeautifulSoup4
|
||||||
|
python2-attrs
|
||||||
|
python2-scandir
|
||||||
|
python2-setuptools-scm
|
||||||
|
python2-soupsieve
|
||||||
|
python3-PyQtWebEngine
|
||||||
|
python3-dateutil
|
||||||
|
python3-defusedxml
|
||||||
|
python3-dugong
|
||||||
|
python3-pycrypto
|
||||||
|
python3-rsa
|
||||||
|
python3-soupsieve
|
||||||
|
python3-webencodings
|
||||||
|
qutebrowser
|
||||||
|
ranger
|
||||||
|
rencode
|
||||||
|
ripgrep
|
||||||
|
rtorrent
|
||||||
|
rustup
|
||||||
|
s3ql
|
||||||
|
s3transfer
|
||||||
|
sbcl
|
||||||
|
screenfetch
|
||||||
|
scrot
|
||||||
|
setconf
|
||||||
|
setproctitle
|
||||||
|
signal-desktop
|
||||||
|
sphinx
|
||||||
|
stalonetray
|
||||||
|
stfl
|
||||||
|
stow
|
||||||
|
sutils
|
||||||
|
sxhkd
|
||||||
|
sxiv
|
||||||
|
symbola-font-ttf
|
||||||
|
syncthing
|
||||||
|
task
|
||||||
|
telegram
|
||||||
|
tree-sitter
|
||||||
|
trollius
|
||||||
|
unibilium
|
||||||
|
unicode-character-database
|
||||||
|
unrar
|
||||||
|
uthash
|
||||||
|
webkit2gtk
|
||||||
|
wheel
|
||||||
|
wine
|
||||||
|
wireplumber
|
||||||
|
wpebackend-fdo
|
||||||
|
xcb-util-xrm
|
||||||
|
xclip
|
||||||
|
xdg-dbus-proxy
|
||||||
|
xdo
|
||||||
|
xkblayout-state
|
||||||
|
xss-lock
|
||||||
|
xtitle
|
||||||
|
yajl
|
||||||
|
youtube-dl
|
||||||
|
zathura
|
||||||
|
zathura-cb
|
||||||
|
zathura-djvu
|
||||||
Loading…
Add table
Add a link
Reference in a new issue