Update .config/sway/config
Update .config/waybar/config.jsonc Update .config/waybar/style.css
This commit is contained in:
parent
6fde902853
commit
75a1015a7d
3 changed files with 15 additions and 7 deletions
|
|
@ -20,6 +20,8 @@ set $term foot
|
||||||
set $menu rofi -show combi
|
set $menu rofi -show combi
|
||||||
set $windowsearch rofi -show window
|
set $windowsearch rofi -show window
|
||||||
|
|
||||||
|
set $wallpaper ~/Pictures/Wallpapers/space.png
|
||||||
|
|
||||||
input * xkb_numlock enabled
|
input * xkb_numlock enabled
|
||||||
default_border pixel
|
default_border pixel
|
||||||
|
|
||||||
|
|
@ -40,7 +42,9 @@ bindsym XF86AudioPrev exec playerctl previous
|
||||||
#
|
#
|
||||||
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
|
# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/)
|
||||||
#output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
|
#output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
|
||||||
output * bg ~/Pictures/Wallpapers/space.png fill
|
output * bg $wallpaper fill
|
||||||
|
exec_always matugen image $wallpaper --mode "dark"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Example configuration:
|
# Example configuration:
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
//"height": 30, // Waybar height (to be removed for auto height)
|
//"height": 30, // Waybar height (to be removed for auto height)
|
||||||
// "width": 1280, // Waybar width
|
// "width": 1280, // Waybar width
|
||||||
"spacing": 4, // Gaps between modules (4px)
|
"spacing": 4, // Gaps between modules (4px)
|
||||||
|
"reload_style_on_change":true,
|
||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
"group/datetime",
|
"group/datetime",
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,17 @@
|
||||||
/* font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif; */
|
/* font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif; */
|
||||||
font-family: JetBrainsMono Nerd Font, FontAwesome;
|
font-family: JetBrainsMono Nerd Font, FontAwesome;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
@define-color primary_color #8BD0F0;
|
/* @define-color primary_color #8BD0F0;
|
||||||
@define-color secondary_color #393e46;
|
@define-color secondary_color #393e46; */
|
||||||
|
|
||||||
|
@import "colors.css";
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background-color: rgba(0,0,0,0);
|
background-color: rgba(0,0,0,0);
|
||||||
color: @primary_color;
|
color: @primary;
|
||||||
transition-property: background-color;
|
transition-property: background-color;
|
||||||
transition-duration: .5s;
|
transition-duration: .5s;
|
||||||
}
|
}
|
||||||
|
|
@ -60,7 +63,7 @@ button:hover {
|
||||||
.modules-center,
|
.modules-center,
|
||||||
.modules-right
|
.modules-right
|
||||||
{
|
{
|
||||||
background: @secondary_color;
|
background: @primary_container;
|
||||||
margin: 4px 10px;
|
margin: 4px 10px;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
|
|
@ -144,7 +147,7 @@ button:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
#cava {
|
#cava {
|
||||||
color: @primary_color;
|
color: @secondary;
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -168,5 +171,5 @@ button:hover {
|
||||||
|
|
||||||
#tray > .needs-attention {
|
#tray > .needs-attention {
|
||||||
-gtk-icon-effect: highlight;
|
-gtk-icon-effect: highlight;
|
||||||
background-color: #eb4d4b;
|
background-color: @error;
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue