diff options
author | Shubham Saini <pryr@pryr.xyz> | 2021-01-16 09:40:36 +0000 |
---|---|---|
committer | Shubham Saini <pryr@pryr.xyz> | 2021-01-16 09:40:36 +0000 |
commit | 6ac83326ddba3ebcb4866435a6df0ea75483ee03 (patch) | |
tree | 36fb5ce9d617fb620bab0825a98b09a32f0df8fe | |
parent | 5a58034071911286816bbf2418a349f7657494ab (diff) |
changes
-rwxr-xr-x | bin/.bin/disp | 4 | ||||
-rwxr-xr-x | bspwm/.config/bspwm/bspwmrc | 8 | ||||
-rwxr-xr-x | dunst/.config/dunst/dunstrc | 2 | ||||
-rwxr-xr-x | picom/.config/picom.conf | 1 | ||||
-rwxr-xr-x | polybar/.config/polybar/config | 3 | ||||
-rwxr-xr-x | sxhkd/.config/sxhkd/sxhkdrc | 6 | ||||
-rwxr-xr-x | x/.Xresources | 6 | ||||
-rwxr-xr-x | zathura/.config/zathura/zathurarc | 2 | ||||
-rwxr-xr-x | zsh/.zshrc | 4 |
9 files changed, 19 insertions, 17 deletions
diff --git a/bin/.bin/disp b/bin/.bin/disp index e6de4a8..89045b2 100755 --- a/bin/.bin/disp +++ b/bin/.bin/disp | |||
@@ -1,7 +1,7 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | status=$(cat /sys/class/drm/card0/*HDMI*/status) | 2 | status=$(cat /sys/class/drm/card0/*HDMI*/status) |
3 | if [ $status == "connected" ]; then | 3 | if [ $status == "connected" ]; then |
4 | xrandr --output eDP --primary --mode 1920x1080 --pos 0x1080 --rotate normal --output HDMI-A-0 --mode 1366x768 --pos 0x0 --scale 1.4x1.4 --rotate normal --output DisplayPort-0 --off | 4 | xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x1080 --rotate normal --output HDMI-1 --mode 1366x768 --pos 0x0 --scale 1.4x1.4 --rotate normal --output DisplayPort-0 --off |
5 | else | 5 | else |
6 | xrandr --output eDP --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-A-0 --off | 6 | xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-1 --off |
7 | fi | 7 | fi |
diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc index c68484b..1585d54 100755 --- a/bspwm/.config/bspwm/bspwmrc +++ b/bspwm/.config/bspwm/bspwmrc | |||
@@ -1,8 +1,8 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | # bspwm | 3 | # bspwm |
4 | bspc monitor eDP -d 1 2 3 4 5 6 | 4 | bspc monitor -d 1 2 3 4 5 6 |
5 | bspc config border_width 3 | 5 | bspc config border_width 0 |
6 | bspc config window_gap 8 | 6 | bspc config window_gap 8 |
7 | bspc config split_ratio 0.50 | 7 | bspc config split_ratio 0.50 |
8 | bspc config focus_follows_pointer true | 8 | bspc config focus_follows_pointer true |
@@ -15,7 +15,7 @@ bspc config active_border_color '#171a1f' | |||
15 | bspc config focused_border_color '#20242a' | 15 | bspc config focused_border_color '#20242a' |
16 | 16 | ||
17 | # rules | 17 | # rules |
18 | bspc rule -a firefox desktop='^2' | 18 | bspc rule -a Brave-browser desktop='^2' |
19 | bspc rule -a Steam desktop='^6' | 19 | bspc rule -a Steam desktop='^6' |
20 | bspc rule -a "VirtualBox Manager" desktop='^6' | 20 | bspc rule -a "VirtualBox Manager" desktop='^6' |
21 | 21 | ||
@@ -29,7 +29,7 @@ xset s 300 & | |||
29 | ~/.fehbg & | 29 | ~/.fehbg & |
30 | urxvtd & | 30 | urxvtd & |
31 | ~/.bin/bat_check & | 31 | ~/.bin/bat_check & |
32 | picom & | 32 | picom --experimental-backends & |
33 | dunst & | 33 | dunst & |
34 | ~/.config/polybar/launch.sh & | 34 | ~/.config/polybar/launch.sh & |
35 | sudo rtcwake -m mem -s 1 | 35 | sudo rtcwake -m mem -s 1 |
diff --git a/dunst/.config/dunst/dunstrc b/dunst/.config/dunst/dunstrc index 60b6658..6716cf5 100755 --- a/dunst/.config/dunst/dunstrc +++ b/dunst/.config/dunst/dunstrc | |||
@@ -28,7 +28,7 @@ | |||
28 | 28 | ||
29 | # Font and typography settings | 29 | # Font and typography settings |
30 | icon_path = /home/x/.icons/Blue-Maia/status/:/home/x/.icons/Blue-Maia/status/devices/:/home/x/.icons/Blue-Maia/status/apps | 30 | icon_path = /home/x/.icons/Blue-Maia/status/:/home/x/.icons/Blue-Maia/status/devices/:/home/x/.icons/Blue-Maia/status/apps |
31 | font = JetBrains Mono Nerd Font Mono 10 | 31 | font = Input Mono 10 |
32 | alignment = center | 32 | alignment = center |
33 | show_age_threshold = 60 | 33 | show_age_threshold = 60 |
34 | ellipsize = middle | 34 | ellipsize = middle |
diff --git a/picom/.config/picom.conf b/picom/.config/picom.conf index 6728dcd..38ff676 100755 --- a/picom/.config/picom.conf +++ b/picom/.config/picom.conf | |||
@@ -60,6 +60,7 @@ wintypes: | |||
60 | }; | 60 | }; |
61 | 61 | ||
62 | ## MISC | 62 | ## MISC |
63 | experimental-backends = true; | ||
63 | backend = "glx"; | 64 | backend = "glx"; |
64 | mark-wmwin-focused = true; | 65 | mark-wmwin-focused = true; |
65 | mark-ovredir-focused = true; | 66 | mark-ovredir-focused = true; |
diff --git a/polybar/.config/polybar/config b/polybar/.config/polybar/config index 67965f1..9651eff 100755 --- a/polybar/.config/polybar/config +++ b/polybar/.config/polybar/config | |||
@@ -31,7 +31,8 @@ padding-left = 2 | |||
31 | padding-right = 2 | 31 | padding-right = 2 |
32 | module-margin-left = 1.5 | 32 | module-margin-left = 1.5 |
33 | module-margin-right = 1.5 | 33 | module-margin-right = 1.5 |
34 | font-0 = JetBrains Mono Nerd Font Mono:style=medium:size=11.5:antialias=true:autohint=true:lcdfilter=lcddefault:rgba=rgb | 34 | font-0 = Input Mono:style=medium:size=11.5:antialias=true:autohint=true:lcdfilter=lcddefault:rgba=rgb |
35 | font-1 = JetBrains Mono Nerd Font Mono:style=medium:size=11.5:antialias=true:autohint=true:lcdfilter=lcddefault:rgba=rgb | ||
35 | modules-left = pulseaudio battery date time cmus | 36 | modules-left = pulseaudio battery date time cmus |
36 | modules-center = | 37 | modules-center = |
37 | modules-right = bspwm | 38 | modules-right = bspwm |
diff --git a/sxhkd/.config/sxhkd/sxhkdrc b/sxhkd/.config/sxhkd/sxhkdrc index 69126ac..79629ea 100755 --- a/sxhkd/.config/sxhkd/sxhkdrc +++ b/sxhkd/.config/sxhkd/sxhkdrc | |||
@@ -3,11 +3,11 @@ super + Return | |||
3 | super + shift + Return | 3 | super + shift + Return |
4 | bspc rule -a \* -o state=floating && urxvtc | 4 | bspc rule -a \* -o state=floating && urxvtc |
5 | super + @space | 5 | super + @space |
6 | dmenu_run -i -fn "JetBrains Mono Nerd Font Mono:style=medium:size=9" -nb "#171a1f" -nf "#f3f4f5" -sb "#c6c8d1" -sf "#171a1f" | 6 | dmenu_run -i -fn "Input Mono:style=medium:size=9" -nb "#171a1f" -nf "#f3f4f5" -sb "#c6c8d1" -sf "#171a1f" |
7 | super + x | 7 | super + x |
8 | ~/.bin/shut | 8 | ~/.bin/shut |
9 | super + shift + w | 9 | super + shift + w |
10 | firefox | 10 | brave |
11 | control + alt + l | 11 | control + alt + l |
12 | xset s activate | 12 | xset s activate |
13 | super + shift + f | 13 | super + shift + f |
@@ -21,7 +21,7 @@ control + Print | |||
21 | control + shift + Print | 21 | control + shift + Print |
22 | maim -s ~/scrots/$(date +%d-%b-%y-%I:%M%p).png | 22 | maim -s ~/scrots/$(date +%d-%b-%y-%I:%M%p).png |
23 | super + shift + p | 23 | super + shift + p |
24 | passmenu -i -fn "JetBrains Mono Nerd Font Mono:style=medium:size=9" -nb "#171a1f" -nf "#f3f4f5" -sb "#c6c8d1" -sf "#171a1f" | 24 | passmenu -i -fn "Input Mono:style=medium:size=9" -nb "#171a1f" -nf "#f3f4f5" -sb "#c6c8d1" -sf "#171a1f" |
25 | super + Escape | 25 | super + Escape |
26 | pkill -USR1 -x sxhkd | 26 | pkill -USR1 -x sxhkd |
27 | 27 | ||
diff --git a/x/.Xresources b/x/.Xresources index 8d821aa..2637192 100755 --- a/x/.Xresources +++ b/x/.Xresources | |||
@@ -36,11 +36,11 @@ | |||
36 | *.color15: #F8F8F2 | 36 | *.color15: #F8F8F2 |
37 | 37 | ||
38 | URxvt.cursorBlink : 1 | 38 | URxvt.cursorBlink : 1 |
39 | URxvt.font :xft:JetBrainsMono Nerd Font Mono:size=10:style=Regular \ | 39 | URxvt.font :xft:Input Mono:size=10:style=Regular \ |
40 | xft:DejaVu Sans Mono:size=9:style=Medium | 40 | xft:DejaVu Sans Mono:size=9:style=Medium |
41 | 41 | ||
42 | URxvt.italicFont :xft:JetBrainsMono Nerd Font Mono:size=10:style=Italic | 42 | URxvt.italicFont :xft:Input Mono:size=10:style=Italic |
43 | URxvt.boldFont :xft:JetBrainsMono Nerd Font Mono:size=10:style=Bold | 43 | URxvt.boldFont :xft:Input Mono:size=10:style=Bold |
44 | 44 | ||
45 | URxvt.lineSpace : 0 | 45 | URxvt.lineSpace : 0 |
46 | URxvt.letterSpace : 0 | 46 | URxvt.letterSpace : 0 |
diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc index e49be4d..87d44d0 100755 --- a/zathura/.config/zathura/zathurarc +++ b/zathura/.config/zathura/zathurarc | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | # NOTE: This file is automatically generated by pywal. Do not edit it by hand. | 4 | # NOTE: This file is automatically generated by pywal. Do not edit it by hand. |
5 | 5 | ||
6 | set font "JetBrainsMono Nerd Font Mono 8" # Use Hack as our font of choice | 6 | set font "Input Mono 8" # Use Hack as our font of choice |
7 | #set guioptions "v" # Show a "progress bar" when scrolling up/down | 7 | #set guioptions "v" # Show a "progress bar" when scrolling up/down |
8 | set adjust-open "width" # Make documents take up all the available space by default | 8 | set adjust-open "width" # Make documents take up all the available space by default |
9 | set statusbar-basename "true" # When using the status bar, show the basename only | 9 | set statusbar-basename "true" # When using the status bar, show the basename only |
@@ -7,7 +7,7 @@ setopt appendhistory hist_ignore_all_dups hist_ignore_space | |||
7 | #exports | 7 | #exports |
8 | export VISUAL=nvim | 8 | export VISUAL=nvim |
9 | export EDITOR="$VISUAL" | 9 | export EDITOR="$VISUAL" |
10 | export BROWSER=chromium | 10 | export BROWSER=brave |
11 | export PATH=$PATH:$HOME/.bin | 11 | export PATH=$PATH:$HOME/.bin |
12 | export TERM=rxvt-unicode-256color | 12 | export TERM=rxvt-unicode-256color |
13 | export XDG_CURRENT_DESKTOP=bspwm | 13 | export XDG_CURRENT_DESKTOP=bspwm |
@@ -51,7 +51,7 @@ rmdata() { | |||
51 | 51 | ||
52 | # Enable colors and change prompt: | 52 | # Enable colors and change prompt: |
53 | autoload -U colors && colors | 53 | autoload -U colors && colors |
54 | fpath+=$HOME/.config/zsh/pure | 54 | fpath+=$HOME/.cache/zsh/pure |
55 | autoload -U promptinit; promptinit | 55 | autoload -U promptinit; promptinit |
56 | prompt pure | 56 | prompt pure |
57 | PURE_PROMPT_SYMBOL=$ | 57 | PURE_PROMPT_SYMBOL=$ |