summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbspwm/.config/bspwm/bspwmrc5
-rw-r--r--picom/.config/picom.conf7
-rw-r--r--sxhkd/.config/sxhkd/sxhkdrc14
-rw-r--r--x/.xinitrc5
-rw-r--r--zathura/.config/zathura/zathurarc4
-rw-r--r--zsh/.zshrc2
6 files changed, 19 insertions, 18 deletions
diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc
index 0eff3f8..f85c2c0 100755
--- a/bspwm/.config/bspwm/bspwmrc
+++ b/bspwm/.config/bspwm/bspwmrc
@@ -12,10 +12,7 @@ bspc config gapless_monocle true
12# rules 12# rules
13bspc rule -a Chromium desktop='^2' 13bspc rule -a Chromium desktop='^2'
14bspc rule -a Steam desktop='^6' 14bspc rule -a Steam desktop='^6'
15 15bspc rule -a "VirtualBox Manager" desktop='^6'
16# scratchpad
17bspc rule -a scratchpad sticky=on state=floating hidden=on
18[ "$(ps -x | grep -c 'scratchpad')" -eq "1" ] && st -c scratchpad -e ~/bin/scratch &
19 16
20# autostart 17# autostart
21xrdb -merge ~/.Xresources & 18xrdb -merge ~/.Xresources &
diff --git a/picom/.config/picom.conf b/picom/.config/picom.conf
index 9b4579a..a27d4a8 100644
--- a/picom/.config/picom.conf
+++ b/picom/.config/picom.conf
@@ -7,9 +7,10 @@ shadow-exclude = [
7 "name = 'Notification'", 7 "name = 'Notification'",
8 "class_g ?= 'Notify-osd'", 8 "class_g ?= 'Notify-osd'",
9 "class_g ?= 'dmenu'", 9 "class_g ?= 'dmenu'",
10 "class_g ?= 'panel'",
11 "class_g ?= 'spectrwm'",
10 "name = 'polybar'", 12 "name = 'polybar'",
11 "name = 'Polybar tray window'", 13 "name = 'Polybar tray window'",
12 "class_g ?= 'dwm'",
13 "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'", 14 "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
14 "class_g = 'Firefox' && argb", 15 "class_g = 'Firefox' && argb",
15 "_GTK_FRAME_EXTENTS@:c" 16 "_GTK_FRAME_EXTENTS@:c"
@@ -33,7 +34,7 @@ blur-background-exclude = [
33opacity-rule = [ 34opacity-rule = [
34 "40:class_g = 'Bspwm' && class_i = 'presel_feedback'", 35 "40:class_g = 'Bspwm' && class_i = 'presel_feedback'",
35 "100:class_g = 'URxvt' && focused", 36 "100:class_g = 'URxvt' && focused",
36 "95:class_g = 'URxvt' && !focused" 37 "90:class_g = 'URxvt' && !focused"
37]; 38];
38 39
39## FADING 40## FADING
@@ -74,4 +75,6 @@ corner-radius = 5;
74rounded-corners-exclude = [ 75rounded-corners-exclude = [
75 "name = 'bar'", 76 "name = 'bar'",
76 "class_g ?= 'dmenu'", 77 "class_g ?= 'dmenu'",
78 "class_g ?= 'panel'",
79 "class_g ?= 'spectrwm'"
77]; 80];
diff --git a/sxhkd/.config/sxhkd/sxhkdrc b/sxhkd/.config/sxhkd/sxhkdrc
index 38b99a4..8428888 100644
--- a/sxhkd/.config/sxhkd/sxhkdrc
+++ b/sxhkd/.config/sxhkd/sxhkdrc
@@ -5,19 +5,19 @@ super + shift + Return
5super + @space 5super + @space
6 dmenu_run -i -fn "JetBrains Mono Nerd Font Mono:style=medium:pixelsize=12.5" -nb "#f3f4f5" -nf "#2f2f2f" -sb "#626868" -sf "#ffffff" 6 dmenu_run -i -fn "JetBrains Mono Nerd Font Mono:style=medium:pixelsize=12.5" -nb "#f3f4f5" -nf "#2f2f2f" -sb "#626868" -sf "#ffffff"
7super + shift + w 7super + shift + w
8 chromium 8 chromium --profile-directory=Default
9control + alt + l 9control + alt + l
10 xset s activate 10 xset s activate
11super + shift + f 11super + shift + f
12 urxvtc -e ranger 12 urxvtc -e ranger
13super + n
14 urxvtc -e nvim ~/.cache/bujo/todo.md
13Print 15Print
14 screenshot f 16 ~/.local/bin/screenshot f
15control + Print 17control + Print
16 screenshot w 18 ~/.local/bin/screenshot w
17super + x
18 /home/fd0e/.local/bin/shut
19super + shift + p 19super + shift + p
20 /home/fd0e/.local/bin/passmenu 20 passmenu -i -fn "JetBrains Mono Nerd Font Mono:style=medium:pixelsize=12.5" -nb "#f3f4f5" -nf "#2f2f2f" -sb "#626868" -sf "#ffffff"
21super + Escape 21super + Escape
22 pkill -USR1 -x sxhkd 22 pkill -USR1 -x sxhkd
23 23
@@ -73,7 +73,7 @@ alt + {_,shift + }Tab
73super + bracket{left,right} 73super + bracket{left,right}
74 bspc desktop -f {prev,next}.local 74 bspc desktop -f {prev,next}.local
75# focus the last node/desktop 75# focus the last node/desktop
76super + {grave,Tab} 76super + Tab
77 bspc {node,desktop} -f last 77 bspc {node,desktop} -f last
78# focus the older or newer node in the focus history 78# focus the older or newer node in the focus history
79super + {o,i} 79super + {o,i}
diff --git a/x/.xinitrc b/x/.xinitrc
index 7cc89b1..5d8fcd9 100644
--- a/x/.xinitrc
+++ b/x/.xinitrc
@@ -1,7 +1,8 @@
1#!/bin/bash 1#!/bin/bash
2#/usr/bin/prime-offload & 2/usr/bin/prime-offload &
3xrdb -merge ~/.Xresources &
3setxkbmap -layout us -option caps:ctrl_modifier & 4setxkbmap -layout us -option caps:ctrl_modifier &
4xcape -e 'Caps_Lock=Escape' & 5xcape -e 'Caps_Lock=Escape' &
5# xrandr --setprovideroutputsource modesetting NVIDIA-0 6# xrandr --setprovideroutputsource modesetting NVIDIA-0
6# xrandr --auto 7# xrandr --auto
7exec bspwm 8exec spectrwm
diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc
index 1c03fd7..e49be4d 100644
--- a/zathura/.config/zathura/zathurarc
+++ b/zathura/.config/zathura/zathurarc
@@ -32,5 +32,5 @@ set completion-bg "#CD7860"
32set completion-fg "#7A9388" 32set completion-fg "#7A9388"
33set completion-highlight-bg "#CD7860" 33set completion-highlight-bg "#CD7860"
34set completion-highlight-fg "#7A9388" 34set completion-highlight-fg "#7A9388"
35set recolor-lightcolor "#f3f4f5" 35set recolor-lightcolor "#000000"
36set recolor-darkcolor "#a3a6ab" 36set recolor-darkcolor "#ffffff"
diff --git a/zsh/.zshrc b/zsh/.zshrc
index ebc4f94..9e75b56 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -10,7 +10,7 @@ export EDITOR="$VISUAL"
10export BROWSER=firefox 10export BROWSER=firefox
11export PATH=$PATH:$HOME/.local/bin:$HOME/bin 11export PATH=$PATH:$HOME/.local/bin:$HOME/bin
12export TERM=rxvt-unicode-256color 12export TERM=rxvt-unicode-256color
13export XDG_CURRENT_DESKTOP=bspwm 13export XDG_CURRENT_DESKTOP=spectrwm
14 14
15#aliases 15#aliases
16alias ls='ls --color=auto' 16alias ls='ls --color=auto'