diff options
| author | Shubham Saini <pryr@pryr.xyz> | 2020-09-19 07:45:53 +0000 |
|---|---|---|
| committer | Shubham Saini <pryr@pryr.xyz> | 2020-09-19 07:45:53 +0000 |
| commit | 3e09a205735b419e80e21970c53ec554a78886c4 (patch) | |
| tree | 5772dcd28587dabed3d82dab3bd6788ebc16d6cd | |
| parent | 025c2ef519ff7c5d498b2c4aed2591aeb685f85c (diff) | |
dark
| -rwxr-xr-x | dunst/.config/dunst/dunstrc | 14 | ||||
| -rwxr-xr-x | nvim/.config/nvim/init.vim | 4 | ||||
| -rwxr-xr-x | polybar/.config/polybar/cmus.sh | 3 | ||||
| -rwxr-xr-x | polybar/.config/polybar/config | 22 | ||||
| -rwxr-xr-x | sxhkd/.config/sxhkd/sxhkdrc | 2 | ||||
| -rwxr-xr-x | x/.Xresources | 73 | ||||
| -rwxr-xr-x | zsh/.zshrc | 4 |
7 files changed, 69 insertions, 53 deletions
diff --git a/dunst/.config/dunst/dunstrc b/dunst/.config/dunst/dunstrc index a6941fe..a1db2fc 100755 --- a/dunst/.config/dunst/dunstrc +++ b/dunst/.config/dunst/dunstrc | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | horizontal_padding = 14 | 19 | horizontal_padding = 14 |
| 20 | 20 | ||
| 21 | # The frame color and width of the notification | 21 | # The frame color and width of the notification |
| 22 | frame_color = "#2f2f2f" | 22 | frame_color = "#161616" |
| 23 | frame_width = 5 | 23 | frame_width = 5 |
| 24 | line_height = 0 | 24 | line_height = 0 |
| 25 | 25 | ||
| @@ -67,18 +67,18 @@ | |||
| 67 | 67 | ||
| 68 | # Set the background and foreground (text) color for all notifications | 68 | # Set the background and foreground (text) color for all notifications |
| 69 | [urgency_low] | 69 | [urgency_low] |
| 70 | background = "#f3f4f5" | 70 | background = "#000000" |
| 71 | foreground = "#2f2f2f" | 71 | foreground = "#eeffff" |
| 72 | timeout = 5 | 72 | timeout = 5 |
| 73 | 73 | ||
| 74 | [urgency_normal] | 74 | [urgency_normal] |
| 75 | background = "#f3f4f5" | 75 | background = "#000000" |
| 76 | foreground = "#2f2f2f" | 76 | foreground = "#eeffff" |
| 77 | timeout = 5 | 77 | timeout = 5 |
| 78 | 78 | ||
| 79 | [urgency_critical] | 79 | [urgency_critical] |
| 80 | background = "#f3f4f5" | 80 | background = "#000000" |
| 81 | foreground = "#2f2f2f" | 81 | foreground = "#eeffff" |
| 82 | timeout = 0 | 82 | timeout = 0 |
| 83 | # vim:ft=cfg | 83 | # vim:ft=cfg |
| 84 | 84 | ||
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 1184e2d..e736f28 100755 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim | |||
| @@ -17,7 +17,7 @@ call plug#end() | |||
| 17 | set guicursor= | 17 | set guicursor= |
| 18 | set number relativenumber | 18 | set number relativenumber |
| 19 | set mouse=a | 19 | set mouse=a |
| 20 | set background=light | 20 | set background=dark |
| 21 | syntax enable | 21 | syntax enable |
| 22 | set cursorline | 22 | set cursorline |
| 23 | set ignorecase | 23 | set ignorecase |
| @@ -32,7 +32,7 @@ set shiftwidth=4 " number of spaces to use for autoindent | |||
| 32 | set expandtab " tabs are space | 32 | set expandtab " tabs are space |
| 33 | set autoindent | 33 | set autoindent |
| 34 | set copyindent " copy indent from the previous line | 34 | set copyindent " copy indent from the previous line |
| 35 | colorscheme pencil | 35 | colorscheme plain |
| 36 | "hi Normal ctermbg=16 guibg=#000000 | 36 | "hi Normal ctermbg=16 guibg=#000000 |
| 37 | "hi LineNr ctermbg=16 guibg=#000000 | 37 | "hi LineNr ctermbg=16 guibg=#000000 |
| 38 | 38 | ||
diff --git a/polybar/.config/polybar/cmus.sh b/polybar/.config/polybar/cmus.sh index 7917d4c..c425f0b 100755 --- a/polybar/.config/polybar/cmus.sh +++ b/polybar/.config/polybar/cmus.sh | |||
| @@ -14,7 +14,8 @@ if [[ $artist = *[!\ ]* ]]; then | |||
| 14 | duration=$(cmus-remote -C status | grep duration | cut -c 10-) | 14 | duration=$(cmus-remote -C status | grep duration | cut -c 10-) |
| 15 | minutes2=$(prepend_zero $(($duration / 60))) | 15 | minutes2=$(prepend_zero $(($duration / 60))) |
| 16 | seconds2=$(prepend_zero $(($duration % 60))) | 16 | seconds2=$(prepend_zero $(($duration % 60))) |
| 17 | echo -n "$artist - $song [$minutes1:$seconds1/$minutes2:$seconds2]" | 17 | # echo -n "$artist - $song [$minutes1:$seconds1/$minutes2:$seconds2]" |
| 18 | echo -n "$song [$minutes1:$seconds1/$minutes2:$seconds2]" | ||
| 18 | else | 19 | else |
| 19 | echo | 20 | echo |
| 20 | fi | 21 | fi |
diff --git a/polybar/.config/polybar/config b/polybar/.config/polybar/config index 5d9462d..0ad7cf4 100755 --- a/polybar/.config/polybar/config +++ b/polybar/.config/polybar/config | |||
| @@ -2,11 +2,11 @@ | |||
| 2 | screenchange-reload = true | 2 | screenchange-reload = true |
| 3 | 3 | ||
| 4 | [colors] | 4 | [colors] |
| 5 | #background = ${xrdb:color0:#222} | 5 | ;background = ${xrdb:background:#060808} |
| 6 | background = ${xrdb:background:#060808} | 6 | background = #00000000 |
| 7 | background-alt = ${xrdb:color0:#000} | 7 | background-alt = ${xrdb:color0:#000} |
| 8 | ;foreground = ${xrdb:color7:#222} | 8 | ;foreground = ${xrdb:foreground:#c5c8c6} |
| 9 | foreground = ${xrdb:foreground:#c5c8c6} | 9 | foreground = #5e5c5c |
| 10 | foreground-alt = ${xrdb:colorBD:#444} | 10 | foreground-alt = ${xrdb:colorBD:#444} |
| 11 | primary = ${xrdb:color4:#ffb52a} | 11 | primary = ${xrdb:color4:#ffb52a} |
| 12 | secondary = ${xrdb:color3:#e60053} | 12 | secondary = ${xrdb:color3:#e60053} |
| @@ -111,14 +111,14 @@ type = internal/date | |||
| 111 | interval = 1.0 | 111 | interval = 1.0 |
| 112 | date = %I:%M %p | 112 | date = %I:%M %p |
| 113 | label = %date% | 113 | label = %date% |
| 114 | label-foreground = #565e65 | 114 | label-foreground = #EEFFFF |
| 115 | format = time <label> | 115 | format = time <label> |
| 116 | 116 | ||
| 117 | [module/date] | 117 | [module/date] |
| 118 | type = internal/date | 118 | type = internal/date |
| 119 | date = %a, %d %b | 119 | date = %a, %d %b |
| 120 | label = %date% | 120 | label = %date% |
| 121 | label-foreground = #565e65 | 121 | label-foreground = #EEFFFF |
| 122 | format= date <label> | 122 | format= date <label> |
| 123 | 123 | ||
| 124 | [module/battery] | 124 | [module/battery] |
| @@ -128,11 +128,11 @@ adapter = ADP1 | |||
| 128 | poll-interval = 1 | 128 | poll-interval = 1 |
| 129 | ;full-at = 98 | 129 | ;full-at = 98 |
| 130 | label-discharging = %percentage%% | 130 | label-discharging = %percentage%% |
| 131 | label-discharging-foreground = #565e65 | 131 | label-discharging-foreground = #EEFFFF |
| 132 | label-charging = %percentage%% | 132 | label-charging = %percentage%% |
| 133 | label-charging-foreground = #565e65 | 133 | label-charging-foreground = #EEFFFF |
| 134 | label-full = %percentage%% | 134 | label-full = %percentage%% |
| 135 | label-full-foreground = #565e65 | 135 | label-full-foreground = #EEFFFF |
| 136 | format-discharging = bat <label-discharging> | 136 | format-discharging = bat <label-discharging> |
| 137 | format-full = ^bat <label-full> | 137 | format-full = ^bat <label-full> |
| 138 | format-charging = +bat <label-charging> | 138 | format-charging = +bat <label-charging> |
| @@ -141,7 +141,7 @@ format-charging = +bat <label-charging> | |||
| 141 | type = internal/pulseaudio | 141 | type = internal/pulseaudio |
| 142 | format-volume = vol <label-volume> | 142 | format-volume = vol <label-volume> |
| 143 | label-volume = %percentage%% | 143 | label-volume = %percentage%% |
| 144 | label-volume-foreground = #565e65 | 144 | label-volume-foreground = #EEFFFF |
| 145 | label-muted = muted | 145 | label-muted = muted |
| 146 | 146 | ||
| 147 | [module/cmus] | 147 | [module/cmus] |
| @@ -155,7 +155,7 @@ click-middle = cmus-remote --pause | |||
| 155 | scroll-up = cmus-remote --volume +5% | 155 | scroll-up = cmus-remote --volume +5% |
| 156 | scroll-down = cmus-remote --volume -5% | 156 | scroll-down = cmus-remote --volume -5% |
| 157 | format = <label> | 157 | format = <label> |
| 158 | format-foreground = #7b8c58 | 158 | format-foreground = ${xrdb:color6:#ffd7b1} |
| 159 | label = %output% | 159 | label = %output% |
| 160 | !label-maxlen = 50 | 160 | !label-maxlen = 50 |
| 161 | 161 | ||
diff --git a/sxhkd/.config/sxhkd/sxhkdrc b/sxhkd/.config/sxhkd/sxhkdrc index a7bd183..f6bc168 100755 --- a/sxhkd/.config/sxhkd/sxhkdrc +++ b/sxhkd/.config/sxhkd/sxhkdrc | |||
| @@ -3,7 +3,7 @@ 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: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 "#000000" -nf "#f3f4f5" -sb "#626868" -sf "#000000" |
| 7 | super + shift + w | 7 | super + shift + w |
| 8 | /opt/brave/brave | 8 | /opt/brave/brave |
| 9 | control + alt + l | 9 | control + alt + l |
diff --git a/x/.Xresources b/x/.Xresources index 96e845e..241580a 100755 --- a/x/.Xresources +++ b/x/.Xresources | |||
| @@ -1,39 +1,50 @@ | |||
| 1 | ! special | 1 | ! ------------------------------------------------------------------------------ |
| 2 | *.foreground: #2f2f2f | 2 | ! Colors |
| 3 | *.background: #f3f4f5 | 3 | ! ------------------------------------------------------------------------------ |
| 4 | *.cursorColor: #565e65 | 4 | ! |
| 5 | !------------------------------------------------------------------------------ | ||
| 5 | 6 | ||
| 6 | ! black | 7 | #define base00 #000000 |
| 7 | *.color0: #1c2023 | 8 | #define base01 #303030 |
| 8 | *.color8: #747c84 | 9 | #define base02 #353535 |
| 10 | #define base03 #4A4A4A | ||
| 11 | #define base04 #787878 | ||
| 12 | #define base05 #EEFFFF | ||
| 13 | #define base06 #EEFFFF | ||
| 14 | #define base07 #FFFFFF | ||
| 15 | #define base08 #3b3b3b | ||
| 16 | #define base09 #F78C6C | ||
| 17 | #define base0A #353531 | ||
| 18 | #define base0B #13CA91 | ||
| 19 | #define base0C #79ffe1 | ||
| 20 | #define base0D #7898FB | ||
| 21 | #define base0E #3b3b3b | ||
| 22 | #define base0F #FF5370 | ||
| 9 | 23 | ||
| 10 | ! red | 24 | ! URxvt |
| 11 | *.color1: #b55651 | 25 | ! ------------------------------------------------------------------------------ |
| 12 | *.color9: #b55651 | ||
| 13 | 26 | ||
| 14 | ! green | 27 | *foreground: base05 |
| 15 | *.color2: #11703c | 28 | *background: base00 |
| 16 | *.color10: #11703c | 29 | *cursorColor: base05 |
| 17 | 30 | ||
| 18 | ! yellow | 31 | *color0: base00 |
| 19 | *.color3: #4d4f4b | 32 | *color1: base08 |
| 20 | *.color11: #4d4f4b | 33 | *color2: base0B |
| 34 | *color3: base0A | ||
| 35 | *color4: base0D | ||
| 36 | *color5: base0E | ||
| 37 | *color6: base0C | ||
| 38 | *color7: base05 | ||
| 21 | 39 | ||
| 22 | ! blue | 40 | *color8: base03 |
| 23 | *.color4: #304560 | 41 | *color9: base09 |
| 24 | *.color12: #304560 | 42 | *color10: base01 |
| 25 | 43 | *color11: base02 | |
| 26 | ! magenta | 44 | *color12: base04 |
| 27 | *.color5: #aa297f | 45 | *color13: base06 |
| 28 | *.color13: #aa297f | 46 | *color14: base0F |
| 29 | 47 | *color15: base07 | |
| 30 | ! cyan | ||
| 31 | *.color6: #4ba39a | ||
| 32 | *.color14: #4ba39a | ||
| 33 | |||
| 34 | ! white | ||
| 35 | *.color7: #c7ccd1 | ||
| 36 | *.color15: #f3f4f5 | ||
| 37 | 48 | ||
| 38 | URxvt.cursorBlink : 1 | 49 | URxvt.cursorBlink : 1 |
| 39 | URxvt.font :xft:JetBrainsMono Nerd Font Mono:pixelsize=13:style=Regular \ | 50 | URxvt.font :xft:JetBrainsMono Nerd Font Mono:pixelsize=13:style=Regular \ |
| @@ -42,6 +42,10 @@ sip() { | |||
| 42 | curl https://ipinfo.io/$* | 42 | curl https://ipinfo.io/$* |
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | rmdata() { | ||
| 46 | exiftool -overwrite_original -all= $* | ||
| 47 | } | ||
| 48 | |||
| 45 | # Enable colors and change prompt: | 49 | # Enable colors and change prompt: |
| 46 | autoload -U colors && colors | 50 | autoload -U colors && colors |
| 47 | fpath+=$HOME/.zsh/pure | 51 | fpath+=$HOME/.zsh/pure |
