This commit is contained in:
tavo-wasd 2024-02-16 18:02:36 -06:00
parent e7cdfbf78b
commit f5ca2e9c67
7 changed files with 28 additions and 23 deletions

1
.gitignore vendored
View file

@ -217,3 +217,4 @@ retroarch/
gcolor3/ gcolor3/
pcmanfm-qt/ pcmanfm-qt/
cni/ cni/
btop/

View file

@ -27,7 +27,7 @@
horizontal_padding = 24 horizontal_padding = 24
text_icon_padding = 0 text_icon_padding = 0
frame_width = 1 frame_width = 1
frame_color = "#2e9ef4" frame_color = "#83a598"
gap_size = 0 gap_size = 0
separator_color = frame separator_color = frame
@ -70,18 +70,18 @@
per_monitor_dpi = false per_monitor_dpi = false
[urgency_low] [urgency_low]
background = "#2e9ef499" background = "#83a598"
foreground = "#ffffff" foreground = "#121212"
timeout = 2 timeout = 2
[urgency_normal] [urgency_normal]
background = "#2e9ef499" background = "#83a598"
foreground = "#ffffff" foreground = "#121212"
timeout = 8 timeout = 8
[urgency_critical] [urgency_critical]
background = "#2e9ef499" background = "#83a598"
foreground = "#ffffff" foreground = "#121212"
frame_color = "#FB4934" frame_color = "#FB4934"
timeout = 0 timeout = 0

View file

@ -3,9 +3,6 @@ font=JetBrainsMono:size=9
[environment] [environment]
# name=value # name=value
[colors]
alpha=0.9
[colors] [colors]
background=121212 background=121212
foreground=ebdbb2 foreground=ebdbb2

View file

@ -11,9 +11,9 @@ font="JetbrainsMono"
font_size="10" font_size="10"
col_white="#ffffff" # White col_white="#ffffff" # White
col_nb="#121212" # Normal background col_nb="#121212" # Normal background
col_nf="#665c54" # Normal foreground col_nf="#282828" # Normal foreground
col_sb="#121212" # Selected background col_sb="#121212" # Selected background
col_sf="#2e9ef4" # Selected foreground col_sf="#83a598" # Selected foreground
menu_bemenu() { menu_bemenu() {
bemenu$BRUN \ bemenu$BRUN \
@ -22,12 +22,12 @@ bemenu$BRUN \
-c \ -c \
-l 10 \ -l 10 \
-W 0.4 \ -W 0.4 \
-B 1 \ -B 2 \
--cw 1 \ --cw 1 \
--tb $col_sb \ --tb $col_sb \
--tf $col_nf \ --tf $col_sf \
--fb $col_nb \ --fb $col_nb \
--ff $col_white \ --ff $col_sf \
--cb $col_nb \ --cb $col_nb \
--cf $col_nf \ --cf $col_nf \
--nb $col_nb \ --nb $col_nb \

View file

@ -17,8 +17,7 @@ alias \
# Common # Common
alias \ alias \
ll="exa -al --group-directories-first" \ ls="exa -al --group-directories-first" \
ls="ls -A --color=auto" \
fzf="fzf --cycle --reverse" \ fzf="fzf --cycle --reverse" \
diff="diff --color=auto" \ diff="diff --color=auto" \
grep="grep --color=auto" \ grep="grep --color=auto" \

View file

@ -8,6 +8,7 @@ PATH="$HOME/.config/scripts/sway${PATH:+:${PATH}}"
PATH="$HOME/.config/wrappers${PATH:+:${PATH}}" PATH="$HOME/.config/wrappers${PATH:+:${PATH}}"
PATH="$HOME/.config/scripts${PATH:+:${PATH}}" PATH="$HOME/.config/scripts${PATH:+:${PATH}}"
PATH="$HOME/.local/bin${PATH:+:${PATH}}" PATH="$HOME/.local/bin${PATH:+:${PATH}}"
#PATH="/usr/local/plan9/bin${PATH:+:${PATH}}"
# Common # Common
export \ export \

View file

@ -1,6 +1,6 @@
# Preferences # Preferences
output * { output * {
bg ~/Pictures/Backgrounds/default.png fill bg ~/Pictures/Backgrounds/default.jpg fill
} }
input type:touchpad { input type:touchpad {
@ -44,6 +44,9 @@ set $brightup ~/.config/scripts/brightup
set $brightdown ~/.config/scripts/brightdown set $brightdown ~/.config/scripts/brightdown
set $powermenu ~/.config/scripts/menu/menu-power set $powermenu ~/.config/scripts/menu/menu-power
set $bookmenu ~/.config/scripts/menu/menu-bookmarks set $bookmenu ~/.config/scripts/menu/menu-bookmarks
# -
set $col_fg #83a598
set $col_bg #121212
# Keybinds # Keybinds
floating_modifier $mod normal floating_modifier $mod normal
@ -122,8 +125,8 @@ bindsym $mod+f fullscreen
bindsym $mod+Shift+f floating toggle bindsym $mod+Shift+f floating toggle
# Layout # Layout
client.focused #ebdbb2 #ebdbb2 #121212 #ebdbb2 #ebdbb2 client.focused $col_fg $col_fg $col_bg $col_fg $col_fg
client.unfocused #121212 #121212 #ebdbb260 #121212 #121212 client.unfocused $col_bg $col_bg $col_fg $col_bg $col_bg
default_border pixel 2 default_border pixel 2
titlebar_border_thickness 2 titlebar_border_thickness 2
titlebar_padding 2 titlebar_padding 2
@ -138,12 +141,16 @@ bar {
colors { colors {
background #00000000 background #00000000
statusline #ebdbb260 statusline #ebdbb270
focused_workspace #ebdbb2 #ebdbb2 #121212 focused_workspace $col_fg $col_fg $col_bg
inactive_workspace #00000000 #00000000 #ebdbb260 inactive_workspace #00000000 #00000000 #ebdbb270
} }
} }
set $opacity 0.95
for_window [class=".*"] opacity $opacity
for_window [app_id=".*"] opacity $opacity
# Autostart # Autostart
exec_always dunst exec_always dunst
exec_always dbus-update-activation-environment WAYLAND_DISPLAY exec_always dbus-update-activation-environment WAYLAND_DISPLAY