summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbspwm/.config/bspwm/bspwmrc7
-rw-r--r--compton/.config/compton.conf2
-rw-r--r--zsh/.zimrc5
-rw-r--r--zsh/.zshrc4
4 files changed, 14 insertions, 4 deletions
diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc
index 5d517a2..8ed07b1 100755
--- a/bspwm/.config/bspwm/bspwmrc
+++ b/bspwm/.config/bspwm/bspwmrc
@@ -5,6 +5,7 @@ sh ~/.fehbg &
xfce4-panel -d &
pnmixer &
compton &
+nm-applet &
bspc monitor -d I II III IV V VI VII VIII IX X
#bspc monitor eDP-1 -d I II III IV V
@@ -18,7 +19,7 @@ bspc config window_gap 8
bspc config split_ratio 0.52
bspc config borderless_monocle true
bspc config gapless_monocle true
-bspc config click_to_focus true
+bspc config click_to_focus button1
bspc config directional_focus_tightness low
bspc rule -a Firefox desktop='^1' follow=on
@@ -36,3 +37,7 @@ bspc rule -a Seahorse state=floating
bspc rule -a mpv state=floating
bspc rule -a Evince state=floating
bspc rule -a Meld state=floating
+bspc rule -a Autokey-gtk state=floating
+bspc rule -a Mousepad state=floating
+bspc rule -a Wrapper-1.0 state=floating
+bspc rule -a File-roller state=floating
diff --git a/compton/.config/compton.conf b/compton/.config/compton.conf
index 726f7f8..39a5794 100644
--- a/compton/.config/compton.conf
+++ b/compton/.config/compton.conf
@@ -84,7 +84,7 @@ glx-swap-method = "undefined"; # See man page.
# Window type settings
wintypes:
{
- tooltip = { fade = true; shadow = false; opacity = 0.75; focus = true; };
+ tooltip = { fade = true; shadow = false; opacity = 1; focus = true; };
menu = { shadow = false; };
dropdown_menu = { shadow = false; };
popup_menu = { shadow = false; };
diff --git a/zsh/.zimrc b/zsh/.zimrc
index e53678e..2b07dee 100644
--- a/zsh/.zimrc
+++ b/zsh/.zimrc
@@ -24,10 +24,11 @@ zmodules=(directory environment git git-info history input ssh utility meta cust
#
# Set your desired prompt here
-#zprompt_theme='pure'
+zprompt_theme='pure'
#zprompt_theme='gitster'
-zprompt_theme='minimal'
+#zprompt_theme='minimal'
PURE_PROMPT_SYMBOL=λ
+#PURE_PROMPT_SYMBOL=➜
#
# Completion
diff --git a/zsh/.zshrc b/zsh/.zshrc
index eafbbc2..5ca4c1b 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -4,6 +4,9 @@ export WORDCHARS='*?-[]~=&;!#$%^(){}<>'
fpath+=~/.zfunc
+disable -r time # disable shell reserved word
+alias time='time -p' # -p for POSIX output
+
# rehash if last command was pacaur or pacman
# (so that zsh picks up changes in $PATH immediately)
TRAPUSR1() { rehash}; precmd() { [[ $history[$[ HISTCMD -1 ]] == *(pacaur|pacman)* ]] && killall -USR1 zsh }
@@ -31,3 +34,4 @@ alias mv="mv -iv"
alias cp="cp -iv"
alias scl=systemctl
alias jcl=journalctl
+alias m="mbsync -Va; getmail; notmuch new"