added some music stuff, handy aliases, more browser config
This commit is contained in:
parent
f166fdbbb4
commit
be1dce8981
File diff suppressed because it is too large
Load diff
|
@ -1 +1,2 @@
|
|||
https://security.google.com/settings/security/apppasswords?pli=1 App passwords - Account Settings
|
||||
https://security.google.com/settings/security/apppasswords App passwords - Account Settings
|
||||
|
|
|
@ -356,7 +356,7 @@ keyhint-blacklist =
|
|||
do-not-track = true
|
||||
accept-language = en-US,en
|
||||
referer-header = same-domain
|
||||
user-agent =
|
||||
user-agent = Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36
|
||||
proxy = system
|
||||
proxy-dns-requests = true
|
||||
ssl-strict = ask
|
||||
|
@ -977,7 +977,11 @@ find-implementation = javascript
|
|||
# search term, e.g. `:open google qutebrowser`. The string `{}` will be
|
||||
# replaced by the search term, use `{{` and `}}` for literal `{`/`}`
|
||||
# signs.
|
||||
DEFAULT = https://duckduckgo.com/?q={}
|
||||
DEFAULT = ${google}
|
||||
google = https://www.google.com/search?hl=en&q={}
|
||||
duckduckgo = https://duckduckgo.com/?q={}
|
||||
d = ${duckduckgo}
|
||||
g = ${google}
|
||||
|
||||
[aliases]
|
||||
# Aliases for commands.
|
||||
|
@ -1427,7 +1431,7 @@ keyhint.bg = rgba(0, 0, 0, 80%)
|
|||
# keyhint (Font):
|
||||
# Font used in the keyhint widget.
|
||||
# Default: 8pt ${_monospace}
|
||||
_monospace = Monaco, Monospace, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier, "Liberation Mono", monospace, Fixed, Consolas, Terminal
|
||||
_monospace = Terminus, Monaco, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier, "Liberation Mono", monospace, Fixed, Consolas, Terminal
|
||||
completion = 8pt ${_monospace}
|
||||
tabbar = 8pt ${_monospace}
|
||||
statusbar = 8pt ${_monospace}
|
||||
|
@ -1435,7 +1439,7 @@ downloads = 8pt ${_monospace}
|
|||
hints = bold 13px Monospace
|
||||
debug-console = 8pt ${_monospace}
|
||||
web-family-standard =
|
||||
web-family-fixed = Monaco
|
||||
web-family-fixed = Terminus
|
||||
web-family-serif =
|
||||
web-family-sans-serif =
|
||||
web-family-cursive =
|
||||
|
|
8
env/sh/bashrc
vendored
8
env/sh/bashrc
vendored
|
@ -44,8 +44,12 @@ if [ -t 0 ]; then
|
|||
alias gp="git push"
|
||||
alias gac="git add -A && git commit -m"
|
||||
|
||||
# browser aliases
|
||||
alias qutebrowser="qutebrowser --backend webengine"
|
||||
|
||||
# networking aliases
|
||||
alias p="ping 8.8.8.8"
|
||||
alias wifi="sudo systemctl start netctl-auto@$(for wli in /sys/class/net/wl*; do echo $(basename $wli); break; done)"
|
||||
|
||||
# emacs aliases
|
||||
alias emacs="emacs -nw"
|
||||
|
@ -69,7 +73,7 @@ if [ -t 0 ]; then
|
|||
if [[ -f "$BAR_PID_FILE" ]]; then
|
||||
stopbar
|
||||
fi
|
||||
"$DOTFILES_PATH/wm/extras/bar/start.bash"
|
||||
"$BAR_PATH/start.bash"
|
||||
echo $! > "$BAR_PID_FILE"
|
||||
bg
|
||||
disown
|
||||
|
@ -144,7 +148,7 @@ if [ -t 0 ]; then
|
|||
if [[ -n $1 ]]; then
|
||||
addon="-$1"
|
||||
fi
|
||||
cd $(cat $DOTFILES_PATH/cwd$addon.tmp)
|
||||
cd $(cat "$DOTFILES_PATH/env/sh/cwd$addon.tmp")
|
||||
}
|
||||
export -f gcwd
|
||||
bind '"\C-g"':"\"gcwd\C-m\""
|
||||
|
|
3
env/x/xinitrc
vendored
3
env/x/xinitrc
vendored
|
@ -4,7 +4,7 @@ if [ -f ~/.fehbg ]; then
|
|||
~/.fehbg &
|
||||
fi
|
||||
|
||||
source "$DOTFILES_PATH/x/xloadresources"
|
||||
source "$DOTFILES_PATH/env/x/xloadresources"
|
||||
source "$DOTFILES_PATH/variables.bash"
|
||||
|
||||
# keyrepeat settings
|
||||
|
@ -23,5 +23,6 @@ fi
|
|||
# fire up wm
|
||||
unclutter &
|
||||
sxhkd &
|
||||
urxvtd &
|
||||
exec bspwm
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ pacaur -S \
|
|||
reptyr \
|
||||
urxvt-perls-git \
|
||||
mutt procmail msmtp \
|
||||
ncmpcpp mpd \
|
||||
--noconfirm --noedit
|
||||
|
||||
# sudo ln -s /usr/bin/google-chrome-unstable /usr/bin/chrome
|
||||
|
|
Reference in a new issue