Regenerated
This commit is contained in:
+401
-394
File diff suppressed because it is too large
Load Diff
+21
-14
@@ -1350,14 +1350,12 @@ in
|
|||||||
home-manager.users = {
|
home-manager.users = {
|
||||||
${username} = {
|
${username} = {
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/waybar/config.jsonc" = {
|
".config/waybar/config.jsonc".source = {
|
||||||
text = builtins.readFile "${assetPath}/config.jsonc";
|
config.lib.file.mkOutOfStoreSymlink "${assetPath}/config.jsonc";
|
||||||
force = true;
|
};
|
||||||
};
|
".config/waybar/style-dark.css".source = {
|
||||||
".config/waybar/style-dark.css" = {
|
config.lib.file.mkOutOfStoreSymlink "${assetPath}/style-dark.css";
|
||||||
text = builtins.replaceStrings ["henrov"] [username] (builtins.readFile "${assetPath}/style-dark.css");
|
};
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
".config/scripts/bluetooth-status.sh" = {
|
".config/scripts/bluetooth-status.sh" = {
|
||||||
text = builtins.readFile "${basePath}/scripts/bluetooth-status.sh";
|
text = builtins.readFile "${basePath}/scripts/bluetooth-status.sh";
|
||||||
force = true;
|
force = true;
|
||||||
@@ -5033,26 +5031,35 @@ window#waybar {
|
|||||||
color: @text;
|
color: @text;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
/* --- Option 1 filled
|
/* --- Option 1 transparent
|
||||||
background:
|
background:
|
||||||
linear-gradient(transparent, transparent) padding-box,
|
linear-gradient(transparent, transparent) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
-- */
|
--- */
|
||||||
/* --- Option 2 border
|
|
||||||
|
/* --- Option 2 filled
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base, @base) padding-box,
|
linear-gradient(@base, @base) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
*/
|
*/
|
||||||
/* --- Option 3 NONE */
|
|
||||||
|
/* --- Option 3 base background border gradient */
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base, @base) padding-box,
|
linear-gradient(@base, @base) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
/* --- Option 3 NONE */
|
|
||||||
|
/* --- Option 4 NONE
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 2px solid @border;
|
border: 2px solid transparent;
|
||||||
|
--- */
|
||||||
|
|
||||||
|
/* --- Option 5 Solid border
|
||||||
|
background: transparent;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
-- */
|
||||||
|
|
||||||
margin: 0px 3px;
|
margin: 0px 3px;
|
||||||
padding: 1px 4px;
|
padding: 1px 4px;
|
||||||
|
|||||||
@@ -39,26 +39,35 @@ window#waybar {
|
|||||||
color: @text;
|
color: @text;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
/* --- Option 1 filled
|
/* --- Option 1 transparent
|
||||||
background:
|
background:
|
||||||
linear-gradient(transparent, transparent) padding-box,
|
linear-gradient(transparent, transparent) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
-- */
|
--- */
|
||||||
/* --- Option 2 border
|
|
||||||
|
/* --- Option 2 filled
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base, @base) padding-box,
|
linear-gradient(@base, @base) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
*/
|
*/
|
||||||
/* --- Option 3 NONE */
|
|
||||||
|
/* --- Option 3 base background border gradient */
|
||||||
background:
|
background:
|
||||||
linear-gradient(@base, @base) padding-box,
|
linear-gradient(@base, @base) padding-box,
|
||||||
linear-gradient(45deg, @blue, @green) border-box;
|
linear-gradient(45deg, @blue, @green) border-box;
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
/* --- Option 3 NONE */
|
|
||||||
|
/* --- Option 4 NONE
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: 2px solid @border;
|
border: 2px solid transparent;
|
||||||
|
--- */
|
||||||
|
|
||||||
|
/* --- Option 5 Solid border
|
||||||
|
background: transparent;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
-- */
|
||||||
|
|
||||||
margin: 0px 3px;
|
margin: 0px 3px;
|
||||||
padding: 1px 4px;
|
padding: 1px 4px;
|
||||||
|
|||||||
@@ -13,14 +13,12 @@ in
|
|||||||
home-manager.users = {
|
home-manager.users = {
|
||||||
${username} = {
|
${username} = {
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/waybar/config.jsonc" = {
|
".config/waybar/config.jsonc".source = {
|
||||||
text = builtins.readFile "${assetPath}/config.jsonc";
|
config.lib.file.mkOutOfStoreSymlink "${assetPath}/config.jsonc";
|
||||||
force = true;
|
};
|
||||||
};
|
".config/waybar/style-dark.css".source = {
|
||||||
".config/waybar/style-dark.css" = {
|
config.lib.file.mkOutOfStoreSymlink "${assetPath}/style-dark.css";
|
||||||
text = builtins.replaceStrings ["henrov"] [username] (builtins.readFile "${assetPath}/style-dark.css");
|
};
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
".config/scripts/bluetooth-status.sh" = {
|
".config/scripts/bluetooth-status.sh" = {
|
||||||
text = builtins.readFile "${basePath}/scripts/bluetooth-status.sh";
|
text = builtins.readFile "${basePath}/scripts/bluetooth-status.sh";
|
||||||
force = true;
|
force = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user