Skip to content

Commit 52af41f

Browse files
committedMar 24, 2020
refactored a lot of config files especially concerning theme colors
1 parent 4a559a8 commit 52af41f

26 files changed

+87
-738
lines changed
 

‎.config/dunst/dunstrc

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# the top and down respectively.
3232
# The width can be negative. In this case the actual width is the
3333
# screen width minus the width defined in within the geometry option.
34-
geometry = "640x360-54-54"
34+
geometry = "320x320+1440+69"
3535
#geometry = "230x0-20+67"
3636
#79 geometry = "100x150-17+17"
3737

@@ -45,7 +45,7 @@
4545
# The transparency of the window. Range: [0; 100].
4646
# This option will only work if a compositing window manager is
4747
# present (e.g. xcompmgr, compiz, etc.).
48-
transparency = 0
48+
transparency = 10
4949

5050
# The height of the entire notification. If the height is smaller
5151
# than the font height and padding combined, it will be raised
@@ -65,10 +65,10 @@
6565

6666
# Defines width in pixels of frame around the notification window.
6767
# Set to 0 to disable.
68-
frame_width = 0
68+
frame_width = 2
6969

7070
# Defines color of the frame around the notification window.
71-
frame_color = "#000000"
71+
frame_color = "#7a88cf"
7272

7373
# Define a color for the separator.
7474
# possible values are:
@@ -251,7 +251,7 @@
251251

252252

253253
[urgency_normal]
254-
background = "#292d32"
254+
background = "#222436"
255255
foreground = "#f3f6fd"
256256
timeout = 10
257257
# Icon for notifications with normal urgency, uncomment to enable
@@ -260,7 +260,7 @@
260260
[urgency_critical]
261261
background = "#222436"
262262
foreground = "#f3f6fd"
263-
frame_color = "#222436"
263+
frame_color = "#ff757f"
264264
timeout = 0
265265
# Icon for notifications with critical urgency, uncomment to enable
266266
icon = /usr/share/icons/Papirus/16x16/devices

‎.config/i3/config

+6-3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ bindsym $mod+Shift+q kill
4141
# Fullscreen application launcher
4242
bindsym $mod+Shift+Return exec rofi -no-config -show drun -theme ~/.config/rofi/themes/appsmenu.rasi
4343

44+
# Application launcher
45+
bindsym $mod+Shift+d exec rofi -no-config -show drun -theme ~/.config/rofi/themes/appslist.rasi
46+
4447
# Lock screen
4548
bindsym $mod+Shift+e exec betterlockscreen -l blur
4649

@@ -223,12 +226,12 @@ for_window [class=".*"] border pixel 0
223226

224227
# change borders
225228
bindsym $mod+u border none
226-
bindsym $mod+y border pixel 2
229+
bindsym $mod+y border pixel 1
227230
bindsym $mod+n border normal
228231

229232
# COLORS
230-
set $sd #494e75E6
231-
set $pm #222436E6
233+
set $sd #222436B3
234+
set $pm #7a88cfB3
232235

233236
# window colors border backgr text indicator child_border
234237
client.focused_inactive $sd $sd $pm $sd $sd

‎.config/kitty/kitty.conf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
########
22
# FONTS #
33
#########
4-
font_family JetBrains Mono Nerd Font
4+
font_family Fantasque Sans Mono
55
bold_font auto
66
italic_font auto
77
bold_italic_font auto
8-
font_size 12
8+
font_size 14
99

1010
##########
1111
# COLORS #
@@ -69,7 +69,7 @@ cursor_shape underline
6969
dim_opacity 0.75
7070

7171
# Term colors
72-
term xterm-256color
72+
term xterm-kitty
7373

7474
###############
7575
# KEYBINDINGS #

‎.config/kitty/themes/gen1.theme.conf

-36
This file was deleted.

‎.config/kitty/themes/mycolors.conf

-27
This file was deleted.

‎.config/neofetch/config.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ crop_offset="center"
724724
# Values: 'auto', '00px', '00%', 'none'
725725
# Flags: --image_size
726726
# --size
727-
image_size="auto"
727+
image_size="560px"
728728

729729
# Gap between image and text
730730
#

‎.config/nvim/init.vim

+7-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@ call plug#begin(g:plugged_home)
4242
" Devicon glyphs for Nerdtree
4343
Plug 'ryanoasis/vim-devicons'
4444

45-
call plug#end()
45+
" YAML support
46+
Plug 'stephpy/vim-yaml'
47+
48+
" Extended CSS support
49+
Plug 'hail2u/vim-css3-syntax'
50+
51+
call plug#end()
4652

4753
set encoding=UTF-8
4854

‎.config/picom/picom.conf

