Compare commits
6 Commits
d96f968510
...
7230f5d30f
Author | SHA1 | Date | |
---|---|---|---|
7230f5d30f | |||
cb02abb883 | |||
4041761636 | |||
22c168d67a | |||
7cda582e5c | |||
c044ac6457 |
@ -482,7 +482,7 @@ text/calendar=calendar
|
||||
message/delivery-status=cat
|
||||
message/rfc822=cat
|
||||
#text/html=pandoc -f html -t plain | colorize
|
||||
#text/html=html | colorize
|
||||
text/html=html
|
||||
#text/*=bat -fP --file-name="$AERC_FILENAME"
|
||||
#application/x-sh=bat -fP -l sh
|
||||
#image/*=catimg -w $(tput cols) -
|
||||
|
@ -54,10 +54,9 @@ end
|
||||
#
|
||||
# qutebrowser profiles
|
||||
#
|
||||
function discord; qutebrowser --basedir ~/.config/qbprof/dsc; end
|
||||
# listenbrainz
|
||||
function lstb; qutebrowser --basedir ~/.config/qbprof/lstb; end
|
||||
function work; qutebrowser --basedir ~/.config/qbprof/work; end
|
||||
function lstb; qbprof lstb; end
|
||||
function work; qbprof work; end
|
||||
|
||||
# git stuff
|
||||
abbr -a -- gs git status
|
||||
|
@ -7,17 +7,6 @@ source ~/.config/fish/aliases.fish
|
||||
# Set GPG_TTY
|
||||
gpgt
|
||||
|
||||
# Add .local/bin to path
|
||||
set -gx PATH "$PATH:$HOME/.local/bin:"
|
||||
set -gx PATH "$PATH:$HOME/.local/bin/deskutils:"
|
||||
set -gx PATH "$PATH:$HOME/.local/bin/deskutils/soundboard:"
|
||||
|
||||
set -gx PATH "$PATH:$XDG_DATA_HOME/npm/bin"
|
||||
set -gx PATH "$PATH:$XDG_DATA_HOME/go/bin"
|
||||
|
||||
# cppman can't set it itself for some reason
|
||||
set -gx MANPATH "$MANPATH:/home/dogeystamp/.cache/cppman/"
|
||||
|
||||
# Disable fish greeting
|
||||
set fish_greeting ""
|
||||
|
||||
|
@ -1 +1,3 @@
|
||||
CTRL+p script-message osc-playlist
|
||||
CTRL+j seek 2
|
||||
CTRL+k seek -2
|
||||
|
@ -9,3 +9,8 @@ c.bindings.commands["passthrough"] = {
|
||||
}
|
||||
|
||||
c.url.start_pages = "https://app.discord.com"
|
||||
|
||||
c.fonts.default_family = "JetBrains Mono"
|
||||
c.downloads.location.directory = "~/quar/"
|
||||
c.scrolling.smooth = True
|
||||
c.downloads.remove_finished = 1000
|
||||
|
@ -3,25 +3,26 @@
|
||||
# Clean up useless dotfiles
|
||||
|
||||
rm -rf \
|
||||
.audacity-data \
|
||||
.mplayer \
|
||||
.w3m \
|
||||
.wget-hsts \
|
||||
.python_history \
|
||||
.units_history \
|
||||
.bash_history \
|
||||
.avidemux6 \
|
||||
.xsel.log \
|
||||
.gnuplot_history \
|
||||
.gnome \
|
||||
.wavemonrc \
|
||||
.viminfo \
|
||||
.icons\
|
||||
.ipython \
|
||||
.android \
|
||||
.electron-gyp \
|
||||
.yarn \
|
||||
.yarnrc
|
||||
~/.audacity-data \
|
||||
~/.mplayer \
|
||||
~/.w3m \
|
||||
~/.wget-hsts \
|
||||
~/.python_history \
|
||||
~/.units_history \
|
||||
~/.bash_history \
|
||||
~/.avidemux6 \
|
||||
~/.xsel.log \
|
||||
~/.gnuplot_history \
|
||||
~/.gnome \
|
||||
~/.wavemonrc \
|
||||
~/.viminfo \
|
||||
~/.icons\
|
||||
~/.ipython \
|
||||
~/.android \
|
||||
~/.electron-gyp \
|
||||
~/.yarn \
|
||||
~/.yarnrc \
|
||||
~/.vimspector.log
|
||||
|
||||
# ipython supports XDG_CONFIG just not by default
|
||||
mv ~/.ipython "$XDG_CONFIG_HOME"/ipython
|
||||
|
4
src/.local/bin/qbprof
Executable file
4
src/.local/bin/qbprof
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
# runs a qutebrowser profile
|
||||
|
||||
qutebrowser --basedir ~/.config/qbprof/"$1"
|
11
src/.profile
11
src/.profile
@ -69,4 +69,15 @@ else
|
||||
. "$XDG_CONFIG_HOME"/dot_profile
|
||||
fi
|
||||
|
||||
# Add .local/bin to path
|
||||
export PATH="$PATH":~/.local/bin
|
||||
export PATH="$PATH":~/.local/bin/deskutils
|
||||
export PATH="$PATH":~/.local/bin/deskutils/soundboard
|
||||
|
||||
export PATH="$PATH":"$XDG_DATA_HOME"/npm/bin
|
||||
export PATH="$PATH":"$XDG_DATA_HOME"/go/bin
|
||||
|
||||
# cppman can't set it itself for some reason
|
||||
export MANPATH="$MANPATH":~/.cache/cppman/
|
||||
|
||||
. .config/bashrc
|
||||
|
Loading…
x
Reference in New Issue
Block a user