Compare commits

...

5 Commits

Author SHA1 Message Date
fuzzy 8a35b452de first commit 2022-06-02 13:22:01 -05:00
fuzzy ecccbb6366 updates 2022-05-18 10:23:25 -05:00
fuzzy 83d7a74e66 updates 2022-05-14 15:12:31 -05:00
fuzzy 06c007eda7 small changes 2022-04-24 18:17:15 -05:00
fuzzy 920a5afd17 add beets and sxhkd 2022-04-15 22:29:12 -05:00
32 changed files with 1613 additions and 317 deletions

View File

@ -15,3 +15,36 @@ Xcursor.size: 24
Sxiv.background: #181819
Sxiv.foreground: #e2e2e3
Sxiv.font: xft:SF Pro:pixelsize:30
! █▓▒░ scorcerer colors
*.foreground: #c2c2b0
*.background: #222222
*.cursorColor: #c2c2b0
! black
*.color0: #111111
*.color8: #181818
! red
*.color1: #aa4450
*.color9: #ff6a6a
! green
*.color2: #719611
*.color10: #b1d631
! yellow
*.color3: #ff9800
*.color11: #87875f
! blue
*.color4: #6688aa
*.color12: #90b0d1
! magenta
*.color5: #8f6f8f
*.color13: #8181a6
! cyan
*.color6: #528b8b
*.color14: #87ceeb
! white
*.color7: #d3d3d3
*.color15: #c1cdc1
! stylized
*.colorIT: #719611
*.colorBD: #d3d3d3
*.colorUL: #528b8b

View File

@ -40,10 +40,12 @@ xinput set-prop "SteelSeries SteelSeries Rival 300S Gaming Mouse" "Coordinate Tr
xinput set-prop "SteelSeries SteelSeries Rival 300S Gaming Mouse" "libinput Accel Profile Enabled" 0, 1
picom --experimental-backends --backend glx &
xbanish &
mpd &
keepassxc &
redshift &
#wired &
wired &
sxhkd &
xwallpaper --output DP-0 --zoom ~/Pictures/wallpapers/pixelwaterfalljungleleaves.png --output DP-2 --zoom ~/Pictures/wallpapers/cyberfuturecitytower.png &
exec dwm

View File

@ -0,0 +1,16 @@
plugins: chroma fromfilename acousticbrainz ftintitle mbsync scrub fish duplicates bpm discogs fetchart
#badfiles:
#check_on_import: yes
#commands:
# mp3: mp3val -f
# flac: flac --test --warnings-as-errors
# ogg: oggz validate
# m4a: mp3val -f
import:
move: yes
languages: en
chroma:
auto: yes

View File

@ -0,0 +1 @@
{"token": "NLFtydXkLrIDRCFjAjSJwIowksyAVcZPUnzLEQeQ", "secret": "OSvJCDschhTTfnvmKioUoZsvVkOpbqqkBTcjAPSi"}

Binary file not shown.

Binary file not shown.

0
dcal/.local/share/dcal/dcal Executable file → Normal file
View File

0
dmenu/.local/share/dmenu/dmenu Executable file → Normal file
View File

0
dmenu/.local/share/dmenu/dmenu_path Executable file → Normal file
View File

0
dmenu/.local/share/dmenu/dmenu_run Executable file → Normal file
View File

0
dmenu/.local/share/dmenu/stest Executable file → Normal file
View File

View File

