This commit is contained in:
2025-11-21 18:44:18 -05:00
parent 90457eb573
commit 3b9cdc02b4
7 changed files with 188 additions and 36 deletions

View File

@@ -5,7 +5,7 @@
"icon": "/usr/share/nwg-bar/images/system-lock-screen.svg"
},
{
"label": "Logout",
"label": "_Exit",
"exec": "hyprctl dispatch exit",
"icon": "/usr/share/nwg-bar/images/system-log-out.svg"
},

View File

@@ -1,35 +0,0 @@
window {
background-color: transparent;
}
/* Outer bar container, takes all the window width/height */
#outer-box {
margin: 10px;
}
/* Inner bar container, surrounds buttons */
#inner-box {
background-color: #232A2E;
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: #343f44;
padding: 5px;
margin: 5px
}
button, image {
background: none;
border: none;
box-shadow: none
}
button {
padding-left: 10px;
padding-right: 10px;
margin: 5px
}
button:hover {
background-color: #343f44;
}

1
style.css Symbolic link
View File

@@ -0,0 +1 @@
/home/lw/.config/nwg-bar/t_gruvbox.css

41
t_base16.css Normal file
View File

@@ -0,0 +1,41 @@
/* style.css - Classic TTY-style Base16 nwg-bar theme */
window {
background-color: transparent;
}
/* Outer bar container */
#outer-box {
margin: 10px;
}
/* Inner bar container */
#inner-box {
background-color: #000000; /* Black background */
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: #222222; /* Subtle dark gray border */
padding: 5px;
margin: 5px;
}
button,
image {
background: none;
border: none;
box-shadow: none;
}
button {
padding-left: 10px;
padding-right: 10px;
margin: 5px;
color: #ffffff; /* Default white text */
}
button:hover {
background-color: #222222; /* Hover dark gray */
color: #ff0000; /* Highlight bright red */
}

35
t_everforest.css Normal file
View File

@@ -0,0 +1,35 @@
window {
background-color: transparent;
}
/* Outer bar container, takes all the window width/height */
#outer-box {
margin: 10px;
}
/* Inner bar container, surrounds buttons */
#inner-box {
background-color: #232A2E;
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: #343f44;
padding: 5px;
margin: 5px
}
button, image {
background: none;
border: none;
box-shadow: none
}
button {
padding-left: 10px;
padding-right: 10px;
margin: 5px
}
button:hover {
background-color: #343f44;
}

36
t_gruvbox.css Normal file
View File

@@ -0,0 +1,36 @@
window {
background-color: transparent;
}
/* Outer bar container */
#outer-box {
margin: 10px;
}
/* Inner bar container */
#inner-box {
background-color: #282828;
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: #3c3836;
padding: 5px;
margin: 5px;
}
button, image {
background: none;
border: none;
box-shadow: none;
}
button {
padding-left: 10px;
padding-right: 10px;
margin: 5px;
}
button:hover {
background-color: #3c3836;
}

38
t_monokai-pro.css Normal file
View File

@@ -0,0 +1,38 @@
window {
background-color: transparent;
}
/* Outer bar container */
#outer-box {
margin: 10px;
}
/* Inner bar container */
#inner-box {
background-color: #2c2525; /* Darkest background */
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: #403838; /* Subtle border */
padding: 5px;
margin: 5px;
}
button, image {
background: none;
border: none;
box-shadow: none;
}
button {
padding-left: 10px;
padding-right: 10px;
margin: 5px;
color: #ffffff; /* Default text white */
}
button:hover {
background-color: #403838; /* Hover shade */
color: #ff6188; /* Highlight red */
}

36
t_nord.css Normal file
View File

@@ -0,0 +1,36 @@
window {
background-color: transparent;
}
/* Outer bar container */
#outer-box {
margin: 10px;
}
/* Inner bar container */
#inner-box {
background-color: #2e3440; /* nord0 */
border-radius: 10px;
border-style: solid;
border-width: 4px;
border-color: #3b4252; /* nord1 */
padding: 5px;
margin: 5px;
}
button, image {
background: none;
border: none;
box-shadow: none;
}
button {
padding-left: 10px;
padding-right: 10px;
margin: 5px;
}
button:hover {
background-color: #4c566a; /* nord3 */
}