Compare commits

...

6 Commits

8 changed files with 45 additions and 34 deletions

View File

@ -482,7 +482,7 @@ text/calendar=calendar
message/delivery-status=cat message/delivery-status=cat
message/rfc822=cat message/rfc822=cat
#text/html=pandoc -f html -t plain | colorize #text/html=pandoc -f html -t plain | colorize
#text/html=html | colorize text/html=html
#text/*=bat -fP --file-name="$AERC_FILENAME" #text/*=bat -fP --file-name="$AERC_FILENAME"
#application/x-sh=bat -fP -l sh #application/x-sh=bat -fP -l sh
#image/*=catimg -w $(tput cols) - #image/*=catimg -w $(tput cols) -

View File

@ -54,10 +54,9 @@ end
# #
# qutebrowser profiles # qutebrowser profiles
# #
function discord; qutebrowser --basedir ~/.config/qbprof/dsc; end
# listenbrainz # listenbrainz
function lstb; qutebrowser --basedir ~/.config/qbprof/lstb; end function lstb; qbprof lstb; end
function work; qutebrowser --basedir ~/.config/qbprof/work; end function work; qbprof work; end
# git stuff # git stuff
abbr -a -- gs git status abbr -a -- gs git status

View File

@ -7,17 +7,6 @@ source ~/.config/fish/aliases.fish
# Set GPG_TTY # Set GPG_TTY
gpgt 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 # Disable fish greeting
set fish_greeting "" set fish_greeting ""

View File

@ -1 +1,3 @@
CTRL+p script-message osc-playlist CTRL+p script-message osc-playlist
CTRL+j seek 2
CTRL+k seek -2

View File

@ -9,3 +9,8 @@ c.bindings.commands["passthrough"] = {
} }
c.url.start_pages = "https://app.discord.com" 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

View File

@ -3,25 +3,26 @@
# Clean up useless dotfiles # Clean up useless dotfiles
rm -rf \ rm -rf \
.audacity-data \ ~/.audacity-data \
.mplayer \ ~/.mplayer \
.w3m \ ~/.w3m \
.wget-hsts \ ~/.wget-hsts \
.python_history \ ~/.python_history \
.units_history \ ~/.units_history \
.bash_history \ ~/.bash_history \
.avidemux6 \ ~/.avidemux6 \
.xsel.log \ ~/.xsel.log \
.gnuplot_history \ ~/.gnuplot_history \
.gnome \ ~/.gnome \
.wavemonrc \ ~/.wavemonrc \
.viminfo \ ~/.viminfo \
.icons\ ~/.icons\
.ipython \ ~/.ipython \
.android \ ~/.android \
.electron-gyp \ ~/.electron-gyp \
.yarn \ ~/.yarn \
.yarnrc ~/.yarnrc \
~/.vimspector.log
# ipython supports XDG_CONFIG just not by default # ipython supports XDG_CONFIG just not by default
mv ~/.ipython "$XDG_CONFIG_HOME"/ipython mv ~/.ipython "$XDG_CONFIG_HOME"/ipython

4
src/.local/bin/qbprof Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
# runs a qutebrowser profile
qutebrowser --basedir ~/.config/qbprof/"$1"

View File

@ -69,4 +69,15 @@ else
. "$XDG_CONFIG_HOME"/dot_profile . "$XDG_CONFIG_HOME"/dot_profile
fi 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 . .config/bashrc