@ -0,0 +1,460 @@
function __fish_beet_needs_command
set cmd (commandline -opc)
if test (count $cmd) -eq 1
return 0
end
return 1
end
function __fish_beet_using_command
set cmd (commandline -opc)
set needle (count $cmd)
if test $needle -gt 1
if begin test $argv[1] = $cmd[2];
and not contains -- $cmd[$needle] $FIELDS; end
return 0
end
end
return 1
end
function __fish_beet_use_extra
set cmd (commandline -opc)
set needle (count $cmd)
if test $argv[2] = $cmd[$needle]
return 0
end
return 1
end
set CMDS acousticbrainz completion config dup duplicates fields fingerprint fish ftintitle ? help imp im import ls list mbsync mod modify mv move rm remove scrub stats submit upd up update version write
set FIELDS acoustid_fingerprint: acoustid_id: added: album: album_id: albumartist: albumartist_credit: albumartist_sort: albumdisambig: albumstatus: albumtotal: albumtype: albumtypes: arranger: artist: artist_credit: artist_sort: artpath: asin: bitdepth: bitrate: bpm: catalognum: channels: comments: comp: composer: composer_sort: country: day: disc: discogs_albumid: discogs_artistid: discogs_labelid: disctitle: disctotal: encoder: filesize: format: genre: grouping: id: initial_key: isrc: label: language: length: lyricist: lyrics: mb_albumartistid: mb_albumid: mb_artistid: mb_releasegroupid: mb_releasetrackid: mb_trackid: mb_workid: media: month: mtime: original_day: original_month: original_year: path: r128_album_gain: r128_track_gain: releasegroupdisambig: rg_album_gain: rg_album_peak: rg_track_gain: rg_track_peak: samplerate: script: singleton: style: title: track: trackdisambig: tracktotal: work: work_disambig: year:
# ====== setup basic beet completion =====
complete -c beet -n '__fish_beet_needs_command' -l format-item -f -d 'print with custom format'
complete -c beet -n '__fish_beet_needs_command' -l format-album -f -d 'print with custom format'
complete -c beet -n '__fish_beet_needs_command' -s l -l library -f -r -d 'library database file to use'
complete -c beet -n '__fish_beet_needs_command' -s d -l directory -f -r -d 'destination music directory'
complete -c beet -n '__fish_beet_needs_command' -s v -l verbose -f -d 'print debugging information'
complete -c beet -n '__fish_beet_needs_command' -s c -l config -f -r -d 'path to configuration file'
complete -c beet -n '__fish_beet_needs_command' -s h -l help -f -d 'print this help message and exit'
# ====== setup field completion for subcommands =====
# ------ fieldsetups for acousticbrainz -------
complete -c beet -n '__fish_beet_needs_command' -a acousticbrainz -f -d 'fetch metadata from AcousticBrainz'
complete -c beet -n '__fish_beet_using_command acousticbrainz' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for completion -------
complete -c beet -n '__fish_beet_needs_command' -a completion -f -d 'print shell script that provides command line completion'
complete -c beet -n '__fish_beet_using_command completion' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for config -------
complete -c beet -n '__fish_beet_needs_command' -a config -f -d 'show or edit the user configuration'
complete -c beet -n '__fish_beet_using_command config' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for dup -------
complete -c beet -n '__fish_beet_needs_command' -a dup -f -d 'List duplicate tracks or albums.'
complete -c beet -n '__fish_beet_using_command dup' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for duplicates -------
complete -c beet -n '__fish_beet_needs_command' -a duplicates -f -d 'List duplicate tracks or albums.'
complete -c beet -n '__fish_beet_using_command duplicates' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for fields -------
complete -c beet -n '__fish_beet_needs_command' -a fields -f -d 'show fields available for queries and format strings'
complete -c beet -n '__fish_beet_using_command fields' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for fingerprint -------
complete -c beet -n '__fish_beet_needs_command' -a fingerprint -f -d 'generate fingerprints for items without them'
complete -c beet -n '__fish_beet_using_command fingerprint' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for fish -------
complete -c beet -n '__fish_beet_needs_command' -a fish -f -d 'generate Fish shell tab completions'
complete -c beet -n '__fish_beet_using_command fish' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for ftintitle -------
complete -c beet -n '__fish_beet_needs_command' -a ftintitle -f -d 'move featured artists to the title field'
complete -c beet -n '__fish_beet_using_command ftintitle' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for \? -------
complete -c beet -n '__fish_beet_needs_command' -a \? -f -d 'give detailed help on a specific sub-command'
complete -c beet -n '__fish_beet_using_command \?' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for help -------
complete -c beet -n '__fish_beet_needs_command' -a help -f -d 'give detailed help on a specific sub-command'
complete -c beet -n '__fish_beet_using_command help' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for imp -------
complete -c beet -n '__fish_beet_needs_command' -a imp -f -d 'import new music'
complete -c beet -n '__fish_beet_using_command imp' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for im -------
complete -c beet -n '__fish_beet_needs_command' -a im -f -d 'import new music'
complete -c beet -n '__fish_beet_using_command im' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for import -------
complete -c beet -n '__fish_beet_needs_command' -a import -f -d 'import new music'
complete -c beet -n '__fish_beet_using_command import' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for ls -------
complete -c beet -n '__fish_beet_needs_command' -a ls -f -d 'query the library'
complete -c beet -n '__fish_beet_using_command ls' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for list -------
complete -c beet -n '__fish_beet_needs_command' -a list -f -d 'query the library'
complete -c beet -n '__fish_beet_using_command list' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for mbsync -------
complete -c beet -n '__fish_beet_needs_command' -a mbsync -f -d 'update metadata from musicbrainz'
complete -c beet -n '__fish_beet_using_command mbsync' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for mod -------
complete -c beet -n '__fish_beet_needs_command' -a mod -f -d 'change metadata fields'
complete -c beet -n '__fish_beet_using_command mod' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for modify -------
complete -c beet -n '__fish_beet_needs_command' -a modify -f -d 'change metadata fields'
complete -c beet -n '__fish_beet_using_command modify' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for mv -------
complete -c beet -n '__fish_beet_needs_command' -a mv -f -d 'move or copy items'
complete -c beet -n '__fish_beet_using_command mv' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for move -------
complete -c beet -n '__fish_beet_needs_command' -a move -f -d 'move or copy items'
complete -c beet -n '__fish_beet_using_command move' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for rm -------
complete -c beet -n '__fish_beet_needs_command' -a rm -f -d 'remove matching items from the library'
complete -c beet -n '__fish_beet_using_command rm' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for remove -------
complete -c beet -n '__fish_beet_needs_command' -a remove -f -d 'remove matching items from the library'
complete -c beet -n '__fish_beet_using_command remove' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for scrub -------
complete -c beet -n '__fish_beet_needs_command' -a scrub -f -d 'clean audio tags'
complete -c beet -n '__fish_beet_using_command scrub' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for stats -------
complete -c beet -n '__fish_beet_needs_command' -a stats -f -d 'show statistics about the library or a query'
complete -c beet -n '__fish_beet_using_command stats' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for submit -------
complete -c beet -n '__fish_beet_needs_command' -a submit -f -d 'submit Acoustid fingerprints'
complete -c beet -n '__fish_beet_using_command submit' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for upd -------
complete -c beet -n '__fish_beet_needs_command' -a upd -f -d 'update the library'
complete -c beet -n '__fish_beet_using_command upd' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for up -------
complete -c beet -n '__fish_beet_needs_command' -a up -f -d 'update the library'
complete -c beet -n '__fish_beet_using_command up' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for update -------
complete -c beet -n '__fish_beet_needs_command' -a update -f -d 'update the library'
complete -c beet -n '__fish_beet_using_command update' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for version -------
complete -c beet -n '__fish_beet_needs_command' -a version -f -d 'output version information'
complete -c beet -n '__fish_beet_using_command version' -a '$FIELDS' -f -d 'fieldname'
# ------ fieldsetups for write -------
complete -c beet -n '__fish_beet_needs_command' -a write -f -d 'write tag information to files'
complete -c beet -n '__fish_beet_using_command write' -a '$FIELDS' -f -d 'fieldname'
# ====== completions for acousticbrainz =====
complete -c beet -n '__fish_beet_using_command acousticbrainz' -s f -l force -f -d 're-download data when already present'
complete -c beet -n '__fish_beet_using_command acousticbrainz' -s h -l help -f -d 'print help'
# ====== completions for completion =====
complete -c beet -n '__fish_beet_using_command completion' -s h -l help -f -d 'print help'
# ====== completions for config =====
complete -c beet -n '__fish_beet_using_command config' -s p -l paths -f -d 'show files that configuration was loaded from'
complete -c beet -n '__fish_beet_using_command config' -s e -l edit -f -d 'edit user configuration with $EDITOR'
complete -c beet -n '__fish_beet_using_command config' -s d -l defaults -f -d 'include the default configuration'
complete -c beet -n '__fish_beet_using_command config' -s c -l clear -f -d 'do not redact sensitive fields'
complete -c beet -n '__fish_beet_using_command config' -s h -l help -f -d 'print help'
# ====== completions for dup =====
complete -c beet -n '__fish_beet_using_command dup' -s c -l count -f -d 'show duplicate counts'
complete -c beet -n '__fish_beet_using_command dup' -r -s C -l checksum -f -d 'report duplicates based on arbitrary command'
complete -c beet -n '__fish_beet_using_command dup' -s d -l delete -f -d 'delete items from library and disk'
complete -c beet -n '__fish_beet_using_command dup' -s F -l full -f -d 'show all versions of duplicate tracks or albums'
complete -c beet -n '__fish_beet_using_command dup' -s s -l strict -f -d 'report duplicates only if all attributes are set'
complete -c beet -n '__fish_beet_using_command dup' -r -s k -l key -f -d 'report duplicates based on keys (use multiple times)'
complete -c beet -n '__fish_beet_using_command dup' -s M -l merge -f -d 'merge duplicate items'
complete -c beet -n '__fish_beet_using_command dup' -r -s m -l move -f -d 'move items to dest'
complete -c beet -n '__fish_beet_using_command dup' -r -s o -l copy -f -d 'copy items to dest'
complete -c beet -n '__fish_beet_using_command dup' -r -s t -l tag -f -d "tag matched items with 'k=v' attribute"
complete -c beet -n '__fish_beet_using_command dup' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command dup' -s p -l path -f -d 'print paths for matched items or albums'
complete -c beet -n '__fish_beet_using_command dup' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command dup' -s h -l help -f -d 'print help'
# ====== completions for duplicates =====
complete -c beet -n '__fish_beet_using_command duplicates' -s c -l count -f -d 'show duplicate counts'
complete -c beet -n '__fish_beet_using_command duplicates' -r -s C -l checksum -f -d 'report duplicates based on arbitrary command'
complete -c beet -n '__fish_beet_using_command duplicates' -s d -l delete -f -d 'delete items from library and disk'
complete -c beet -n '__fish_beet_using_command duplicates' -s F -l full -f -d 'show all versions of duplicate tracks or albums'
complete -c beet -n '__fish_beet_using_command duplicates' -s s -l strict -f -d 'report duplicates only if all attributes are set'
complete -c beet -n '__fish_beet_using_command duplicates' -r -s k -l key -f -d 'report duplicates based on keys (use multiple times)'
complete -c beet -n '__fish_beet_using_command duplicates' -s M -l merge -f -d 'merge duplicate items'
complete -c beet -n '__fish_beet_using_command duplicates' -r -s m -l move -f -d 'move items to dest'
complete -c beet -n '__fish_beet_using_command duplicates' -r -s o -l copy -f -d 'copy items to dest'
complete -c beet -n '__fish_beet_using_command duplicates' -r -s t -l tag -f -d "tag matched items with 'k=v' attribute"
complete -c beet -n '__fish_beet_using_command duplicates' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command duplicates' -s p -l path -f -d 'print paths for matched items or albums'
complete -c beet -n '__fish_beet_using_command duplicates' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command duplicates' -s h -l help -f -d 'print help'
# ====== completions for fields =====
complete -c beet -n '__fish_beet_using_command fields' -s h -l help -f -d 'print help'
# ====== completions for fingerprint =====
complete -c beet -n '__fish_beet_using_command fingerprint' -s h -l help -f -d 'print help'
# ====== completions for fish =====
complete -c beet -n '__fish_beet_using_command fish' -s f -l noFields -f -d 'omit album/track field completions'
complete -c beet -n '__fish_beet_using_command fish' -r -s e -l extravalues -f -a 'id path album_id title artist artist_sort artist_credit album albumartist albumartist_sort albumartist_credit genre style discogs_albumid discogs_artistid discogs_labelid lyricist composer composer_sort work mb_workid work_disambig arranger grouping year month day track tracktotal disc disctotal lyrics comments bpm comp mb_trackid mb_albumid mb_artistid mb_albumartistid mb_releasetrackid trackdisambig albumtype albumtypes label acoustid_fingerprint acoustid_id mb_releasegroupid asin isrc catalognum script language country albumstatus media albumdisambig releasegroupdisambig disctitle encoder rg_track_gain rg_track_peak rg_album_gain rg_album_peak r128_track_gain r128_album_gain original_year original_month original_day initial_key length bitrate format samplerate bitdepth channels mtime added singleton filesize id artpath added albumartist albumartist_sort albumartist_credit album genre style discogs_albumid discogs_artistid discogs_labelid year month day disctotal comp mb_albumid mb_albumartistid albumtype albumtypes label mb_releasegroupid asin catalognum script language country albumstatus albumdisambig releasegroupdisambig rg_album_gain rg_album_peak r128_album_gain original_year original_month original_day path albumtotal' -d 'include specified field *values* in completions'
complete -c beet -n '__fish_beet_using_command fish' -s h -l help -f -d 'print help'
# ====== completions for ftintitle =====
complete -c beet -n '__fish_beet_using_command ftintitle' -s d -l drop -f -d 'drop featuring from artists and ignore title update'
complete -c beet -n '__fish_beet_using_command ftintitle' -s h -l help -f -d 'print help'
# ====== completions for \? =====
complete -c beet -n '__fish_beet_using_command \?' -s h -l help -f -d 'print help'
# ====== completions for help =====
complete -c beet -n '__fish_beet_using_command help' -s h -l help -f -d 'print help'
# ====== completions for imp =====
complete -c beet -n '__fish_beet_using_command imp' -s c -l copy -f -d 'copy tracks into library directory (default)'
complete -c beet -n '__fish_beet_using_command imp' -s C -l nocopy -f -d "don't copy tracks (opposite of -c)"
complete -c beet -n '__fish_beet_using_command imp' -s m -l move -f -d 'move tracks into the library (overrides -c)'
complete -c beet -n '__fish_beet_using_command imp' -s w -l write -f -d "write new metadata to files' tags (default)"
complete -c beet -n '__fish_beet_using_command imp' -s W -l nowrite -f -d "don't write metadata (opposite of -w)"
complete -c beet -n '__fish_beet_using_command imp' -s a -l autotag -f -d 'infer tags for imported files (default)'
complete -c beet -n '__fish_beet_using_command imp' -s A -l noautotag -f -d "don't infer tags for imported files (opposite of -a)"
complete -c beet -n '__fish_beet_using_command imp' -s p -l resume -f -d 'resume importing if interrupted'
complete -c beet -n '__fish_beet_using_command imp' -s P -l noresume -f -d 'do not try to resume importing'
complete -c beet -n '__fish_beet_using_command imp' -s q -l quiet -f -d 'never prompt for input: skip albums instead'
complete -c beet -n '__fish_beet_using_command imp' -r -s l -l log -f -d 'file to log untaggable albums for later review'
complete -c beet -n '__fish_beet_using_command imp' -s s -l singletons -f -d 'import individual tracks instead of full albums'
complete -c beet -n '__fish_beet_using_command imp' -s t -l timid -f -d 'always confirm all actions'
complete -c beet -n '__fish_beet_using_command imp' -s L -l library -f -d 'retag items matching a query'
complete -c beet -n '__fish_beet_using_command imp' -s i -l incremental -f -d 'skip already-imported directories'
complete -c beet -n '__fish_beet_using_command imp' -s I -l noincremental -f -d 'do not skip already-imported directories'
complete -c beet -n '__fish_beet_using_command imp' -l from-scratch -f -d 'erase existing metadata before applying new metadata'
complete -c beet -n '__fish_beet_using_command imp' -l flat -f -d 'import an entire tree as a single album'
complete -c beet -n '__fish_beet_using_command imp' -s g -l group-albums -f -d 'group tracks in a folder into separate albums'
complete -c beet -n '__fish_beet_using_command imp' -l pretend -f -d 'just print the files to import'
complete -c beet -n '__fish_beet_using_command imp' -r -s S -l search-id -f -d 'restrict matching to a specific metadata backend ID'
complete -c beet -n '__fish_beet_using_command imp' -r -l set -f -d 'set the given fields to the supplied values'
complete -c beet -n '__fish_beet_using_command imp' -s h -l help -f -d 'print help'
# ====== completions for im =====
complete -c beet -n '__fish_beet_using_command im' -s c -l copy -f -d 'copy tracks into library directory (default)'
complete -c beet -n '__fish_beet_using_command im' -s C -l nocopy -f -d "don't copy tracks (opposite of -c)"
complete -c beet -n '__fish_beet_using_command im' -s m -l move -f -d 'move tracks into the library (overrides -c)'
complete -c beet -n '__fish_beet_using_command im' -s w -l write -f -d "write new metadata to files' tags (default)"
complete -c beet -n '__fish_beet_using_command im' -s W -l nowrite -f -d "don't write metadata (opposite of -w)"
complete -c beet -n '__fish_beet_using_command im' -s a -l autotag -f -d 'infer tags for imported files (default)'
complete -c beet -n '__fish_beet_using_command im' -s A -l noautotag -f -d "don't infer tags for imported files (opposite of -a)"
complete -c beet -n '__fish_beet_using_command im' -s p -l resume -f -d 'resume importing if interrupted'
complete -c beet -n '__fish_beet_using_command im' -s P -l noresume -f -d 'do not try to resume importing'
complete -c beet -n '__fish_beet_using_command im' -s q -l quiet -f -d 'never prompt for input: skip albums instead'
complete -c beet -n '__fish_beet_using_command im' -r -s l -l log -f -d 'file to log untaggable albums for later review'
complete -c beet -n '__fish_beet_using_command im' -s s -l singletons -f -d 'import individual tracks instead of full albums'
complete -c beet -n '__fish_beet_using_command im' -s t -l timid -f -d 'always confirm all actions'
complete -c beet -n '__fish_beet_using_command im' -s L -l library -f -d 'retag items matching a query'
complete -c beet -n '__fish_beet_using_command im' -s i -l incremental -f -d 'skip already-imported directories'
complete -c beet -n '__fish_beet_using_command im' -s I -l noincremental -f -d 'do not skip already-imported directories'
complete -c beet -n '__fish_beet_using_command im' -l from-scratch -f -d 'erase existing metadata before applying new metadata'
complete -c beet -n '__fish_beet_using_command im' -l flat -f -d 'import an entire tree as a single album'
complete -c beet -n '__fish_beet_using_command im' -s g -l group-albums -f -d 'group tracks in a folder into separate albums'
complete -c beet -n '__fish_beet_using_command im' -l pretend -f -d 'just print the files to import'
complete -c beet -n '__fish_beet_using_command im' -r -s S -l search-id -f -d 'restrict matching to a specific metadata backend ID'
complete -c beet -n '__fish_beet_using_command im' -r -l set -f -d 'set the given fields to the supplied values'
complete -c beet -n '__fish_beet_using_command im' -s h -l help -f -d 'print help'
# ====== completions for import =====
complete -c beet -n '__fish_beet_using_command import' -s c -l copy -f -d 'copy tracks into library directory (default)'
complete -c beet -n '__fish_beet_using_command import' -s C -l nocopy -f -d "don't copy tracks (opposite of -c)"
complete -c beet -n '__fish_beet_using_command import' -s m -l move -f -d 'move tracks into the library (overrides -c)'
complete -c beet -n '__fish_beet_using_command import' -s w -l write -f -d "write new metadata to files' tags (default)"
complete -c beet -n '__fish_beet_using_command import' -s W -l nowrite -f -d "don't write metadata (opposite of -w)"
complete -c beet -n '__fish_beet_using_command import' -s a -l autotag -f -d 'infer tags for imported files (default)'
complete -c beet -n '__fish_beet_using_command import' -s A -l noautotag -f -d "don't infer tags for imported files (opposite of -a)"
complete -c beet -n '__fish_beet_using_command import' -s p -l resume -f -d 'resume importing if interrupted'
complete -c beet -n '__fish_beet_using_command import' -s P -l noresume -f -d 'do not try to resume importing'
complete -c beet -n '__fish_beet_using_command import' -s q -l quiet -f -d 'never prompt for input: skip albums instead'
complete -c beet -n '__fish_beet_using_command import' -r -s l -l log -f -d 'file to log untaggable albums for later review'
complete -c beet -n '__fish_beet_using_command import' -s s -l singletons -f -d 'import individual tracks instead of full albums'
complete -c beet -n '__fish_beet_using_command import' -s t -l timid -f -d 'always confirm all actions'
complete -c beet -n '__fish_beet_using_command import' -s L -l library -f -d 'retag items matching a query'
complete -c beet -n '__fish_beet_using_command import' -s i -l incremental -f -d 'skip already-imported directories'
complete -c beet -n '__fish_beet_using_command import' -s I -l noincremental -f -d 'do not skip already-imported directories'
complete -c beet -n '__fish_beet_using_command import' -l from-scratch -f -d 'erase existing metadata before applying new metadata'
complete -c beet -n '__fish_beet_using_command import' -l flat -f -d 'import an entire tree as a single album'
complete -c beet -n '__fish_beet_using_command import' -s g -l group-albums -f -d 'group tracks in a folder into separate albums'
complete -c beet -n '__fish_beet_using_command import' -l pretend -f -d 'just print the files to import'
complete -c beet -n '__fish_beet_using_command import' -r -s S -l search-id -f -d 'restrict matching to a specific metadata backend ID'
complete -c beet -n '__fish_beet_using_command import' -r -l set -f -d 'set the given fields to the supplied values'
complete -c beet -n '__fish_beet_using_command import' -s h -l help -f -d 'print help'
# ====== completions for ls =====
complete -c beet -n '__fish_beet_using_command ls' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command ls' -s p -l path -f -d 'print paths for matched items or albums'
complete -c beet -n '__fish_beet_using_command ls' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command ls' -s h -l help -f -d 'print help'
# ====== completions for list =====
complete -c beet -n '__fish_beet_using_command list' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command list' -s p -l path -f -d 'print paths for matched items or albums'
complete -c beet -n '__fish_beet_using_command list' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command list' -s h -l help -f -d 'print help'
# ====== completions for mbsync =====
complete -c beet -n '__fish_beet_using_command mbsync' -s p -l pretend -f -d 'show all changes but do nothing'
complete -c beet -n '__fish_beet_using_command mbsync' -s m -l move -f -d 'move files in the library directory'
complete -c beet -n '__fish_beet_using_command mbsync' -s M -l nomove -f -d "don't move files in library"
complete -c beet -n '__fish_beet_using_command mbsync' -s W -l nowrite -f -d "don't write updated metadata to files"
complete -c beet -n '__fish_beet_using_command mbsync' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command mbsync' -s h -l help -f -d 'print help'
# ====== completions for mod =====
complete -c beet -n '__fish_beet_using_command mod' -s m -l move -f -d 'move files in the library directory'
complete -c beet -n '__fish_beet_using_command mod' -s M -l nomove -f -d "don't move files in library"
complete -c beet -n '__fish_beet_using_command mod' -s w -l write -f -d "write new metadata to files' tags (default)"
complete -c beet -n '__fish_beet_using_command mod' -s W -l nowrite -f -d "don't write metadata (opposite of -w)"
complete -c beet -n '__fish_beet_using_command mod' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command mod' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command mod' -s y -l yes -f -d 'skip confirmation'
complete -c beet -n '__fish_beet_using_command mod' -s h -l help -f -d 'print help'
# ====== completions for modify =====
complete -c beet -n '__fish_beet_using_command modify' -s m -l move -f -d 'move files in the library directory'
complete -c beet -n '__fish_beet_using_command modify' -s M -l nomove -f -d "don't move files in library"
complete -c beet -n '__fish_beet_using_command modify' -s w -l write -f -d "write new metadata to files' tags (default)"
complete -c beet -n '__fish_beet_using_command modify' -s W -l nowrite -f -d "don't write metadata (opposite of -w)"
complete -c beet -n '__fish_beet_using_command modify' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command modify' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command modify' -s y -l yes -f -d 'skip confirmation'
complete -c beet -n '__fish_beet_using_command modify' -s h -l help -f -d 'print help'
# ====== completions for mv =====
complete -c beet -n '__fish_beet_using_command mv' -r -s d -l dest -f -d 'destination directory'
complete -c beet -n '__fish_beet_using_command mv' -s c -l copy -f -d 'copy instead of moving'
complete -c beet -n '__fish_beet_using_command mv' -s p -l pretend -f -d "show how files would be moved, but don't touch anything"
complete -c beet -n '__fish_beet_using_command mv' -s t -l timid -f -d 'always confirm all actions'
complete -c beet -n '__fish_beet_using_command mv' -s e -l export -f -d 'copy without changing the database path'
complete -c beet -n '__fish_beet_using_command mv' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command mv' -s h -l help -f -d 'print help'
# ====== completions for move =====
complete -c beet -n '__fish_beet_using_command move' -r -s d -l dest -f -d 'destination directory'
complete -c beet -n '__fish_beet_using_command move' -s c -l copy -f -d 'copy instead of moving'
complete -c beet -n '__fish_beet_using_command move' -s p -l pretend -f -d "show how files would be moved, but don't touch anything"
complete -c beet -n '__fish_beet_using_command move' -s t -l timid -f -d 'always confirm all actions'
complete -c beet -n '__fish_beet_using_command move' -s e -l export -f -d 'copy without changing the database path'
complete -c beet -n '__fish_beet_using_command move' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command move' -s h -l help -f -d 'print help'
# ====== completions for rm =====
complete -c beet -n '__fish_beet_using_command rm' -s d -l delete -f -d 'also remove files from disk'
complete -c beet -n '__fish_beet_using_command rm' -s f -l force -f -d 'do not ask when removing items'
complete -c beet -n '__fish_beet_using_command rm' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command rm' -s h -l help -f -d 'print help'
# ====== completions for remove =====
complete -c beet -n '__fish_beet_using_command remove' -s d -l delete -f -d 'also remove files from disk'
complete -c beet -n '__fish_beet_using_command remove' -s f -l force -f -d 'do not ask when removing items'
complete -c beet -n '__fish_beet_using_command remove' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command remove' -s h -l help -f -d 'print help'
# ====== completions for scrub =====
complete -c beet -n '__fish_beet_using_command scrub' -s W -l nowrite -f -d 'leave tags empty'
complete -c beet -n '__fish_beet_using_command scrub' -s h -l help -f -d 'print help'
# ====== completions for stats =====
complete -c beet -n '__fish_beet_using_command stats' -s e -l exact -f -d 'exact size and time'
complete -c beet -n '__fish_beet_using_command stats' -s h -l help -f -d 'print help'
# ====== completions for submit =====
complete -c beet -n '__fish_beet_using_command submit' -s h -l help -f -d 'print help'
# ====== completions for upd =====
complete -c beet -n '__fish_beet_using_command upd' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command upd' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command upd' -s m -l move -f -d 'move files in the library directory'
complete -c beet -n '__fish_beet_using_command upd' -s M -l nomove -f -d "don't move files in library"
complete -c beet -n '__fish_beet_using_command upd' -s p -l pretend -f -d 'show all changes but do nothing'
complete -c beet -n '__fish_beet_using_command upd' -r -s F -l field -f -d 'list of fields to update'
complete -c beet -n '__fish_beet_using_command upd' -s h -l help -f -d 'print help'
# ====== completions for up =====
complete -c beet -n '__fish_beet_using_command up' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command up' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command up' -s m -l move -f -d 'move files in the library directory'
complete -c beet -n '__fish_beet_using_command up' -s M -l nomove -f -d "don't move files in library"
complete -c beet -n '__fish_beet_using_command up' -s p -l pretend -f -d 'show all changes but do nothing'
complete -c beet -n '__fish_beet_using_command up' -r -s F -l field -f -d 'list of fields to update'
complete -c beet -n '__fish_beet_using_command up' -s h -l help -f -d 'print help'
# ====== completions for update =====
complete -c beet -n '__fish_beet_using_command update' -s a -l album -f -d 'match albums instead of tracks'
complete -c beet -n '__fish_beet_using_command update' -r -s f -l format -f -d 'print with custom format'
complete -c beet -n '__fish_beet_using_command update' -s m -l move -f -d 'move files in the library directory'
complete -c beet -n '__fish_beet_using_command update' -s M -l nomove -f -d "don't move files in library"
complete -c beet -n '__fish_beet_using_command update' -s p -l pretend -f -d 'show all changes but do nothing'
complete -c beet -n '__fish_beet_using_command update' -r -s F -l field -f -d 'list of fields to update'
complete -c beet -n '__fish_beet_using_command update' -s h -l help -f -d 'print help'
# ====== completions for version =====
complete -c beet -n '__fish_beet_using_command version' -s h -l help -f -d 'print help'
# ====== completions for write =====
complete -c beet -n '__fish_beet_using_command write' -s p -l pretend -f -d 'show all changes but do nothing'
complete -c beet -n '__fish_beet_using_command write' -s f -l force -f -d 'write tags even if the existing tags match the database'
complete -c beet -n '__fish_beet_using_command write' -s h -l help -f -d 'print help'

