who knows

This commit is contained in:
atagen 2023-05-20 22:28:48 +10:00
parent bb2e813df8
commit aae14e214e
11 changed files with 512 additions and 218 deletions

View file

@ -1,31 +1,31 @@
$black: #2f343f;
$black_a: #1e2233;
$black: #BLACK;
$black_a: #BLCKA;
$red: #ed244e;
$red_a: #da4453;
$red: #RED;
$red_a: #RDA;
$green: #27ae60;
$green_a: #71f79f;
$green: #GREEN;
$green_a: #GRNA;
$yellow: #f67400;
$yellow_a: #fdbc4b;
$yellow: #YELLOW;
$yellow_a: #YLWA;
$blue: #2980b9;
$blue_a: #1d99f3;
$blue: #BLUE;
$blue_a: #BLUA;
$magenta: #c50ed2;
$magenta_a: #9b59b6;
$magenta: #MAGENTA;
$magenta_a: #MGNA;
$cyan: #3daee9;
$cyan_a: #5294e2;
$cyan: #CYAN;
$cyan_a: #CYNA;
$white: #a1a9b1;
$white_a: #656a73;
$white: #WHITE;
$white_a: #WHTA;
$fg: #d3dae3;
$bg: #060604;
$fg: #FG;
$bg: #BG;
$border: $red;
$border: $black;
$shadow: $black;
$base: $bg;
$bg1: $black;

View file

@ -2,15 +2,15 @@ exec-once = eww open bar
exec-once = swayidle -w timeout 300 'waylock'
exec-once = swayidle -w timeout 600 'systemctl suspend' after-resume 'eww open bar'
exec-once = ckb-next -c -b
exec-once = swaybg -i $HOME/Downloads/fantastyland-dark.png -m fill
exec-once = swaybg -i #BGIMAGE -m fill
exec-once = xrdb -l ~/.Xresources
exec-once = swayosd --max-volume 100
exec-once = keepassxc
exec-once = swaync
exec = eww reload
exec = gsettings set org.gnome.desktop.interface gtk-theme 'Sweet-Dark'
exec = gsettings set org.gnome.desktop.interface font-name 'Montreux Classic'
exec = gsettings set org.gnome.desktop.interface icon-theme 'Papirus-Dark'
exec = gsettings set org.gnome.desktop.interface gtk-theme '#GTKTHEME'
exec = gsettings set org.gnome.desktop.interface font-name '#FONT'
exec = gsettings set org.gnome.desktop.interface icon-theme '#ICONTHEME'
input {
kb_layout=us
@ -26,10 +26,8 @@ general {
gaps_out=25
resize_on_border=true
hover_icon_on_border=true
col.active_border=0xffa1a9b1
col.inactive_border=0xff2f343f
col.group_border=0xffda4453
col.group_border_active=0xffed244e
col.active_border=0xff#ACTIVEBORDER
col.inactive_border=0xff#BORDER
}
dwindle {

View file

@ -2,19 +2,19 @@
* vim: ft=less
*/
@define-color cc-bg #060604;
@define-color cc-bg #PANELBG;
@define-color noti-border-color #2f343f;
@define-color noti-bg #060604;
@define-color noti-bg-hover #1e2233;
@define-color noti-bg-focus #2f343f;
@define-color noti-close-bg #060604;
@define-color noti-close-bg-hover #1e2233;
@define-color noti-border-color #BORDER;
@define-color noti-bg #NOTIBGNORM;
@define-color noti-bg-hover #NOTIBGHOVER;
@define-color noti-bg-focus #NOTIBGFOCUS;
@define-color noti-close-bg #NOTIBGCLOSE;
@define-color noti-close-bg-hover #NOTIBGHOVERCLOSE;
@define-color bg-selected #2f343f;
@define-color bg-selected #BGSELECTED;
* {
font-family: "Montreux Classic", sans-serif;
font-family: "FONT", sans-serif;
}
.notification-row {

View file

@ -1,36 +1,38 @@
{
"label" : "lock",
"action" : "waylock",
"text" : "Lock",
"keybind" : "l"
}
{
"label" : "logout",
"action" : "loginctl terminate-user $USER",
"text" : "Logout",
"keybind" : "e"
}
{
"label" : "suspend",
"action" : "systemctl suspend",
"text" : "Suspend",
"keybind" : "s"
}
{
"label" : "shutdown",
"action" : "systemctl poweroff",
"text" : "Shutdown",
"keybind" : "d"
}
{
"label" : "reboot",
"action" : "systemctl reboot",
"text" : "Reboot",
"keybind" : "r"
}
{
"label" : "hibernate",
"action" : "systemctl hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
[
{
"label" : "lock",
"action" : "waylock",
"text" : "Lock",
"keybind" : "l"
},
{
"label" : "logout",
"action" : "loginctl terminate-user $USER",
"text" : "Logout",
"keybind" : "e"
},
{
"label" : "suspend",
"action" : "systemctl suspend",
"text" : "Suspend",
"keybind" : "s"
},
{
"label" : "shutdown",
"action" : "systemctl poweroff",
"text" : "Shutdown",
"keybind" : "d"
},
{
"label" : "reboot",
"action" : "systemctl reboot",
"text" : "Reboot",
"keybind" : "r"
},
{
"label" : "hibernate",
"action" : "systemctl hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
]

View file

@ -2,11 +2,11 @@
background-image: none;
}
window {
background-color: #181b28;
background-color: #WINBG;
}
button {
color: #FFFFFF;
background-color: #181b28;
color: #BTNCOL;
background-color: #BTNBG;
border-style: solid;
border-width: 2px;
background-repeat: no-repeat;
@ -15,7 +15,7 @@ button {
}
button:focus, button:active, button:hover {
background-color: #27ae60;
background-color: #BTNFOCUSBG;
outline-style: none;
}