+8-9
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@
22
shadow = true;
33
dnd = true;
44
no-dock-shadow = true;
5-
shadow-radius = 16;
6-
shadow-offset-x = -12;
7-
shadow-offset-y = -12;
5+
shadow-radius = 30;
6+
shadow-offset-x = -30;
7+
shadow-offset-y = -30;
88
log-level = "warn";
99
# log-file = "/path/to/your/log/file";
10-
shadow-opacity = 0.40;
11-
# shadow-red = 0.0;
12-
# shadow-green = 0.0;
13-
# shadow-blue = 0.0;
10+
shadow-opacity = 0.85;
11+
shadow-red = 0.077;
12+
shadow-green = 0.082;
13+
shadow-blue = 0.123;
1414
shadow-exclude = [
1515
"name = 'Notification'",
1616
"class_g = 'Conky'",
1717
"class_g ?= 'Notify-osd'",
1818
"class_g = 'Cairo-clock'",
1919
"class_g = 'slop'",
2020
"class_g = 'Firefox' && argb",
21-
"class_g = 'Rofi'",
2221
"class_g = 'awesome'",
2322
"_GTK_FRAME_EXTENTS@:c",
2423
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_FULLSCREEN'"
@@ -60,7 +59,7 @@ blur-background-exclude = [
6059

6160
# opacity-rule = [ "80:class_g = 'URxvt'" ];
6261
opacity-rule = [
63-
"80:class_g = 'URxvt'",
62+
"70:class_g = 'URxvt'",
6463
"80:class_g = 'UXTerm'",
6564
"80:class_g = 'XTerm'",
6665
"90:class_g = 'Xfce4-power-manager-settings'",

‎.config/polybar/config.ini

+6-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
; --- GitHub: https://github.com/CaptainEureka
99
; --- A customized polybar config
1010

11-
include-file = ~/.cache/wal/colors.polybar
11+
include-file = ~/.cache/wal/polybar-colors.ini
1212
include-file = ~/.config/polybar/modules/modules.ini
1313
include-file = ~/.config/polybar/modules/user_modules.ini
1414

@@ -17,21 +17,17 @@ include-file = ~/.config/polybar/modules/user_modules.ini
1717
;-------;
1818

1919
[fonts]
20-
font-0 = Fantasque Sans Mono:style=Regular:size=18;2
20+
font-0 = Fantasque Sans Mono:style=Medium:size=20;2
2121
font-1 = Hack Nerd Font Mono:style=Regular:size=32;5
22-
font-2 = Baekmuk Dotum:style=Regular:size=22;5
22+
font-2 = Baekmuk Gulim:style=Regular:size=22;5
23+
24+
[bar/mybar]
2325

2426
;--------;
2527
; COLORS ;
2628
;--------;
2729

28-
background = ${colors.background-alt}
29-
foreground = ${colors.foreground}
30-
border-color = ${colors.transparent}
31-
32-
[bar/mybar]
33-
34-
background = ${colors.background-alt}
30+
background = ${colors.background-alpha}
3531
foreground = ${colors.foreground}
3632
border-color = ${colors.transparent}
3733

‎.config/polybar/modules/modules.ini

+8-8
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ label-unfocused-padding = 1px
3535
label-unfocused-font = 2
3636

3737
label-focused = %icon%
38-
label-focused-foreground = ${colors.primary}
38+
label-focused-foreground = ${colors.blue}
3939
label-focused-padding = 1px
40-
label-focused-underline = ${colors.primary}
40+
label-focused-underline = ${colors.blue}
4141
label-focused-font = 2
4242

4343
label-urgent = %icon%
44-
label-urgent-foreground = ${colors.alert}
44+
label-urgent-foreground = ${colors.red}
4545
label-urgent-padding = 1px
4646
label-urgent-font = 2
4747

@@ -107,7 +107,7 @@ label-occupied-underline = ${colors.foreground}
107107
; %index%
108108
; Default: %icon% %name%
109109
label-urgent = %icon%
110-
label-urgent-foreground = ${colors.secondary}
110+
label-urgent-foreground = ${colors.red}
111111
label-urgent-background = ${colors.background}
112112
;;label-urgent-underline = ${colors.red}
113113

@@ -194,7 +194,7 @@ label-dimmed-foreground = ${colors.foreground}
194194
; %index%
195195
; Default: %icon% %name%
196196
label-focused = %icon%
197-
label-focused-foreground = ${colors.primary}
197+
label-focused-foreground = ${colors.blue}
198198

199199
; Available tokens:
200200
; %name%
@@ -210,7 +210,7 @@ label-occupied = %icon%
210210
; %index%
211211
; Default: %icon% %name%
212212
label-urgent = %icon%
213-
label-urgent-foreground = ${colors.alert}
213+
label-urgent-foreground = ${colors.red}
214214
;label-urgent-background = #bd2c40
215215
;label-urgent-underline = #9b0a20
216216

@@ -288,8 +288,8 @@ ramp-capacity-2 = 
288288
ramp-capacity-3 = 
289289
ramp-capacity-4 = 
290290

291-
ramp-capacity-0-foreground = ${colors.alert}
292-
ramp-capacity-1-foreground = ${colors.alert}
291+
ramp-capacity-0-foreground = ${colors.red}
292+
ramp-capacity-1-foreground = ${colors.red}
293293

294294
click-left =
295295

‎.config/rofi/scripts/i3layoutmenu.sh

-24
This file was deleted.

‎.config/rofi/scripts/nmvpnmenu.sh

-67
This file was deleted.

‎.config/rofi/themes/breeze.rasi

-147
This file was deleted.

‎.config/rofi/themes/i3layoutmenu.rasi

-84
This file was deleted.

‎.config/rofi/themes/networkmenu.rasi

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ entry {
4343
font: "Hack Nerd Font Mono 14";
4444
}
4545
#listview {
46-
lines: 8;
46+
lines: 9;
4747
columns: 1;
4848
}
4949

5050
#entry {
5151
background-color: transparent;
52-
color: @primary;
52+
color: @black-bold;
5353
padding: 10px 20px;
5454
border-radius: 10px;
5555
}
@@ -61,10 +61,10 @@ entry {
6161
border-radius: 10px;
6262
}
6363
#element.selected {
64-
background-color: @alt-primary;
64+
background-color: @alpha-black-bold;
6565
color: @text-color;
6666
border: 3px solid;
67-
border-color: @primary;
67+
border-color: @black-bold;
6868
border-radius: 10px;
6969
}
7070

