Added the hyprsunset module (requires hyprland v0.45.0) (#485)
* add sunset module * Implement hyprsunset module. * Update themes * Undo vivids * Fix vivids
This commit is contained in:
@@ -633,6 +633,83 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
|
||||
type: 'string',
|
||||
}),
|
||||
|
||||
/*
|
||||
************************************
|
||||
* HYPRSUNSET *
|
||||
************************************
|
||||
*/
|
||||
Header('Hyprsunset'),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.temperature,
|
||||
title: 'Temperature',
|
||||
subtitle: 'Ex: 1000k, 2000k, 5000k, etc.',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.theme.bar.buttons.modules.hyprsunset.enableBorder,
|
||||
title: 'Button Border',
|
||||
type: 'boolean',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.onIcon,
|
||||
title: 'Enabled Icon',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.offIcon,
|
||||
title: 'Disabled Icon',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.onLabel,
|
||||
title: 'Enabled Label',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.offLabel,
|
||||
title: 'Disabled Label',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.label,
|
||||
title: 'Show Label',
|
||||
type: 'boolean',
|
||||
}),
|
||||
Option({
|
||||
opt: options.theme.bar.buttons.modules.hyprsunset.spacing,
|
||||
title: 'Spacing',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.pollingInterval,
|
||||
title: 'Polling Interval',
|
||||
type: 'number',
|
||||
subtitle: "WARNING: Be careful of your package manager's rate limit.",
|
||||
min: 100,
|
||||
max: 60 * 24 * 1000,
|
||||
increment: 1000,
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.rightClick,
|
||||
title: 'Right Click',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.middleClick,
|
||||
title: 'Middle Click',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.scrollUp,
|
||||
title: 'Scroll Up',
|
||||
type: 'string',
|
||||
}),
|
||||
Option({
|
||||
opt: options.bar.customModules.hyprsunset.scrollDown,
|
||||
title: 'Scroll Down',
|
||||
type: 'string',
|
||||
}),
|
||||
|
||||
/*
|
||||
************************************
|
||||
* POWER *
|
||||
|
||||
33
customModules/hyprsunset/helpers.ts
Normal file
33
customModules/hyprsunset/helpers.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
import options from 'options';
|
||||
|
||||
import { Variable as TVariable } from 'types/variable';
|
||||
|
||||
const { temperature } = options.bar.customModules.hyprsunset;
|
||||
|
||||
export const isActiveCommand = `bash -c "pgrep -x "hyprsunset" > /dev/null && echo "yes" || echo "no""`;
|
||||
|
||||
export const isActive = Variable(false);
|
||||
|
||||
export const toggleSunset = (isActive: TVariable<boolean>): void => {
|
||||
Utils.execAsync(isActiveCommand).then((res) => {
|
||||
if (res === 'no') {
|
||||
Utils.execAsync(`bash -c "nohup hyprsunset -t ${temperature.value} > /dev/null 2>&1 &"`).then(() => {
|
||||
Utils.execAsync(isActiveCommand).then((res) => {
|
||||
isActive.value = res === 'yes';
|
||||
});
|
||||
});
|
||||
} else {
|
||||
Utils.execAsync(`bash -c "pkill hyprsunset "`).then(() => {
|
||||
Utils.execAsync(isActiveCommand).then((res) => {
|
||||
isActive.value = res === 'yes';
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
export const checkSunsetStatus = (): undefined => {
|
||||
Utils.execAsync(isActiveCommand).then((res) => {
|
||||
isActive.value = res === 'yes';
|
||||
});
|
||||
};
|
||||
65
customModules/hyprsunset/index.ts
Normal file
65
customModules/hyprsunset/index.ts
Normal file
@@ -0,0 +1,65 @@
|
||||
import options from 'options';
|
||||
import { module } from '../module';
|
||||
|
||||
import { inputHandler, throttleInput } from 'customModules/utils';
|
||||
import Button from 'types/widgets/button';
|
||||
import { Attribute, Child } from 'lib/types/widget';
|
||||
import { BarBoxChild } from 'lib/types/bar';
|
||||
import { pollVariable } from 'customModules/PollVar';
|
||||
import { checkSunsetStatus, isActive, toggleSunset } from './helpers';
|
||||
|
||||
const { label, pollingInterval, onIcon, offIcon, onLabel, offLabel, rightClick, middleClick, scrollUp, scrollDown } =
|
||||
options.bar.customModules.hyprsunset;
|
||||
|
||||
const dummyVar = Variable(undefined);
|
||||
|
||||
checkSunsetStatus();
|
||||
|
||||
pollVariable(dummyVar, [], pollingInterval.bind('value'), checkSunsetStatus);
|
||||
|
||||
const throttledToggleSunset = throttleInput(() => toggleSunset(isActive), 1000);
|
||||
|
||||
export const Hyprsunset = (): BarBoxChild => {
|
||||
const hyprsunsetModule = module({
|
||||
textIcon: Utils.merge(
|
||||
[isActive.bind('value'), onIcon.bind('value'), offIcon.bind('value')],
|
||||
(active, onIcn, offIcn) => {
|
||||
return active ? onIcn : offIcn;
|
||||
},
|
||||
),
|
||||
tooltipText: isActive.bind('value').as((active) => `Hyprsunset ${active ? 'enabled' : 'disabled'}`),
|
||||
boxClass: 'hyprsunset',
|
||||
label: Utils.merge(
|
||||
[isActive.bind('value'), onLabel.bind('value'), offLabel.bind('value')],
|
||||
(active, onLbl, offLbl) => {
|
||||
return active ? onLbl : offLbl;
|
||||
},
|
||||
),
|
||||
showLabelBinding: label.bind('value'),
|
||||
props: {
|
||||
setup: (self: Button<Child, Attribute>) => {
|
||||
inputHandler(self, {
|
||||
onPrimaryClick: {
|
||||
fn: () => {
|
||||
throttledToggleSunset();
|
||||
},
|
||||
},
|
||||
onSecondaryClick: {
|
||||
cmd: rightClick,
|
||||
},
|
||||
onMiddleClick: {
|
||||
cmd: middleClick,
|
||||
},
|
||||
onScrollUp: {
|
||||
cmd: scrollUp,
|
||||
},
|
||||
onScrollDown: {
|
||||
cmd: scrollDown,
|
||||
},
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
return hyprsunsetModule;
|
||||
};
|
||||
@@ -167,6 +167,23 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
|
||||
}),
|
||||
Option({ opt: options.theme.bar.buttons.modules.weather.border, title: 'Border', type: 'color' }),
|
||||
|
||||
Header('Hyprsunset'),
|
||||
Option({ opt: options.theme.bar.buttons.modules.hyprsunset.text, title: 'Text', type: 'color' }),
|
||||
Option({ opt: options.theme.bar.buttons.modules.hyprsunset.icon, title: 'Icon', type: 'color' }),
|
||||
Option({
|
||||
opt: options.theme.bar.buttons.modules.hyprsunset.background,
|
||||
title: 'Label Background',
|
||||
type: 'color',
|
||||
}),
|
||||
Option({
|
||||
opt: options.theme.bar.buttons.modules.hyprsunset.icon_background,
|
||||
title: 'Icon Background',
|
||||
subtitle:
|
||||
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
|
||||
type: 'color',
|
||||
}),
|
||||
Option({ opt: options.theme.bar.buttons.modules.hyprsunset.border, title: 'Border', type: 'color' }),
|
||||
|
||||
Header('Power'),
|
||||
Option({ opt: options.theme.bar.buttons.modules.power.icon, title: 'Icon', type: 'color' }),
|
||||
Option({
|
||||
|
||||
@@ -36,7 +36,7 @@ export const runAsyncCommand: RunAsyncCommand = (cmd, events, fn, postInputUpdat
|
||||
.catch((err) => console.error(`Error running command "${cmd}": ${err})`));
|
||||
};
|
||||
|
||||
export function throttle<T extends ThrottleFn>(func: T, limit: number): T {
|
||||
export function throttleInput<T extends ThrottleFn>(func: T, limit: number): T {
|
||||
let inThrottle: boolean;
|
||||
return function (this: ThisParameterType<T>, ...args: Parameters<T>) {
|
||||
if (!inThrottle) {
|
||||
@@ -50,9 +50,12 @@ export function throttle<T extends ThrottleFn>(func: T, limit: number): T {
|
||||
}
|
||||
|
||||
export const throttledScrollHandler = (interval: number): ThrottleFn =>
|
||||
throttle((cmd: string, events: EventArgs, fn: ThrottleFnCallback, postInputUpdater?: VariableType<boolean>) => {
|
||||
throttleInput(
|
||||
(cmd: string, events: EventArgs, fn: ThrottleFnCallback, postInputUpdater?: VariableType<boolean>) => {
|
||||
runAsyncCommand(cmd, events, fn, postInputUpdater);
|
||||
}, 200 / interval);
|
||||
},
|
||||
200 / interval,
|
||||
);
|
||||
|
||||
const dummyVar = Variable('');
|
||||
|
||||
|
||||
@@ -24,6 +24,7 @@ import {
|
||||
Submap,
|
||||
Weather,
|
||||
Power,
|
||||
Hyprsunset,
|
||||
} from './Exports';
|
||||
|
||||
import { BarItemBox as WidgetContainer } from '../shared/barItemBox.js';
|
||||
@@ -64,7 +65,8 @@ type Section =
|
||||
| 'submap'
|
||||
| 'weather'
|
||||
| 'power'
|
||||
| 'systray';
|
||||
| 'systray'
|
||||
| 'hyprsunset';
|
||||
|
||||
type Layout = {
|
||||
left: Section[];
|
||||
@@ -121,6 +123,7 @@ const widget = {
|
||||
submap: (): Button<Child, Attribute> => WidgetContainer(Submap()),
|
||||
weather: (): Button<Child, Attribute> => WidgetContainer(Weather()),
|
||||
power: (): Button<Child, Attribute> => WidgetContainer(Power()),
|
||||
hyprsunset: (): Button<Child, Attribute> => WidgetContainer(Hyprsunset()),
|
||||
};
|
||||
|
||||
type GdkMonitors = {
|
||||
|
||||
@@ -21,6 +21,7 @@ import { Updates } from 'customModules/updates/index';
|
||||
import { Submap } from 'customModules/submap/index';
|
||||
import { Weather } from 'customModules/weather/index';
|
||||
import { Power } from 'customModules/power/index';
|
||||
import { Hyprsunset } from 'customModules/hyprsunset/index';
|
||||
|
||||
export {
|
||||
Menu,
|
||||
@@ -46,4 +47,5 @@ export {
|
||||
Submap,
|
||||
Weather,
|
||||
Power,
|
||||
Hyprsunset,
|
||||
};
|
||||
|
||||
22
options.ts
22
options.ts
@@ -377,6 +377,15 @@ const options = mkOptions(OPTIONS, {
|
||||
icon_background: opt(colors.base2),
|
||||
spacing: opt('0.45em'),
|
||||
},
|
||||
hyprsunset: {
|
||||
enableBorder: opt(false),
|
||||
border: opt(colors.peach),
|
||||
background: opt(colors.base2),
|
||||
text: opt(colors.peach),
|
||||
icon: opt(colors.peach),
|
||||
icon_background: opt(colors.base2),
|
||||
spacing: opt('0.45em'),
|
||||
},
|
||||
},
|
||||
},
|
||||
menus: {
|
||||
@@ -1095,6 +1104,19 @@ const options = mkOptions(OPTIONS, {
|
||||
scrollUp: opt(''),
|
||||
scrollDown: opt(''),
|
||||
},
|
||||
hyprsunset: {
|
||||
temperature: opt('6000k'),
|
||||
label: opt(true),
|
||||
onIcon: opt(''),
|
||||
offIcon: opt(''),
|
||||
onLabel: opt('On'),
|
||||
offLabel: opt('Off'),
|
||||
pollingInterval: opt(1000 * 2),
|
||||
rightClick: opt(''),
|
||||
middleClick: opt(''),
|
||||
scrollUp: opt(''),
|
||||
scrollDown: opt(''),
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
@@ -394,3 +394,30 @@
|
||||
// custom font size
|
||||
1.3em //
|
||||
);
|
||||
|
||||
/*
|
||||
* #################################
|
||||
* # Hyprsunset Styling #
|
||||
* #################################
|
||||
*/
|
||||
@include styleModule(
|
||||
//
|
||||
// class name
|
||||
'hyprsunset',
|
||||
// label color
|
||||
$bar-buttons-modules-hyprsunset-text,
|
||||
// icon color
|
||||
$bar-buttons-modules-hyprsunset-icon,
|
||||
// icon background if split style is used
|
||||
$bar-buttons-modules-hyprsunset-icon_background,
|
||||
// label background
|
||||
$bar-buttons-modules-hyprsunset-background,
|
||||
// inner spacing
|
||||
$bar-buttons-modules-hyprsunset-spacing,
|
||||
// if border enabled
|
||||
$bar-buttons-modules-hyprsunset-enableBorder,
|
||||
// border color
|
||||
$bar-buttons-modules-hyprsunset-border,
|
||||
// custom font size
|
||||
1.3em //
|
||||
);
|
||||
|
||||
@@ -344,5 +344,11 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
||||
"theme.bar.border.color": "#babbf1",
|
||||
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
||||
"theme.bar.buttons.borderColor": "#babbf1"
|
||||
"theme.bar.buttons.borderColor": "#babbf1",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#e5c890",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c890",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890"
|
||||
}
|
||||
|
||||
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
||||
"theme.bar.border.color": "#babbf1",
|
||||
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
||||
"theme.bar.buttons.borderColor": "#babbf1"
|
||||
"theme.bar.buttons.borderColor": "#babbf1",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c890",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
||||
"theme.bar.border.color": "#babbf1",
|
||||
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
||||
"theme.bar.buttons.borderColor": "#babbf1"
|
||||
"theme.bar.buttons.borderColor": "#babbf1",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#303446",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#e78284",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e78284",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#303446",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e78284"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
||||
"theme.bar.border.color": "#7287fd",
|
||||
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
||||
"theme.bar.buttons.borderColor": "#7287fd"
|
||||
"theme.bar.buttons.borderColor": "#7287fd",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#df8e1d",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#df8e1d",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
||||
"theme.bar.border.color": "#7287fd",
|
||||
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
||||
"theme.bar.buttons.borderColor": "#7287fd"
|
||||
"theme.bar.buttons.borderColor": "#7287fd",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#df8e1d",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
||||
"theme.bar.border.color": "#7287fd",
|
||||
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
||||
"theme.bar.buttons.borderColor": "#7287fd"
|
||||
"theme.bar.buttons.borderColor": "#7287fd",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#dcdfe8",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#d20f39",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#d20f39",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#dcdfe8",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#d20f39"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
||||
"theme.bar.border.color": "#b7bdf8",
|
||||
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
||||
"theme.bar.buttons.borderColor": "#b7bdf8"
|
||||
"theme.bar.buttons.borderColor": "#b7bdf8",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#eed49f",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eed49f",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
||||
"theme.bar.border.color": "#b7bdf8",
|
||||
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
||||
"theme.bar.buttons.borderColor": "#b7bdf8"
|
||||
"theme.bar.buttons.borderColor": "#b7bdf8",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eed49f",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
||||
"theme.bar.border.color": "#b7bdf8",
|
||||
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
||||
"theme.bar.buttons.borderColor": "#b7bdf8"
|
||||
"theme.bar.buttons.borderColor": "#b7bdf8",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#24273a",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#ed8796",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ed8796",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#24273a",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#ed8796"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
||||
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
||||
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
||||
"theme.bar.border.color": "#b4befe"
|
||||
"theme.bar.border.color": "#b4befe",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#fab387",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#242438",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
||||
}
|
||||
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
||||
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
||||
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
||||
"theme.bar.border.color": "#b4befe"
|
||||
"theme.bar.border.color": "#b4befe",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
||||
}
|
||||
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.notification.actions.text": "#181825",
|
||||
"theme.notification.actions.background": "#b4befd",
|
||||
"theme.notification.background": "#181826",
|
||||
"theme.bar.border.color": "#b4befe"
|
||||
"theme.bar.border.color": "#b4befe",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#fab387",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#242438",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
||||
}
|
||||
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
||||
"theme.bar.border.color": "#f7d04b",
|
||||
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
||||
"theme.bar.buttons.borderColor": "#FFD700"
|
||||
"theme.bar.buttons.borderColor": "#FFD700",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#FFD700",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FFD700",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700"
|
||||
}
|
||||
@@ -344,6 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
||||
"theme.bar.border.color": "#f7d04b",
|
||||
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
||||
"theme.bar.buttons.borderColor": "#f7d04b"
|
||||
"theme.bar.buttons.borderColor": "#f7d04b",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FFD700",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#121212",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700"
|
||||
}
|
||||
|
||||
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
||||
"theme.bar.border.color": "#f7d04b",
|
||||
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
||||
"theme.bar.buttons.borderColor": "#FFD700"
|
||||
"theme.bar.buttons.borderColor": "#FFD700",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#121212",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#FF4500",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FF4500",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#121212",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#FF4500"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
||||
"theme.bar.border.color": "#bd93f9",
|
||||
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
||||
"theme.bar.buttons.borderColor": "#bd93f9"
|
||||
"theme.bar.buttons.borderColor": "#bd93f9",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#f1fa8c",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f1fa8c",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
||||
"theme.bar.border.color": "#bd93f9",
|
||||
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
||||
"theme.bar.buttons.borderColor": "#bd93f9"
|
||||
"theme.bar.buttons.borderColor": "#bd93f9",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f1fa8c",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#282936",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
||||
"theme.bar.border.color": "#bd93f9",
|
||||
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
||||
"theme.bar.buttons.borderColor": "#bd93f9"
|
||||
"theme.bar.buttons.borderColor": "#bd93f9",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#44475a",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#ff79c6",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ff79c6",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#44475a",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#ff79c6"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
||||
"theme.bar.border.color": "#83c092",
|
||||
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
||||
"theme.bar.buttons.borderColor": "#a7c080"
|
||||
"theme.bar.buttons.borderColor": "#a7c080",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#dbbc7f",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#dbbc7f",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
||||
"theme.bar.border.color": "#83c092",
|
||||
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
||||
"theme.bar.buttons.borderColor": "#a7c080"
|
||||
"theme.bar.buttons.borderColor": "#a7c080",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#dbbc7f",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
||||
"theme.bar.border.color": "#83c092",
|
||||
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
||||
"theme.bar.buttons.borderColor": "#a7c080"
|
||||
"theme.bar.buttons.borderColor": "#a7c080",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#323d43",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#e67e80",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e67e80",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#323d43",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e67e80"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
||||
"theme.bar.border.color": "#83a598",
|
||||
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
||||
"theme.bar.buttons.borderColor": "#83a598"
|
||||
"theme.bar.buttons.borderColor": "#83a598",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#fabd2f",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
||||
"theme.bar.border.color": "#83a598",
|
||||
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
||||
"theme.bar.buttons.borderColor": "#83a598"
|
||||
"theme.bar.buttons.borderColor": "#83a598",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fabd2f",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
||||
"theme.bar.border.color": "#83a598",
|
||||
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
||||
"theme.bar.buttons.borderColor": "#83a598"
|
||||
"theme.bar.buttons.borderColor": "#83a598",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#282828",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#d3869b",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#282828",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#d3869b"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
||||
"theme.bar.border.color": "#FFFFFF",
|
||||
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
||||
"theme.bar.buttons.borderColor": "#FFFFFF"
|
||||
"theme.bar.buttons.borderColor": "#FFFFFF",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#ffffff",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
||||
"theme.bar.border.color": "#FFFFFF",
|
||||
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
||||
"theme.bar.buttons.borderColor": "#FFFFFF"
|
||||
"theme.bar.buttons.borderColor": "#FFFFFF",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
||||
"theme.bar.border.color": "#FFFFFF",
|
||||
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
||||
"theme.bar.buttons.borderColor": "#FFFFFF"
|
||||
"theme.bar.buttons.borderColor": "#FFFFFF",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#090909",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#ffffff",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#090909",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
||||
"theme.bar.border.color": "#88c0d0",
|
||||
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
||||
"theme.bar.buttons.borderColor": "#88c0d0"
|
||||
"theme.bar.buttons.borderColor": "#88c0d0",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#81a1c1",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#81a1c1",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
||||
"theme.bar.border.color": "#88c0d0",
|
||||
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
||||
"theme.bar.buttons.borderColor": "#88c0d0"
|
||||
"theme.bar.buttons.borderColor": "#88c0d0",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#81a1c1",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
||||
"theme.bar.border.color": "#88c0d0",
|
||||
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
||||
"theme.bar.buttons.borderColor": "#88c0d0"
|
||||
"theme.bar.buttons.borderColor": "#88c0d0",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#3b4252",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#8fbcbb",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#8fbcbb",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#3b4252",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#8fbcbb"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
||||
"theme.bar.border.color": "#61afef",
|
||||
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
||||
"theme.bar.buttons.borderColor": "#61afef"
|
||||
"theme.bar.buttons.borderColor": "#61afef",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#e5c07b",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c07b",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
||||
"theme.bar.border.color": "#61afef",
|
||||
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
||||
"theme.bar.buttons.borderColor": "#61afef"
|
||||
"theme.bar.buttons.borderColor": "#61afef",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c07b",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
||||
"theme.bar.border.color": "#61afef",
|
||||
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
||||
"theme.bar.buttons.borderColor": "#61afef"
|
||||
"theme.bar.buttons.borderColor": "#61afef",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#e06c75",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e06c75",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#21252b",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e06c75"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||
"theme.bar.border.color": "#c4a7e7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||
"theme.bar.border.color": "#c4a7e7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||
"theme.bar.border.color": "#c4a7e7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||
"theme.bar.border.color": "#c4a7e7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#2a283e",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#2a283e",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||
"theme.bar.border.color": "#c4a7e7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||
"theme.bar.border.color": "#c4a7e7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
||||
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21202e",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eb6f92",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#21202e",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92"
|
||||
}
|
||||
@@ -344,5 +344,11 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
||||
"theme.bar.border.color": "#bb9af7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
||||
"theme.bar.buttons.borderColor": "#bb9af7"
|
||||
"theme.bar.buttons.borderColor": "#bb9af7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#e0af68",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e0af68",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68"
|
||||
}
|
||||
|
||||
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
||||
"theme.bar.border.color": "#bb9af7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
||||
"theme.bar.buttons.borderColor": "#bb9af7"
|
||||
"theme.bar.buttons.borderColor": "#bb9af7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e0af68",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68"
|
||||
}
|
||||
@@ -344,5 +344,10 @@
|
||||
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
||||
"theme.bar.border.color": "#bb9af7",
|
||||
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
||||
"theme.bar.buttons.borderColor": "#bb9af7"
|
||||
"theme.bar.buttons.borderColor": "#bb9af7",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon": "#272a3d",
|
||||
"theme.bar.buttons.modules.hyprsunset.background": "#f7768e",
|
||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f7768e",
|
||||
"theme.bar.buttons.modules.hyprsunset.text": "#272a3d",
|
||||
"theme.bar.buttons.modules.hyprsunset.border": "#f7768e"
|
||||
}
|
||||
Reference in New Issue
Block a user