diff --git a/.bash_profile b/.bash_profile index 82203a5..36b3130 100644 --- a/.bash_profile +++ b/.bash_profile @@ -53,7 +53,7 @@ export GEM_PATH="$GEM_HOME:/usr/lib/ruby/gems/2.6.0" # Set the paths used by perl5 {{{ export PERL5LIB="$HOME/.local/perl/lib/perl5" -export PERL_CPANM_OPT="-l ~/.local/perl" +export PERL_CPANM_OPT="-l $HOME/.local/perl" export PERL_CPANM_HOME="$HOME/.local/perl/.cpanm" # }}} @@ -80,7 +80,6 @@ export PATH="$HOME/.local/bin:\ $HOME/.local/perl/bin:\ $GOPATH/bin:\ $GEM_HOME/bin:\ -$HOME/.yarn/bin:\ $ANDROID_HOME/tools:\ $ANDROID_HOME/platform-tools:" # }}} diff --git a/.config/dircolors b/.config/dircolors index 9a3cb83..50599ad 100644 --- a/.config/dircolors +++ b/.config/dircolors @@ -88,6 +88,7 @@ STICKY_OTHER_WRITABLE 48;5;10;38;5;16 # dir that is sticky and other-writable .lzh 38;5;247 .lzma 38;5;247 .ora 38;5;247 +.piz 38;5;247 .rar 38;5;247 .rpm 38;5;247 .rz 38;5;247 diff --git a/.config/mpv/input.conf b/.config/mpv/input.conf index 4dd8b46..c4c77e3 100644 --- a/.config/mpv/input.conf +++ b/.config/mpv/input.conf @@ -5,8 +5,8 @@ u cycle video-unscaled v cycle sub-visibility x cycle sub X cycle sub down -, cycle video -. cycle video down +z cycle video +Z cycle video down a cycle audio A cycle audio down m cycle mute diff --git a/.config/mpv/mpv.conf b/.config/mpv/mpv.conf index 9b1184b..f7294b7 100644 --- a/.config/mpv/mpv.conf +++ b/.config/mpv/mpv.conf @@ -12,6 +12,16 @@ input-default-bindings=no # }}} +# Track selection {{{ + +# Specify a priority list of audio languages to use. +alang=eng,jpn + +# Specify a priority list of subtitle languages to use. +slang=eng,ell + +# }}} + # Miscellaneous {{{ # How the player synchronizes audio and video. diff --git a/.config/yarn/global/package.json b/.config/yarn/global/package.json index dc09af2..fefdb7d 100644 --- a/.config/yarn/global/package.json +++ b/.config/yarn/global/package.json @@ -1,8 +1,9 @@ { "license": "MIT-0", + "private": true, "dependencies": { "american-british-english-translator": "^0.1.2", - "eslint": "^6.5.1", + "eslint": "^6.6.0", "grunt-cli": "^1.3.2", "gulp-cli": "^2.2.0", "htmlhint": "^0.11.0", @@ -10,7 +11,7 @@ "pug-cli": "^1.0.0-alpha6", "pug-lint": "^2.5.0", "stylelint": "^11.1.1", - "stylelint-scss": "^3.9.3", - "svgo": "^1.2.2" + "stylelint-scss": "^3.12.1", + "svgo": "^1.3.0" } } diff --git a/.gitattributes b/.gitattributes index 0fadea4..da11fc2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -43,13 +43,16 @@ .config/pypoetry/config.toml linguist-language=TOML -.config/vifm/vifmrc linguist-language=Vim +.config/vifm/vifmrc linguist-language=Vim-script .config/fontconfig/fonts.conf linguist-language=XML .clang-format linguist-language=YAML .clang-tidy linguist-language=YAML +# not actually YAML yet +# .yarnrc linguist-language=YAML + # skews the stats due to its size .XCompose linguist-language=XCompose linguist-detectable=false diff --git a/.gitignore b/.gitignore index 4b46c6a..6c065a9 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,4 @@ Videos/ # Automatically appended node_modules/ -.yarn/ -.yarnrc .*history diff --git a/.pug-lintrc.json b/.pug-lintrc.json index 853422d..02c652c 100644 --- a/.pug-lintrc.json +++ b/.pug-lintrc.json @@ -16,7 +16,7 @@ "requireLowerCaseTags": true, "requireSpaceAfterCodeOperator": true, "requireSpecificAttributes": [ - {"object": ["src", "type"]}, + {"object": ["data", "type"]}, {"img": ["src", "alt"]}, {"a": ["href"]} ], diff --git a/.yarnrc b/.yarnrc new file mode 100644 index 0000000..5f469ca --- /dev/null +++ b/.yarnrc @@ -0,0 +1,14 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +disable-self-update-check true +email chronobserver@disroot.org +init-author-email chronobserver@disroot.org +init-author-name ObserverOfTime +init-author-url "https://observeroftime.github.io" +init-license MIT +init-version "0.1.0" +user-agent "yarn/1.19.1 node/v12.13.0 linux x64" +username ObserverOfTime +version-git-sign true diff --git a/README.md b/README.md index 571b2fd..25cf8d6 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ Managed via [dotfiles.sh](https://github.com/eli-schwartz/dotfiles.sh) ## [Bash](https://www.gnu.org/software/bash/) -* [.bash\_aliases](.bash_aliases): contains various aliases -* [.bash\_funcs](.bash_funcs): contains various functions -* [.bash\_profile](.bash_profile): login shell configuration file +* [.bash_aliases](.bash_aliases): contains various aliases +* [.bash_funcs](.bash_funcs): contains various functions +* [.bash_profile](.bash_profile): login shell configuration file * [.bashrc](.bashrc): interactive shell configuration file ## [Ccache](https://github.com/ccache/ccache) @@ -88,7 +88,7 @@ Managed via [dotfiles.sh](https://github.com/eli-schwartz/dotfiles.sh) * [.config/pip/pip.conf](.config/pip/pip.conf): configuration file -## [Poetry](https://github.com/sdispater/poetry) +## [Poetry](https://poetry.eustace.io/) * [.config/pypoetry/config.toml](.config/pypoetry/config.toml): configuration file @@ -119,6 +119,7 @@ Managed via [dotfiles.sh](https://github.com/eli-schwartz/dotfiles.sh) ## [Yarn](https://yarnpkg.com/lang/en/) * [.config/yarn/global/package.json](.config/yarn/global/package.json): package list +* [.yarnrc](.yarnrc): configuration file ## [Yay](https://github.com/Jguer/yay)