‎.config/rofi/themes/powermenu.rasi

+3-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ entry {
3333
padding: 20px;
3434
location: center;
3535
background-color: @background-select;
36-
border-color: @primary;
36+
border-color: @black-bold;
3737
font: "JetBrains Mono 14";
3838
}
3939

@@ -53,7 +53,6 @@ listview {
5353
}
5454

5555
element {
56-
background-color: @background-alt;
5756
border-radius: 10;
5857
padding: 10px -25px 10px;
5958
}
@@ -70,10 +69,10 @@ element alternate.active {
7069
}
7170

7271
element selected {
73-
background-color: @alt-primary;
72+
background-color: @alpha-black-bold;
7473
color: @text-color;
7574
border: 3px solid;
76-
border-color: @primary;
75+
border-color: @black-bold;
7776
border-radius: 10px;
7877
}
7978

‎.config/rofi/themes/rofi-alt-tab.rasi

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ entry {
6161
border-radius: 10px;
6262
}
6363
#element.selected {
64-
background-color: @alt-primary;
64+
background-color: @alpha-black-bold;
6565
color: @text-color;
6666
border: 3px solid;
67-
border-color: @primary;
67+
border-color: @black-bold;
6868
border-radius: 10px;
6969
}
7070

‎.config/rofi/themes/rofi-config-menu.rasi

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ entry {
4848

4949
#entry {
5050
background-color: transparent;
51-
color: @primary;
51+
color: @black-bold;
5252
padding: 10px 20px;
5353
border-radius: 10px;
5454
}
@@ -60,10 +60,10 @@ entry {
6060
border-radius: 10px;
6161
}
6262
#element.selected {
63-
background-color: @alt-primary;
63+
background-color: @alpha-black-bold;
6464
color: @text-color;
6565
border: 3px solid;
66-
border-color: @primary;
66+
border-color: @black-bold;
6767
border-radius: 10px;
6868
}
6969

‎.config/rofi/themes/rofi-wal.rasi

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ entry {
4949

5050
#entry {
5151
background-color: transparent;
52-
color: @primary;
52+
color: @black-bold;
5353
padding: 10px 20px;
5454
border-radius: 10px;
5555
}
@@ -61,10 +61,10 @@ entry {
6161
border-radius: 10px;
6262
}
6363
#element.selected {
64-
background-color: @alt-primary;
64+
background-color: @alpha-black-bold;
6565
color: @text-color;
6666
border: 3px solid;
67-
border-color: @primary;
67+
border-color: @black-bold;
6868
border-radius: 10px;
6969
}
7070

‎.config/rofi/themes/sidebar-config.rasi

-109
This file was deleted.

‎.config/rofi/themes/web-search.rasi

