aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after
diff options
context:
space:
mode:
Diffstat (limited to '.zsh.after')
-rw-r--r--.zsh.after/aliases.zsh1
-rw-r--r--.zsh.after/export.zsh3
-rw-r--r--.zsh.after/functions.zsh10
3 files changed, 11 insertions, 3 deletions
diff --git a/.zsh.after/aliases.zsh b/.zsh.after/aliases.zsh
index b292b7a..e9109a9 100644
--- a/.zsh.after/aliases.zsh
+++ b/.zsh.after/aliases.zsh
@@ -39,6 +39,7 @@ for index ({1..9}) alias "$index"="cd +${index}"; unset index
#MPLAYER
alias mplayer='mplayer -ao jack,pulse,alsa'
+alias mpv='mpv -ao jack,pulse,alsa'
##DU
alias du1='du -hd1'
diff --git a/.zsh.after/export.zsh b/.zsh.after/export.zsh
index 866f20d..01d2e48 100644
--- a/.zsh.after/export.zsh
+++ b/.zsh.after/export.zsh
@@ -7,6 +7,9 @@ fi
# use de_DE.UTF-8 to get 24h format
export LC_TIME=de_DE.UTF-8
+# keyboard exports for sway
+export XKB_DEFAULT_LAYOUT=de
+
# browser
export BROWSER=firefox
export REPORTTIME=5
diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh
index f336e50..da7cda4 100644
--- a/.zsh.after/functions.zsh
+++ b/.zsh.after/functions.zsh
@@ -169,9 +169,13 @@ function publish() {
mute popd
}
-function securium {
- port=44350
- chromium --proxy-server="socks://localhost:$port" &
+function incognichrome {
+ chromium --incognito
+ exit
+}
+
+function inproxychrome {
+ chromium --incognito --proxy-server=apu-serve:8123
exit
}