Compare commits

...

4 Commits

Author SHA1 Message Date
Felipe M 775eb636d4
qutebrowser quickmarks 2021-01-27 11:09:53 +01:00
Felipe M c22fd22249
zsh: Added helper function to convert webp to jpg 2021-01-27 11:09:20 +01:00
Felipe M 3572cee7ea
config: Replaced caja with nemo 2021-01-27 11:08:50 +01:00
Felipe M 9df1d477da
config: qutebrowser font 2021-01-27 11:08:13 +01:00
4 changed files with 13 additions and 1 deletions

View File

@ -18,6 +18,9 @@ def filter_youtube_ads(info: interceptor.Request):
interceptor.register(filter_youtube_ads)
# Fonts
c.fonts.default_family = "Terminus"
# Session save/restore
c.auto_save.session = True
c.auto_save.interval = 15000

View File

@ -3,3 +3,4 @@ gh https://github.com/
yt https://www.youtube.com/
tw https://twitter.com/
1p https://my.1password.com/signin
code https://code.fmartingr.dev/

View File

@ -1,5 +1,5 @@
set $locker ~/.dotfiles/bin/lock.sh
set $fileManager caja
set $fileManager nemo
# Notifications:
bindsym ctrl+space exec makoctl dismiss

8
.zshrc
View File

@ -7,6 +7,14 @@ source $ZSH/oh-my-zsh.sh
alias magit="emacs -nw --eval '(progn (magit-status) (delete-other-windows))'"
alias ytdlf="youtube-dl -a ./youtube-dl.txt -f best -o \"./%(playlist_title)s/%(playlist_index)s_%(title)s.%(ext)s\""
function webp2jpg {
for x in ls *.webp; do
ffmpeg -i "$x" "${x%.webp}.jpg";
done
rm *.webp
}
# GPG tty
export GPG_TTY=$(tty)