5
fish/.config/fish/config.fish Executable file → Normal file
View File

@ -4,6 +4,8 @@ set -Ux HOME /home/fuzzy
set -Ux XDG_CONFIG_HOME /home/fuzzy/.config
set -Ux XDG_DATE_HOME /home/fuzzy
set -Ux XDG_CACHE_HOME /home/fuzzy/.cache
set -gx GPG_TTY (tty)
set -Ux ROMS /mnt/Games/ROMS
alias rm="rm -dr"
alias cp="cp -r"
@ -12,8 +14,7 @@ alias mkdir="mkdir -p"
alias hima="himalaya"
alias disroot="himalaya -a disroot"
alias maim="maim ~/Pictures/Screenshots/(date +%s).png"
alias sxiv="nsxiv -af -e (xdotool getwindowfocus) -g (/home/fuzzy/Documents/scripts/getWindowGeometry.sh)"
fish_add_path -g /bin /usr/bin /usr/local/bin /home/fuzzy/.cargo/bin /home/fuzzy/.local/bin /home/fuzzy/.local/bin
# Start X at login

View File

@ -1,9 +1,14 @@
# This file contains fish universal variable definitions.
# VERSION: 3.0
SETUVAR --export EDITOR:nvim
SETUVAR --export GPG_TTY:not\x20a\x20tty
SETUVAR --export GTK_USE_PORTAL:1
SETUVAR --export HOME:/home/fuzzy
SETUVAR --export --path PKG_CONFIG_PATH:/usr/lib/pkgconfig/
SETUVAR --export ROMS:/mnt/Games/ROMS
SETUVAR --export RUST_LOG:debug\x20himalaya
SETUVAR SHELL:/usr/bin/fish
SETUVAR --export USBMUXD_SOCKET_ADDRESS:127\x2e0\x2e0\x2e1\x3a27015
SETUVAR --export XDG_CACHE_HOME:/home/fuzzy/\x2ecache
SETUVAR --export XDG_CONFIG_HOME:/home/fuzzy/\x2econfig
SETUVAR --export XDG_DATA_HOME:/home/fuzzy/\x2elocal/share

