Skip to content

Commit

Permalink
fix: updates color type references
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-mendes-adorno committed Dec 4, 2024
1 parent 611754c commit 3b6f0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ auto constexpr k_keepFocused = "plugin:split-monitor-workspaces:keep_focused";
auto constexpr k_enableNotifications = "plugin:split-monitor-workspaces:enable_notifications";
auto constexpr k_enablePersistentWorkspaces = "plugin:split-monitor-workspaces:enable_persistent_workspaces";

const CColor s_pluginColor = {0x61 / 255.0F, 0xAF / 255.0F, 0xEF / 255.0F, 1.0F};
const CHyprColor s_pluginColor = {0x61 / 255.0F, 0xAF / 255.0F, 0xEF / 255.0F, 1.0F};
bool g_enableNotifications = false;
bool g_enablePersistentWorkspaces = true;
bool g_keepFocused = false;
Expand Down

0 comments on commit 3b6f0f4

Please sign in to comment.