Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ objc2-app-kit = { version = "0.3.1", default-features = false, features = [
"NSApplication",
"NSAttributedString",
"NSButton",
"NSCell",
"NSColor",
"NSControl",
"NSEvent",
Expand All @@ -50,12 +51,16 @@ objc2-app-kit = { version = "0.3.1", default-features = false, features = [
"NSGraphicsContext",
"NSImage",
"NSStringDrawing",
"NSMenu",
"NSMenuItem",
"NSResponder",
"NSRunningApplication",
"NSScreen",
"NSStatusBar",
"NSStatusBarButton",
"NSStatusItem",
"NSWindow",
"NSPanel",
"NSTouch",
"NSView",
"NSWindow",
Expand Down
18 changes: 18 additions & 0 deletions rift.default.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,24 @@ active_label = "index"
# options are "layout" or "label"
display_style = "layout"

[settings.ui.centered_bar]
# enable centered workspace/app bar overlay
enabled = false
# show workspace numbers in the bar
show_numbers = true
# show the current mode indicator next to the workspace label when active
show_mode_indicator = false
# group windows by app and show a count badge
deduplicate_icons = false
# skip drawing empty workspaces
hide_empty_workspaces = false
# place the bar overlapping the menu bar or just below it
position = "overlapping_menu_bar"
# shift bar to avoid the notch area when present
notch_aware = false
# z-order for the bar; options: normal, floating, status, popup, screensaver
window_level = "popup"

[settings.ui.stack_line]
# experimental stack line indicator (defaults to off)
enabled = false
Expand Down
1 change: 1 addition & 0 deletions src/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use tracing::Span;

pub mod app;
pub mod broadcast;
pub mod centered_bar;
pub mod config;
pub mod config_watcher;
pub mod drag_swap;
Expand Down
Loading