Compare commits

...

4 Commits

Author SHA1 Message Date
bfbe7c3467
Added cache mpv 2021-10-23 22:11:08 +02:00
6557b663de
Added alias cl as Collage 2021-10-23 22:10:39 +02:00
324d73a23a
Changed youtube-dl to yt-dlp 2021-10-23 22:10:13 +02:00
f0bb95cafd
Added vim keys into newsboat 2021-10-23 22:09:49 +02:00
5 changed files with 22 additions and 3 deletions

View File

@ -6,7 +6,6 @@ force-window=yes
keep-open=yes
# Always save the current playback position on exit
save-position-on-quit=yes
# Create 'high-quality' profile
[high-quality]
# Describe this profile
@ -15,3 +14,7 @@ profile-desc="High quality rendering"
profile=opengl-hq
# Disable debanding for better performance
deband=no
# restrict readahead and backbuffer to 40MiB from default of 400MiB
cache=yes
demuxer-max-bytes=41943040
demuxer-max-back-bytes=41943040

View File

@ -15,6 +15,21 @@ unbind-key p
bind-key n next
bind-key p prev
# unbind keys
unbind-key ENTER
unbind-key j
unbind-key k
unbind-key J
unbind-key K
# bind keys - vim style
bind-key j down
bind-key k up
bind-key l open
bind-key h quit
bind-key ESC quit
highlight all "====.*====" yellow
color listnormal cyan default
color listfocus black yellow standout bold
color listnormal_unread blue default

View File

@ -1,2 +1,2 @@
#!/bin/bash
youtube-dl --extract-audio --audio-format mp3 $1
yt-dlp --extract-audio --audio-format mp3 $1

View File

@ -1,2 +1,2 @@
#!/bin/bash
youtube-dl $1
yt-dlp $1

1
.zshrc
View File

@ -106,6 +106,7 @@ alias mgr="cd $HOME/Documents/Mega-Documents/Magisterka-Marcin/Semestr1/"
alias aria2c="aria2c --seed-time=0 --disable-ipv6 --max-upload-limit=1k"
alias lg="lazygit"
alias update-brew="brew upgrade --cask"
alias cl="cd $HOME/Documents/Collage/Semestr2"
# Cleaning-up
export PATH=$HOME/.local/bin:$PATH