This commit is contained in:
Liam Waldron 2025-07-07 19:46:08 -04:00
commit 90457eb573
2 changed files with 57 additions and 0 deletions

22
bar.json Normal file
View File

@ -0,0 +1,22 @@
[
{
"label": "_Lock",
"exec": "hyprlock",
"icon": "/usr/share/nwg-bar/images/system-lock-screen.svg"
},
{
"label": "Logout",
"exec": "hyprctl dispatch exit",
"icon": "/usr/share/nwg-bar/images/system-log-out.svg"
},
{
"label": "_Reboot",
"exec": "reboot",
"icon": "/usr/share/nwg-bar/images/system-reboot.svg"
},
{
"label": "_Shutdown",
"exec": "poweroff",
"icon": "/usr/share/nwg-bar/images/system-shutdown.svg"
}
]

35
style.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;
}