Update dotfiles
This commit is contained in:
@@ -5,12 +5,12 @@ My personal configurations, managed with the 'dotdrop' submodule.
|
|||||||
|
|
||||||
[Nord-themed.](https://www.nordtheme.com/)
|
[Nord-themed.](https://www.nordtheme.com/)
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
+ Distro: `Fedora 31`
|
+ Distro: `Fedora`
|
||||||
+ Font: `InconsolataLGC Nerd Font Mono` and `Inconsolata` (polybar)
|
+ Font: `InconsolataLGC Nerd Font Mono` and `Inconsolata` (polybar)
|
||||||
+ Shell: `zsh`
|
+ Shell: `zsh`
|
||||||
+ Terminal: `alacritty`
|
+ Terminal: `alacritty`
|
||||||
|
|||||||
17
config.yaml
17
config.yaml
@@ -24,9 +24,6 @@ dotfiles:
|
|||||||
d_xresources_themes:
|
d_xresources_themes:
|
||||||
src: X11/Xresources.themes
|
src: X11/Xresources.themes
|
||||||
dst: ~/.Xresources.themes
|
dst: ~/.Xresources.themes
|
||||||
f_xinitrc:
|
|
||||||
src: X11/xinitrc
|
|
||||||
dst: ~/.xinitrc
|
|
||||||
f_i3:
|
f_i3:
|
||||||
src: i3/config
|
src: i3/config
|
||||||
dst: ~/.config/i3/config
|
dst: ~/.config/i3/config
|
||||||
@@ -38,9 +35,9 @@ dotfiles:
|
|||||||
dst: ~/.local/share/fonts
|
dst: ~/.local/share/fonts
|
||||||
actions:
|
actions:
|
||||||
- font-cache
|
- font-cache
|
||||||
f_compton:
|
f_picom:
|
||||||
src: compton/compton.conf
|
src: picom/picom.conf
|
||||||
dst: ~/.config/compton.conf
|
dst: ~/.config/picom.conf
|
||||||
f_tmux:
|
f_tmux:
|
||||||
src: tmux/tmux.conf
|
src: tmux/tmux.conf
|
||||||
dst: ~/.tmux.conf
|
dst: ~/.tmux.conf
|
||||||
@@ -77,7 +74,7 @@ profiles:
|
|||||||
- i3
|
- i3
|
||||||
- x11
|
- x11
|
||||||
- font
|
- font
|
||||||
- compton
|
- picom
|
||||||
- tmux
|
- tmux
|
||||||
- polybar
|
- polybar
|
||||||
- dunst
|
- dunst
|
||||||
@@ -101,7 +98,7 @@ profiles:
|
|||||||
- x11
|
- x11
|
||||||
- i3
|
- i3
|
||||||
- font
|
- font
|
||||||
- compton
|
- picom
|
||||||
- tmux
|
- tmux
|
||||||
- dir_colors
|
- dir_colors
|
||||||
- scripts
|
- scripts
|
||||||
@@ -129,9 +126,9 @@ profiles:
|
|||||||
font:
|
font:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- d_fonts
|
- d_fonts
|
||||||
compton:
|
picom:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- f_compton
|
- f_picom
|
||||||
tmux:
|
tmux:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- f_tmux
|
- f_tmux
|
||||||
|
|||||||
2
dotdrop
2
dotdrop
Submodule dotdrop updated: c48ea15a7c...5b2b05d353
@@ -42,7 +42,7 @@
|
|||||||
# The transparency of the window. Range: [0; 100].
|
# The transparency of the window. Range: [0; 100].
|
||||||
# This option will only work if a compositing window manager is
|
# This option will only work if a compositing window manager is
|
||||||
# present (e.g. xcompmgr, compiz, etc.).
|
# present (e.g. xcompmgr, compiz, etc.).
|
||||||
transparency = 10
|
transparency = 5
|
||||||
|
|
||||||
# The height of the entire notification. If the height is smaller
|
# The height of the entire notification. If the height is smaller
|
||||||
# than the font height and padding combined, it will be raised
|
# than the font height and padding combined, it will be raised
|
||||||
|
|||||||
@@ -111,14 +111,24 @@ bindsym $mod+Shift+r restart
|
|||||||
|
|
||||||
### Design ###
|
### Design ###
|
||||||
new_window 1pixel
|
new_window 1pixel
|
||||||
for_window [class="^.*"] border pixel 0
|
for_window [class="^.*"] border pixel 4
|
||||||
|
|
||||||
# Colors from https://www.nordtheme.com/
|
# Colors from https://www.nordtheme.com/
|
||||||
|
set $nord0 "#2e3440"
|
||||||
|
|
||||||
|
set $blue0 "#8FBCBB"
|
||||||
|
|
||||||
|
set $frost0 "#d8dee9"
|
||||||
|
set $frost2 "#eceff4"
|
||||||
|
|
||||||
|
set $green "#A3BE8C"
|
||||||
|
set $red "#bf616a"
|
||||||
|
|
||||||
# class border backgr. text indicator child_border
|
# class border backgr. text indicator child_border
|
||||||
client.focused #a3be8c #2e3440 #ECEFF4 #A3BE8C #A3BE8C
|
client.focused $blue0 $nord0 $frost2 $green $blue0
|
||||||
client.focused_inactive #2e3440 #2e3440 #ECEFF4 #2e3440 #5f676a
|
client.focused_inactive $nord0 $nord $nord0 $frost2 $nord0
|
||||||
client.unfocused #333333 #222222 #D8DEE9 #2e3440 #2e3440
|
client.unfocused #333333 #222222 $frost0 $nord0 $nord0
|
||||||
client.urgent #2f343a #BF616A #ECEFF4 #BF616A #BF616A
|
client.urgent $red $red $frost2 $red $red
|
||||||
client.background #ffffff
|
client.background #ffffff
|
||||||
|
|
||||||
{%@@ if profile == "work" @@%}
|
{%@@ if profile == "work" @@%}
|
||||||
|
|||||||
@@ -23,14 +23,13 @@ frost2 = #ECEFF4
|
|||||||
|
|
||||||
nord0_trans = #dd2E3440
|
nord0_trans = #dd2E3440
|
||||||
|
|
||||||
accent = ${colors.green}
|
accent = ${colors.blue0}
|
||||||
background = ${colors.nord0}
|
|
||||||
foreground = ${colors.frost2}
|
foreground = ${colors.frost2}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
[settings]
|
[settings]
|
||||||
format-foreground = ${colors.foreground}
|
format-foreground = ${colors.foreground}
|
||||||
format-background = ${colors.background}
|
format-background = ${colors.nord0}
|
||||||
screenchange-reload = true
|
screenchange-reload = true
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@@ -57,9 +56,14 @@ radius = 0.0
|
|||||||
foreground = ${colors.foreground}
|
foreground = ${colors.foreground}
|
||||||
background = ${colors.nord0_trans}
|
background = ${colors.nord0_trans}
|
||||||
|
|
||||||
tray-position =
|
tray-position = right
|
||||||
|
tray-padding = 2
|
||||||
|
tray-background = ${colors.nord1}
|
||||||
|
tray-offset-x = 8
|
||||||
|
tray-offset-y = 0
|
||||||
|
|
||||||
width = 100%:-16px
|
# 100%-16px(gaps)-8px(tray)
|
||||||
|
width = 100%:-24px
|
||||||
height = 27
|
height = 27
|
||||||
|
|
||||||
offset-y = 8px
|
offset-y = 8px
|
||||||
@@ -69,7 +73,7 @@ override-redirect = true
|
|||||||
|
|
||||||
modules-left = i3
|
modules-left = i3
|
||||||
modules-center =
|
modules-center =
|
||||||
modules-right = spotify backlight volume battery network date
|
modules-right = spotify backlight volume battery date
|
||||||
separator =
|
separator =
|
||||||
|
|
||||||
wm-name = i3
|
wm-name = i3
|
||||||
@@ -116,8 +120,8 @@ label-visible-background = ${self.background}
|
|||||||
label-visible-padding = 2
|
label-visible-padding = 2
|
||||||
|
|
||||||
label-urgent = %index%
|
label-urgent = %index%
|
||||||
label-urgent-foreground = ${colors.red}
|
label-urgent-foreground = ${colors.foreground}
|
||||||
label-urgent-background = ${self.background}
|
label-urgent-background = ${colors.red}
|
||||||
label-urgent-padding = 2
|
label-urgent-padding = 2
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@@ -125,7 +129,7 @@ label-urgent-padding = 2
|
|||||||
type = internal/date
|
type = internal/date
|
||||||
|
|
||||||
format-padding = 2
|
format-padding = 2
|
||||||
format-background = ${colors.nord0}
|
format-background = ${colors.nord1}
|
||||||
|
|
||||||
interval = 1.0
|
interval = 1.0
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ set preview_images true
|
|||||||
default_linemode devicons
|
default_linemode devicons
|
||||||
|
|
||||||
# separators, outline, both, none
|
# separators, outline, both, none
|
||||||
set draw_borders both
|
set draw_borders none
|
||||||
|
|
||||||
set mouse_enabled true
|
set mouse_enabled true
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ setxkbmap -layout za
|
|||||||
|
|
||||||
export LANG="en_US.UTF-8"
|
export LANG="en_US.UTF-8"
|
||||||
export LANGUAGE="en_US.UTF-8"
|
export LANGUAGE="en_US.UTF-8"
|
||||||
export SHELL="/bin/zsh"
|
|
||||||
|
|
||||||
feh --bg-scale $HOME/wallpaper/wallpaper.png
|
feh --bg-scale $HOME/wallpaper/wallpaper.png
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user