+13-9
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@ configuration {
2121

2222
window {
2323
background-color: @background;
24-
location: south west;
25-
anchor: south west;
26-
x-offset: 10px;
27-
/*height: 97%;*/
28-
/*width: 22%;*/
24+
location: center;
25+
anchor: center;
26+
x-offset: 0px;
27+
height: 25%;
28+
width: 25%;
2929
margin-right: 60px;
3030
orientation: horizontal;
31-
border-radius: 0px 25px 25px 25px;
31+
border-radius: 10px;
32+
border: 2px solid;
33+
border-color: @border-color;
3234
children: [mainbox];
3335
}
3436

@@ -73,13 +75,15 @@ element {
7375

7476
entry {
7577
expand: true;
78+
location: center;
7679
text-color: @text-color;
77-
background-color: @background-select;
80+
background-color: @background-selected;
7881
vertical-align: 0.5;
7982
padding: 14px;
8083
font: "Lato Bold 12";
8184
margin: 16 16 16 16;
8285
border-radius: 8;
86+
horizontal-align: 0.5;
8387
placeholder: "Web search";
8488
placeholder-color: @text-color;
8589
blink: true;
@@ -102,11 +106,11 @@ element alternate.active {
102106
}
103107

104108
element selected.normal {
105-
background-color: @alt-primary;
109+
background-color: @alpha-black-bold;
106110
text-color: @text-color;
107111
padding: 16px;
108112
border: 2px solid;
109-
border-color: @primary;
113+
border-color: @black-bold;
110114
}
111115

112116
element-icon {

‎.config/rofi/themes/web-search.rasi.bp

-162
This file was deleted.

‎.config/wal/templates/colors.polybar

-11
This file was deleted.

‎.config/wal/templates/spotify.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tl_selected_hover = {color4.strip}
99
cover_overlay_and_shadow = {background.strip}
1010
indicator_fg_and_button_bg = {foreground.strip}
1111
pressing_fg = {color3.strip}
12-
slider_bg = {foreground.strip}
12+
slider_bg = {color4.strip}
1313

1414
sidebar_indicator_and_hover_button_bg = {foreground.strip}
1515
sidebar_active_button_fg = {background.strip}

‎.zshrc

+3-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ source $ZSH/oh-my-zsh.sh
9696
# export ARCHFLAGS="-arch x86_64"
9797

9898
# Pfetch Configuration
99-
export PF_INFO="ascii title os host kernel uptime pkgs memory"
99+
export PF_INFO="ascii os host kernel uptime pkgs memory"
100100
export PF_SEP=" >"
101101
export PF_ASCII="manjaro"
102102

@@ -106,7 +106,7 @@ export PF_COL2=7
106106
export PF_COL3=1
107107

108108
# Ranger stop default
109-
export RANGER_LOAD_DEFAULT_RC=false
109+
export RANGER_LOAD_DEFAULT_RC=true
110110

111111
# Set personal aliases, overriding those provided by oh-my-zsh libs,
112112
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
@@ -118,6 +118,7 @@ alias zshconfig="nvim ~/.zshrc"
118118
alias ohmyzsh="nvim ~/.oh-my-zsh"
119119
alias br="br -dhp"
120120
alias ls="exa -l"
121+
alias la="exa -la"
121122
alias vim="nvim"
122123
alias vi="nvim"
123124
alias pacman="pacman --color=always"

‎README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ I'm currently using Manjaro with `i3-gaps-rounded` and KDE/Plasma
55

66
Some details about my setup:
77

8-
- **WM**: [i3-gaps-rounded](https://github.com/resloved/i3/)
8+
- **WM**: [i3-gaps-rounded](https://github.com/resloved/i3/) ([AUR](https://aur.archlinux.org/packages/i3-gaps-rounded-git/))
99
- **DE**: [KDE/Plasma](https://kde.org/plasma-desktop)
1010
- **Compositor**: [picom]() (with `dual-kawase` blur)
11-
- **OS**: Manjaro 19.02
11+
- **OS**: Manjaro
1212
- **Shell**: [zsh](https://wiki.archlinux.org/index.php/Zsh)
1313
- Using: [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh) with the [pi](https://github.com/tobyjamesthomas/pi) theme
1414
- **Terminal Emulator**: [kitty](https://github.com/kovidgoyal/kitty/) / `Konsole`
@@ -31,3 +31,11 @@ Some details about my setup:
3131
##### Fonts
3232

3333
##### Keybinds
34+
35+
##### To-Do:
36+
37+
- Implement **u/adi1090x** Rofi dummy window for background blur effect.
38+
- Implement theme-switcher
39+
- Input should be YAML
40+
- Should use `Jinja2` engine or just use `Pywal`?
41+

0 commit comments

Comments
 (0)
Please sign in to comment.