4
flexget/.flexget/config.yml Executable file → Normal file
View File

@ -12,6 +12,7 @@ templates:
path: /mnt/EntertainmentDrive/anime/{{series_name}}
seriesgroup:
- Adachi to Shimamura
- Aharen-san wa Hakarenai
- Beastars
- Blue Period
- Blue Reflection Ray
@ -32,12 +33,15 @@ templates:
- Jaku-Chara Tomozaki-kun
- Kageki Shoujo!!
- Kanojo mo Kanojo
- Kawaii dake ja Nai Shikimori-san
- Koi to Yobu ni wa Kimochi Warui
- Koi wa Sekai Seifuku no Ato de
- Komi-san wa, Comyushou desu
- Kuma Kuma Kuma Bear
- Kyoukai Senki
- Kyuuketsuki Sugu Shinu
- Love Live! Superstar!!
- Machikado Mazoku
- Mahouka Koukou no Yuutousei
- Majo no Tabitabi
- Megaton-kyuu Musashi

Binary file not shown.

View File

@ -480,3 +480,434 @@
2022-04-06 19:52:31 VERBOSE details moyaisubs Produced 75 entries.
2022-04-06 19:52:31 VERBOSE parser_internal moyaisubs Title `[MoyaiSubs] Godzilla Singular Point v2 (Web 1080p AAC) (Batch)` looks like series `Godzilla Singular Point` but cannot find a(n) `sequence` style identifier.
2022-04-06 19:52:31 VERBOSE details moyaisubs Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-04-10 00:42:49 VERBOSE task_queue There are 5 tasks to execute. Shutdown will commence when they have completed.
2022-04-10 00:42:50 VERBOSE details judas Produced 75 entries.
2022-04-10 00:42:50 VERBOSE details judas Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-04-10 00:42:51 VERBOSE details ASW Produced 75 entries.
2022-04-10 00:42:51 VERBOSE details ASW Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-04-10 00:42:52 VERBOSE details subsplease Produced 50 entries.
2022-04-10 00:42:52 VERBOSE task subsplease ACCEPTED: `[SubsPlease] Sono Bisque Doll wa Koi wo Suru (01-12) (1080p) [Batch]` by series plugin because choosing first acceptable match
2022-04-10 00:42:52 VERBOSE task subsplease ACCEPTED: `[SubsPlease] Hanyou no Yashahime (25-48) (1080p) [Batch]` by series plugin because choosing first acceptable match
2022-04-10 00:42:52 VERBOSE task subsplease REJECTED: `[SubsPlease] Sono Bisque Doll wa Koi wo Suru (01-12) (1080p) [Batch]` by exists_series plugin because episode already exists
2022-04-10 00:42:52 VERBOSE task subsplease REJECTED: `[SubsPlease] Hanyou no Yashahime (25-48) (1080p) [Batch]` by exists_series plugin because episode already exists
2022-04-10 00:42:52 VERBOSE details subsplease Summary - Accepted: 0 (Rejected: 2 Undecided: 48 Failed: 0)
2022-04-10 00:42:53 VERBOSE details tenrai Produced 75 entries.
2022-04-10 00:42:53 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Mieruko-Chan [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Mieruko-chan` but cannot find a(n) `sequence` style identifier.
2022-04-10 00:42:53 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Horimiya [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Horimiya` but cannot find a(n) `sequence` style identifier.
2022-04-10 00:42:53 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` by seen plugin because entry with title `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-10 00:42:53 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-10 00:42:53 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-10 00:42:53 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-10 00:42:53 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-10 00:42:53 VERBOSE details tenrai Summary - Accepted: 0 (Rejected: 5 Undecided: 70 Failed: 0)
2022-04-10 00:42:54 VERBOSE details moyaisubs Produced 75 entries.
2022-04-10 00:42:55 VERBOSE parser_internal moyaisubs Title `[MoyaiSubs] Godzilla Singular Point v2 (Web 1080p AAC) (Batch)` looks like series `Godzilla Singular Point` but cannot find a(n) `sequence` style identifier.
2022-04-10 00:42:55 VERBOSE details moyaisubs Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-04-10 09:15:04 INFO manager judas Running database cleanup.
2022-04-10 09:15:04 INFO db_analyze judas Running ANALYZE on database to improve performance.
2022-04-11 22:15:06 INFO download ASW Downloading: [ASW] Kyoukai Senki - 14 [1080p HEVC x265 10Bit][AAC]
2022-04-11 22:15:06 INFO transmission ASW "[ASW] Kyoukai Senki - 14 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-04-13 01:15:05 INFO download ASW Downloading: [ASW] Kyoukai Senki - 14v2 [1080p HEVC x265 10Bit][AAC]
2022-04-13 01:15:05 INFO transmission ASW "[ASW] Kyoukai Senki - 14v2 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-04-14 21:15:06 INFO parser_internal ASW Title `[ASW] Sono Bisque Doll wa Koi wo Suru [1080p HEVC x265 10Bit][AAC] (Batch)` looks like series `Sono Bisque Doll` but cannot find a(n) `sequence` style identifier.
2022-04-17 15:15:03 INFO manager judas Running database cleanup.
2022-04-17 15:15:03 INFO db_analyze judas Running ANALYZE on database to improve performance.
2022-04-17 17:27:38 VERBOSE task_queue There are 5 tasks to execute. Shutdown will commence when they have completed.
2022-04-17 17:27:38 VERBOSE details judas Produced 75 entries.
2022-04-17 17:27:39 VERBOSE details judas Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-04-17 17:27:39 VERBOSE details ASW Produced 75 entries.
2022-04-17 17:27:40 VERBOSE parser_internal ASW Title `[ASW] Sono Bisque Doll wa Koi wo Suru [1080p HEVC x265 10Bit][AAC] (Batch)` looks like series `Sono Bisque Doll` but cannot find a(n) `sequence` style identifier.
2022-04-17 17:27:40 VERBOSE details ASW Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-04-17 17:27:41 VERBOSE details subsplease Produced 50 entries.
2022-04-17 17:27:41 VERBOSE task subsplease REJECTED: `[SubsPlease] Kyoukai Senki - 14v2 (1080p) [567EA74E].mkv` by series plugin because entity has already been downloaded
2022-04-17 17:27:41 VERBOSE details subsplease Summary - Accepted: 0 (Rejected: 1 Undecided: 49 Failed: 0)
2022-04-17 17:27:42 VERBOSE details tenrai Produced 75 entries.
2022-04-17 17:27:42 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Mieruko-Chan [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Mieruko-chan` but cannot find a(n) `sequence` style identifier.
2022-04-17 17:27:42 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Horimiya [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Horimiya` but cannot find a(n) `sequence` style identifier.
2022-04-17 17:27:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` by seen plugin because entry with title `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-17 17:27:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-17 17:27:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-17 17:27:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-17 17:27:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-04-17 17:27:42 VERBOSE details tenrai Summary - Accepted: 0 (Rejected: 5 Undecided: 70 Failed: 0)
2022-04-17 17:27:43 VERBOSE details moyaisubs Produced 75 entries.
2022-04-17 17:27:43 VERBOSE parser_internal moyaisubs Title `[MoyaiSubs] Godzilla Singular Point v2 (Web 1080p AAC) (Batch)` looks like series `Godzilla Singular Point` but cannot find a(n) `sequence` style identifier.
2022-04-17 17:27:43 VERBOSE details moyaisubs Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-04-18 20:15:06 INFO download ASW Downloading: [ASW] Kyoukai Senki - 15 [1080p HEVC x265 10Bit][AAC]
2022-04-18 20:15:06 INFO transmission ASW "[ASW] Kyoukai Senki - 15 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-04-19 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-19 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-20 23:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-20 23:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-21 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-21 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-21 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-21 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-21 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-21 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-21 20:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-21 20:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-21 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-21 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-21 22:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-21 22:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-22 18:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-22 18:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-22 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-22 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-22 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-22 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-22 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-22 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-22 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-22 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-22 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-04-22 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-04-24 04:39:51 CRITICAL plugin judas Unable to download the RSS for task judas (https://nyaa.si/?page=rss&u=Judas): HTTPSConnectionPool(host='nyaa.si', port=443): Max retries exceeded with url: /?page=rss&u=Judas (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff8bd21a350>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2022-04-24 04:39:51 WARNING task judas Aborting task (plugin: rss)
2022-04-24 04:39:51 CRITICAL plugin ASW Unable to download the RSS for task ASW (https://nyaa.si/?page=rss&u=AkihitoSubsWeeklies): HTTPSConnectionPool(host='nyaa.si', port=443): Max retries exceeded with url: /?page=rss&u=AkihitoSubsWeeklies (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff8bd26ee90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2022-04-24 04:39:51 WARNING task ASW Aborting task (plugin: rss)
2022-04-24 04:39:51 CRITICAL plugin subsplease Unable to download the RSS for task subsplease (https://subsplease.org/rss/?r=1080): HTTPSConnectionPool(host='subsplease.org', port=443): Max retries exceeded with url: /rss/?r=1080 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff8bd26dae0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2022-04-24 04:39:51 WARNING task subsplease Aborting task (plugin: rss)
2022-04-24 04:39:51 CRITICAL plugin tenrai Unable to download the RSS for task tenrai (https://nyaa.si/?page=rss&u=Tenrai_Sensei): HTTPSConnectionPool(host='nyaa.si', port=443): Max retries exceeded with url: /?page=rss&u=Tenrai_Sensei (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff8bd26f700>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2022-04-24 04:39:51 WARNING task tenrai Aborting task (plugin: rss)
2022-04-24 04:39:51 CRITICAL plugin moyaisubs Unable to download the RSS for task moyaisubs (https://nyaa.si/?page=rss&u=MoyaiSubs): HTTPSConnectionPool(host='nyaa.si', port=443): Max retries exceeded with url: /?page=rss&u=MoyaiSubs (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff8bd26d9c0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2022-04-24 04:39:51 WARNING task moyaisubs Aborting task (plugin: rss)
2022-04-24 15:15:03 INFO manager judas Running database cleanup.
2022-04-24 15:15:03 INFO db_analyze judas Running ANALYZE on database to improve performance.
2022-04-25 11:15:07 INFO transmission subsplease "[SubsPlease] Kyoukai Senki - 16 (1080p) [091ABEA7].mkv" torrent added to transmission
2022-05-01 15:15:03 INFO manager judas Running database cleanup.
2022-05-01 15:15:03 INFO db_analyze judas Running ANALYZE on database to improve performance.
2022-05-02 08:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 08:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 09:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 09:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 10:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 10:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 11:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 11:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 12:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 12:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 15:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 15:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-02 22:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-02 22:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 08:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 08:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 09:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 09:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 10:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 10:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 11:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 11:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 12:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 12:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 15:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 15:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-03 22:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-03 22:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 11:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 11:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 12:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 12:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 15:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 15:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 19:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 19:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 22:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 22:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-04 23:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-04 23:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 00:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 00:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 12:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 12:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 15:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 15:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 22:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 22:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-05 23:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-05 23:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 00:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 00:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 01:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 01:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 09:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 09:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 10:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 10:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 11:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 11:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 12:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 12:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 15:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 15:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 22:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 22:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-06 23:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-06 23:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 00:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 00:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 01:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 01:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 02:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 02:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 03:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 03:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 10:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 10:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 11:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 11:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 12:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 12:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 15:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 15:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-07 23:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-07 23:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 00:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 00:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 01:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 01:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 11:15:02 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 11:15:02 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 12:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 12:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 13:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 13:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 15:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 15:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 16:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 16:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 17:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 17:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 18:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-08 18:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-08 19:15:04 INFO manager judas Running database cleanup.
2022-05-08 19:15:04 INFO db_analyze judas Running ANALYZE on database to improve performance.
2022-05-08 19:15:06 INFO download ASW Downloading: [ASW] Kyoukai Senki - 17 [1080p HEVC x265 10Bit][AAC]
2022-05-08 19:15:06 INFO transmission ASW "[ASW] Kyoukai Senki - 17 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-05-09 11:15:07 INFO transmission subsplease "[SubsPlease] Kyoukai Senki - 18 (1080p) [EC00065A].mkv" torrent added to transmission
2022-05-11 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-11 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-11 22:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-11 22:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-11 23:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-11 23:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-12 00:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-12 00:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-12 01:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-12 01:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-12 19:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-12 19:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-12 20:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-12 20:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-12 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-12 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-12 22:15:04 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-12 22:15:04 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-12 23:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-12 23:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-14 14:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-14 14:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-15 19:15:04 INFO manager ASW Running database cleanup.
2022-05-15 19:15:04 INFO db_analyze ASW Running ANALYZE on database to improve performance.
2022-05-16 11:15:07 INFO transmission subsplease "[SubsPlease] Kyoukai Senki - 19 (1080p) [BF4225F4].mkv" torrent added to transmission
2022-05-16 20:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-16 20:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-16 21:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-16 21:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-16 22:15:03 CRITICAL manager [/templates/anime/exists_series] `/mnt/EntertainmentDrive/anime` does not exist
2022-05-16 22:15:03 CRITICAL manager Failed to load config file: Did not pass schema validation.
2022-05-26 17:15:12 VERBOSE task_queue There are 5 tasks to execute. Shutdown will commence when they have completed.
2022-05-26 17:15:14 VERBOSE details judas Produced 75 entries.
2022-05-26 17:15:14 INFO parser_internal judas Title `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E05 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:14 INFO parser_internal judas Title `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E06 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:14 INFO parser_internal judas Title `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E04 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:14 VERBOSE task judas ACCEPTED: `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E06.5 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` by series plugin because choosing first acceptable match
2022-05-26 17:15:14 WARNING exists_series judas Directory /mnt/EntertainmentDrive/anime/Kawaii dake ja Nai Shikimori-san does not exist
2022-05-26 17:15:14 INFO download judas Downloading: [Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E06.5 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)
2022-05-26 17:15:18 VERBOSE details judas Summary - Accepted: 1 (Rejected: 0 Undecided: 74 Failed: 0)
2022-05-26 17:15:18 INFO transmission judas "[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E06.5 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)" torrent added to transmission
2022-05-26 17:15:21 VERBOSE details ASW Produced 75 entries.
2022-05-26 17:15:21 INFO parser_internal ASW Title `[ASW] Kawaii dake ja Nai Shikimori-san - SP1 [1080p HEVC x265 10Bit][AAC]` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:21 VERBOSE task ASW ACCEPTED: `[ASW] Machikado Mazoku S2 - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-05-26 17:15:21 VERBOSE task ASW ACCEPTED: `[ASW] Kyoukai Senki - 20 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-05-26 17:15:21 VERBOSE task ASW REJECTED: `[ASW] Kyoukai Senki - 19 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-05-26 17:15:21 VERBOSE task ASW ACCEPTED: `[ASW] Koi wa Sekai Seifuku no Ato de - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-05-26 17:15:21 VERBOSE task ASW ACCEPTED: `[ASW] Aharen-san wa Hakarenai - 08 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Aharen-san wa Hakarenai does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Koi wa Sekai Seifuku no Ato de does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Machikado Mazoku does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Aharen-san wa Hakarenai does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Koi wa Sekai Seifuku no Ato de does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Machikado Mazoku does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Aharen-san wa Hakarenai does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Koi wa Sekai Seifuku no Ato de does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Machikado Mazoku does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Aharen-san wa Hakarenai does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Koi wa Sekai Seifuku no Ato de does not exist
2022-05-26 17:15:21 WARNING exists_series ASW Directory /mnt/EntertainmentDrive/anime/Machikado Mazoku does not exist
2022-05-26 17:15:21 INFO download ASW Downloading: [ASW] Machikado Mazoku S2 - 07 [1080p HEVC x265 10Bit][AAC]
2022-05-26 17:15:22 INFO download ASW Downloading: [ASW] Kyoukai Senki - 20 [1080p HEVC x265 10Bit][AAC]
2022-05-26 17:15:24 INFO download ASW Downloading: [ASW] Aharen-san wa Hakarenai - 08 [1080p HEVC x265 10Bit][AAC]
2022-05-26 17:15:28 INFO download ASW Downloading: [ASW] Koi wa Sekai Seifuku no Ato de - 07 [1080p HEVC x265 10Bit][AAC]
2022-05-26 17:15:30 VERBOSE details ASW Summary - Accepted: 4 (Rejected: 1 Undecided: 70 Failed: 0)
2022-05-26 17:15:30 INFO transmission ASW "[ASW] Machikado Mazoku S2 - 07 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-05-26 17:15:30 INFO transmission ASW "[ASW] Kyoukai Senki - 20 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-05-26 17:15:30 INFO transmission ASW "[ASW] Aharen-san wa Hakarenai - 08 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-05-26 17:15:30 INFO transmission ASW "[ASW] Koi wa Sekai Seifuku no Ato de - 07 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-05-26 17:15:32 VERBOSE details subsplease Produced 50 entries.
2022-05-26 17:15:32 INFO parser_internal subsplease Title `[SubsPlease] Kawaii dake ja Nai Shikimori-san - SP1 (1080p) [607F182D].mkv` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:32 VERBOSE task subsplease REJECTED: `[SubsPlease] Machikado Mazoku S2 - 07 (1080p) [8FF5D7A5].mkv` by series plugin because entity has already been downloaded
2022-05-26 17:15:32 VERBOSE task subsplease REJECTED: `[SubsPlease] Kyoukai Senki - 20 (1080p) [324D8147].mkv` by series plugin because entity has already been downloaded
2022-05-26 17:15:32 VERBOSE task subsplease REJECTED: `[SubsPlease] Aharen-san wa Hakarenai - 08 (1080p) [B096A15E].mkv` by series plugin because entity has already been downloaded
2022-05-26 17:15:32 VERBOSE details subsplease Summary - Accepted: 0 (Rejected: 3 Undecided: 47 Failed: 0)
2022-05-26 17:15:36 VERBOSE details tenrai Produced 75 entries.
2022-05-26 17:15:36 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Mieruko-Chan [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Mieruko-chan` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:36 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Horimiya [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Horimiya` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:37 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` by seen plugin because entry with title `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-05-26 17:15:37 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-05-26 17:15:37 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-05-26 17:15:37 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-05-26 17:15:37 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-05-26 17:15:37 VERBOSE details tenrai Summary - Accepted: 0 (Rejected: 5 Undecided: 70 Failed: 0)
2022-05-26 17:15:39 VERBOSE details moyaisubs Produced 75 entries.
2022-05-26 17:15:39 VERBOSE parser_internal moyaisubs Title `[MoyaiSubs] Godzilla Singular Point v2 (Web 1080p AAC) (Batch)` looks like series `Godzilla Singular Point` but cannot find a(n) `sequence` style identifier.
2022-05-26 17:15:40 VERBOSE details moyaisubs Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)
2022-06-02 11:50:35 VERBOSE task_queue There are 5 tasks to execute. Shutdown will commence when they have completed.
2022-06-02 11:50:36 VERBOSE details judas Produced 75 entries.
2022-06-02 11:50:36 VERBOSE parser_internal judas Title `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E05 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-06-02 11:50:36 VERBOSE parser_internal judas Title `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E06 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-06-02 11:50:36 INFO parser_internal judas Title `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E07 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` looks like series `Kawaii dake ja Nai Shikimori-san` but cannot find a(n) `sequence` style identifier.
2022-06-02 11:50:36 VERBOSE task judas REJECTED: `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E06.5 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` by seen plugin because entry with title `[Judas] Kawaii Dake ja Nai Shikimori-san (Shikimori`s Not Just a Cutie) - S01E06.5 [1080p][HEVC x265 10bit][Multi-Subs] (Weekly)` is already marked seen in the task judas at 2022-05-26 17:15
2022-06-02 11:50:36 VERBOSE details judas Summary - Accepted: 0 (Rejected: 1 Undecided: 74 Failed: 0)
2022-06-02 11:50:37 VERBOSE details ASW Produced 75 entries.
2022-06-02 11:50:37 VERBOSE task ASW REJECTED: `[ASW] Machikado Mazoku S2 - 07 [1080p HEVC x265 10Bit][AAC]` by seen plugin because entry with title `[ASW] Machikado Mazoku S2 - 07 [1080p HEVC x265 10Bit][AAC]` is already marked seen in the task ASW at 2022-05-26 17:15
2022-06-02 11:50:37 VERBOSE task ASW REJECTED: `[ASW] Kyoukai Senki - 20 [1080p HEVC x265 10Bit][AAC]` by seen plugin because entry with title `[ASW] Kyoukai Senki - 20 [1080p HEVC x265 10Bit][AAC]` is already marked seen in the task ASW at 2022-05-26 17:15
2022-06-02 11:50:37 VERBOSE task ASW ACCEPTED: `[ASW] Kyoukai Senki - 21 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-06-02 11:50:37 VERBOSE task ASW ACCEPTED: `[ASW] Koi wa Sekai Seifuku no Ato de - 08 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-06-02 11:50:37 VERBOSE task ASW ACCEPTED: `[ASW] Kawaii dake ja Nai Shikimori-san - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-06-02 11:50:37 VERBOSE task ASW ACCEPTED: `[ASW] Aharen-san wa Hakarenai - 09 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-06-02 11:50:37 INFO download ASW Downloading: [ASW] Kyoukai Senki - 21 [1080p HEVC x265 10Bit][AAC]
2022-06-02 11:50:38 INFO download ASW Downloading: [ASW] Kawaii dake ja Nai Shikimori-san - 07 [1080p HEVC x265 10Bit][AAC]
2022-06-02 11:50:38 INFO download ASW Downloading: [ASW] Aharen-san wa Hakarenai - 09 [1080p HEVC x265 10Bit][AAC]
2022-06-02 11:50:39 INFO download ASW Downloading: [ASW] Koi wa Sekai Seifuku no Ato de - 08 [1080p HEVC x265 10Bit][AAC]
2022-06-02 11:50:39 VERBOSE details ASW Summary - Accepted: 4 (Rejected: 2 Undecided: 69 Failed: 0)
2022-06-02 11:50:39 INFO transmission ASW "[ASW] Kyoukai Senki - 21 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-06-02 11:50:39 INFO transmission ASW "[ASW] Kawaii dake ja Nai Shikimori-san - 07 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-06-02 11:50:39 INFO transmission ASW "[ASW] Aharen-san wa Hakarenai - 09 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-06-02 11:50:39 INFO transmission ASW "[ASW] Koi wa Sekai Seifuku no Ato de - 08 [1080p HEVC x265 10Bit][AAC]" torrent added to transmission
2022-06-02 11:50:40 VERBOSE details subsplease Produced 50 entries.
2022-06-02 11:50:40 VERBOSE task subsplease REJECTED: `[SubsPlease] Kyoukai Senki - 21 (1080p) [A9E9546D].mkv` by series plugin because entity has already been downloaded
2022-06-02 11:50:40 VERBOSE task subsplease REJECTED: `[SubsPlease] Koi wa Sekai Seifuku no Ato de - 08 (1080p) [1AA5116D].mkv` by series plugin because entity has already been downloaded
2022-06-02 11:50:40 VERBOSE task subsplease REJECTED: `[SubsPlease] Kawaii dake ja Nai Shikimori-san - 07 (1080p) [CA7E54B2].mkv` by series plugin because entity has already been downloaded
2022-06-02 11:50:41 VERBOSE task subsplease REJECTED: `[SubsPlease] Aharen-san wa Hakarenai - 09 (1080p) [97D8A57D].mkv` by series plugin because entity has already been downloaded
2022-06-02 11:50:41 VERBOSE details subsplease Summary - Accepted: 0 (Rejected: 4 Undecided: 46 Failed: 0)
2022-06-02 11:50:41 VERBOSE details tenrai Produced 75 entries.
2022-06-02 11:50:42 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Mieruko-Chan [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Mieruko-chan` but cannot find a(n) `sequence` style identifier.
2022-06-02 11:50:42 VERBOSE parser_internal tenrai Title `[Tenrai-Sensei] Horimiya [BD][1080p][HEVC 10bit x265][Dual Audio]` looks like series `Horimiya` but cannot find a(n) `sequence` style identifier.
2022-06-02 11:50:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` by seen plugin because entry with title `[Tenrai-Sensei] Vivy -Fluorite Eye's Song- S1+OVA [BD][1080p][HEVC 10bit x265][Dual Audio]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-06-02 11:50:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E33 - Osorezan Le Voile Part 4 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-06-02 11:50:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E32 - Osorezan Le Voile Part 3 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-06-02 11:50:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E31 - Osorezan Le Voile Part 2 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-06-02 11:50:42 VERBOSE task tenrai REJECTED: `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` by seen plugin because entry with title `[Tenrai-Sensei | Saint-Subs] Shaman King (2021) - S01E30 - Osorezan Le Voile Part 1 [Web][1080p][AVC x264]` is already marked seen in the task tenrai at 2022-02-08 09:51
2022-06-02 11:50:42 VERBOSE details tenrai Summary - Accepted: 0 (Rejected: 5 Undecided: 70 Failed: 0)
2022-06-02 11:50:43 VERBOSE details moyaisubs Produced 75 entries.
2022-06-02 11:50:43 VERBOSE parser_internal moyaisubs Title `[MoyaiSubs] Godzilla Singular Point v2 (Web 1080p AAC) (Batch)` looks like series `Godzilla Singular Point` but cannot find a(n) `sequence` style identifier.
2022-06-02 11:50:43 VERBOSE details moyaisubs Summary - Accepted: 0 (Rejected: 0 Undecided: 75 Failed: 0)

View File

@ -1,18 +1,15 @@
# ~/.config/himalaya/config.toml
name = "Jeremy Lavitt"
name = ""
downloads-dir = "~/Downloads"
signature = ""
default-page-size = 50
watch-cmds = ["mbsync -a"]
[outlook]
name = "Jeremy Lavitt"
email = "JeremyLavitt@outlook.com"
default = true
default-page-size = 25
signature = """
Regards,
Jeremy Lavitt
"""
imap-host = "outlook.office365.com"
imap-port = 993
@ -26,14 +23,19 @@ smtp-login = "jeremylavitt@outlook.com"
smtp-passwd-cmd = "pass show outlook"
[disroot]
name = "fuzzy"
email = "fuzzy@disroot.org"
default = false
default-page-size = 25
signature = """
Cordially,
Fuzzy
signature="""
hell yeah you just got email'd by
"""
imap-host = "disroot.org"
imap-port = 993
imap-login = "fuzzy@disroot.org"
@ -41,6 +43,7 @@ imap-passwd-cmd = "pass show disroot"
smtp-host = "disroot.org"
smtp-port = 587
smtp-starttls = true
smtp-login = "fuzzy@disroot.org"
smtp-passwd-cmd = "pass show disroot"

10
nvim/.config/nvim/node_modules/.yarn-integrity generated vendored Normal file
View File

@ -0,0 +1,10 @@
{
"systemParams": "linux-x64-93",
"modulesFolders": [],
"flags": [],
"linkedModules": [],
"topLevelPatterns": [],
"lockfileEntries": {},
"files": [],
"artifacts": {}
}

View File

@ -0,0 +1,4 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1

View File

@ -68,7 +68,6 @@ time = %l:%M%P
label = %date% %time%
;click-left = ~/Documents/scripts/dzencal.sh
click-left = dcal
[module/swatch]

View File

@ -0,0 +1,16 @@
#screenshot everything with maim
Print
/home/fuzzy/Documents/scripts/screenshotCurrentMonitor.sh
#
#screenshot selected region with maim
ctrl + Print
maim /home/fuzzy/Pictures/Screenshots/(date +%s).png -s
#enable volume up & volume down media keys
XF86AudioRaiseVolume
pactl set-sink-volume alsa_output.pci-0000_00_1f.3.analog-stereo +2%
XF86AudioLowerVolume
pactl set-sink-volume alsa_output.pci-0000_00_1f.3.analog-stereo -2%
alt + c
grabc -hex | xclip -selection clipboard

0
wired/.config/wired/wired.ron Executable file → Normal file
View File

0
wired/.config/wired/wired.rs Executable file → Normal file
View File

View File

@ -1,4 +1,27 @@
include config.mk
# program name
PROG = xmenu
# paths
PREFIX ?= /usr/local
MANPREFIX ?= ${PREFIX}/share/man
LOCALINC ?= /usr/local/include
LOCALLIB ?= /usr/local/lib
X11INC ?= /usr/X11R6/include
X11LIB ?= /usr/X11R6/lib
FREETYPEINC ?= /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
# includes and libs
INCS += -I${LOCALINC} -I${X11INC} -I${FREETYPEINC}
LIBS += -L${LOCALLIB} -L${X11LIB} -lfontconfig -lXft -lX11 -lXinerama -lImlib2
# flags
CFLAGS += ${DEBUG} -Wall -Wextra ${INCS} ${CPPFLAGS}
LDFLAGS += ${LIBS}
# compiler and linker
CC = cc
bindir = ${DESTDIR}${PREFIX}
mandir = ${DESTDIR}${MANPREFIX}
@ -11,7 +34,7 @@ all: ${PROG}
${PROG}: ${OBJS}
${CC} -o $@ ${OBJS} ${LDFLAGS}
${OBJS}: config.h ${PROG}.h
${OBJS}: config.h
.c.o:
${CC} ${CFLAGS} -c $<

View File

@ -37,8 +37,6 @@ The files are:
* `./README`: This file.
* `./Makefile`: The makefile.
* `./config.h`: The hardcoded default configuration for XMenu.
* `./config.mk`: The setup for the makefile.
* `./demo.gif`: A gif demonstrating how XMenu works.
* `./xmenu.1`: The manual file (man page) for XMenu.
* `./xmenu.c`: The source code of XMenu.
* `./xmenu.sh`: A sample script illustrating how to use XMenu.

View File

@ -1,31 +0,0 @@
# program name
PROG = xmenu
# paths
PREFIX ?= /usr/local
MANPREFIX ?= ${PREFIX}/share/man
LOCALINC ?= /usr/local/include
LOCALLIB ?= /usr/local/lib
# SHELL variable (mainly for non-GNU make)
SHELL ?= /bin/sh
X11INC ?= /usr/X11R6/include
X11LIB ?= /usr/X11R6/lib
FREETYPEINC ?= /usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
# includes and libs
INCS := -I${LOCALINC} -I${X11INC} -I${FREETYPEINC}
LIBS := -L${LOCALLIB} -L${X11LIB} -lfontconfig -lXft -lX11 -lXinerama -lImlib2
# flags
CPPFLAGS :=
CFLAGS := -Wall -Wextra ${INCS} ${CPPFLAGS}
LDFLAGS := ${LIBS}
# compiler and linker
CC = cc

Binary file not shown.

View File

@ -62,6 +62,53 @@ so pressing it will not trigger any menu item.
Asks the window manager to draw a border around the menus.
This option may be buggy in some window managers,
specially tiled ones that do not respect window hints.
.TP
\fB\-x\fP [\fImod\fP-]\fIbutton\fP
This option requires an argument of the form
\fImod\fP-\fIbutton\fP or \fIbutton\fP; where
.I mod
is
.B Mod1
to
.BR Mod5 ,
or
.B Alt
(equivalent to
.BR Mod1 ),
or
.B Super
(equivalent to
.BR Mod4 );
and
.I button
is the number of a mouse button.
When this option is used,
.B pmenu
listens to button presses on the root window,
and shows the pie menu when the given button is pressed,
together with the given modifier,
on the root window.
For example, invoking
.B pmenu
with the option
.B -x Super-3
makes a menu open when clicking with the third mouse button on the root window,
or when clicking with the third mouse button together with the Super (Mod4) modifier on any window.
This option makes
.B pmenu
run continuously;
so it should be used when
.B pmenu
is invoked in background on a X startup file (like
.BR "~/.xinitrc" ).
.TP
\fB\-X\fP [\fImod\fP-]\fIbutton\fP
Just like
.BR \-x ,
but also pass the click to the root window
(for the window manager to use it, for example).
This option is incompatible with
.BR \-x .
.PP
Each item read from stdin has the following format:
.IP
@ -79,7 +126,11 @@ items indented with a tab is shown in a submenu of the preceding item not indent
An item without initial tabs is a top-level item.
.IP
The image is a string of the form "IMG:/path/to/image.png".
It specifies a image to be shown as icon at the left of the entry.
It specifies the path to a image file to be shown as icon at the left of the entry.
If the path does not begin with "/", "./" or "../",
the file is searched on the paths specified in the
.B ICONPATH
environment variable.
.IP
The label is the string that will be shown as a item in the menu.
An item without label is considered a separator and is drawn as a thin line in the menu
@ -190,6 +241,22 @@ or
.BR "\(dqright\(dq" ,
text is aligned to the left, center, or right of the menu, respectively.
By default, text is aligned to the left.
.TP
.B xmenu.maxItems
Maximum number of items to be displayed in a menu.
If more a menu has more than this number of items,
they will be scrolled with arrow buttons.
.SH ENVIRONMENT
The following environment variables affect the execution of
.BR pmenu .
.TP
.B DISPLAY
The display to start
.B pmenu
on.
.TP
.B ICONPATH
A colon-separated list of directories used to search for the location of image files.
.SH EXAMPLES
The following script illustrates the use of
.BR xmenu .

File diff suppressed because it is too large Load Diff

View File

@ -1,110 +0,0 @@
#define PROGNAME "xmenu"
/* Actions for the main loop */
#define ACTION_NOP 0
#define ACTION_CLEAR 1<<0 /* clear text */
#define ACTION_SELECT 1<<1 /* select item */
#define ACTION_MAP 1<<2 /* remap menu windows */
#define ACTION_DRAW 1<<3 /* redraw menu windows */
#define ACTION_WARP 1<<4 /* warp the pointer */
/* enum for keyboard menu navigation */
enum { ITEMPREV, ITEMNEXT, ITEMFIRST, ITEMLAST };
/* enum for text alignment */
enum {LeftAlignment, CenterAlignment, RightAlignment};
/* macros */
#define LEN(x) (sizeof (x) / sizeof (x[0]))
#define MAX(x,y) ((x)>(y)?(x):(y))
#define MIN(x,y) ((x)<(y)?(x):(y))
#define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
#define GETNUM(n, s) { \
unsigned long __TMP__; \
if ((__TMP__ = strtoul((s), NULL, 10)) < INT_MAX) \
(n) = __TMP__; \
}
/* color enum */
enum {ColorFG, ColorBG, ColorLast};
/* EWMH atoms */
enum {NetWMName, NetWMWindowType, NetWMWindowTypePopupMenu, NetLast};
/* configuration structure */
struct Config {
/* the values below are set by config.h */
const char *font;
const char *background_color;
const char *foreground_color;
const char *selbackground_color;
const char *selforeground_color;
const char *separator_color;
const char *border_color;
int width_pixels;
int height_pixels;
int border_pixels;
int separator_pixels;
int gap_pixels;
int triangle_width;
int triangle_height;
int iconpadding;
int horzpadding;
int alignment;
/* the values below are set by options */
int monitor;
int posx, posy; /* rootmenu position */
/* the value below is computed by xmenu */
int iconsize;
};
/* draw context structure */
struct DC {
XftColor normal[ColorLast];
XftColor selected[ColorLast];
XftColor border;
XftColor separator;
GC gc;
FcPattern *pattern;
XftFont **fonts;
size_t nfonts;
};
/* menu item structure */
struct Item {
char *label; /* string to be drawed on menu */
char *output; /* string to be outputed when item is clicked */
char *file; /* filename of the icon */
int y; /* item y position relative to menu */
int h; /* item height */
int textw; /* text width */
struct Item *prev; /* previous item */
struct Item *next; /* next item */
struct Menu *submenu; /* submenu spawned by clicking on item */
Drawable sel, unsel; /* pixmap for selected and unselected item */
Imlib_Image icon;
};
/* monitor geometry structure */
struct Monitor {
int x, y, w, h; /* monitor geometry */
};
/* menu structure */
struct Menu {
struct Menu *parent; /* parent menu */
struct Item *caller; /* item that spawned the menu */
struct Item *list; /* list of items contained by the menu */
struct Item *selected; /* item currently selected in the menu */
int x, y, w, h; /* menu geometry */
int hasicon; /* whether the menu has item with icons */
int drawn; /* whether the menu was already drawn */
int maxtextw; /* maximum text width */
unsigned level; /* menu level relative to root */
Window win; /* menu window to map on the screen */
XIC xic; /* input context */
};

Binary file not shown.