Skip to content

Commit

Permalink
fix: updates color type references (#143)
Browse files Browse the repository at this point in the history
Co-authored-by: Pedro Adorno <[email protected]>
  • Loading branch information
PedroMAdorno4 and pedro-mendes-adorno authored Dec 4, 2024
1 parent 611754c commit c91a7bb
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 c91a7bb

Please sign in to comment.