Skip to content
Open
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
62 changes: 57 additions & 5 deletions config/ghostty/config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ config-file = ?"~/.config/omarchy/current/theme/ghostty.conf"
# Font
font-family = "JetBrainsMono Nerd Font"
font-style = Regular
font-size = 9
font-size = 10.5

# Window
window-theme = ghostty
Expand All @@ -15,12 +15,15 @@ resize-overlay = never
gtk-toolbar-style = flat

# Cursor styling
cursor-style = "block"
cursor-style-blink = false
cursor-style = block
cursor-style-blink = true
cursor-color = #7aa2f7
cursor-text = #1a1b26

# Cursor styling + SSH session terminfo
# (all shell integration options must be passed together)
shell-integration-features = no-cursor,ssh-env
shell-integration = detect
shell-integration-features = cursor,sudo,title,ssh-env

# Keyboard bindings
keybind = shift+insert=paste_from_clipboard
Expand All @@ -31,7 +34,56 @@ keybind = super+control+shift+alt+arrow_left=resize_split:left,100
keybind = super+control+shift+alt+arrow_right=resize_split:right,100

# Slowdown mouse scrolling
mouse-scroll-multiplier = 0.95
mouse-scroll-multiplier = 1.15

# Fix general slowness on hyprland (https://github.com/ghostty-org/ghostty/discussions/3224)
async-backend = epoll
# ==========================================================
# Premium Ghostty Settings
# ==========================================================


# Copy selected text automatically
copy-on-select = clipboard

# Allow selecting URLs easily
click-repeat-interval = 300

# Window Decorations
window-save-state = always

# Clipboard
clipboard-read = allow
clipboard-write = allow

# Selection
selection-invert-fg-bg = false

# Links
link-url = true

# Working directory inheritance
window-inherit-working-directory = true
# New Tab
keybind = ctrl+shift+t=new_tab

# Close Tab
keybind = ctrl+shift+w=close_surface

# Next Tab
keybind = ctrl+tab=next_tab

# Previous Tab
keybind = ctrl+shift+tab=previous_tab

# Split Right
keybind = ctrl+shift+d=new_split:right

# Split Down
keybind = ctrl+shift+e=new_split:down

auto-update = off

quit-after-last-window-closed = true

window-step-resize = true
50 changes: 17 additions & 33 deletions config/waybar/config.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"reload_style_on_change": true,
"layer": "top",
"position": "top",
"margin-top": 8,
"margin-left": 14,
"margin-right": 14,
"spacing": 0,
"height": 26,
"width": 0,
"height": 40,
"modules-left": ["custom/omarchy", "hyprland/workspaces"],
"modules-center": ["clock#horizontal", "clock#vertical", "custom/weather", "custom/update", "custom/voxtype", "custom/screenrecording-indicator", "custom/idle-indicator", "custom/notification-silencing-indicator"],
"modules-center": ["clock", "custom/weather", "custom/update", "custom/voxtype", "custom/screenrecording-indicator", "custom/idle-indicator", "custom/notification-silencing-indicator"],
"modules-right": [
"group/tray-expander",
"bluetooth",
Expand Down Expand Up @@ -37,7 +39,8 @@
"2": [],
"3": [],
"4": [],
"5": []
"5": [],
"6": []
}
},
"custom/omarchy": {
Expand All @@ -54,25 +57,19 @@
"signal": 7,
"interval": 21600
},

"cpu": {
"interval": 5,
"format": "󰍛",
"on-click": "omarchy-launch-or-focus-tui btop",
"on-click-right": "alacritty"
},
"clock#horizontal": {
"format": "{:L%A %H:%M}",
"format-alt": "{:L%d %B W%V %Y}",
"tooltip": false,
"on-click-right": "omarchy-launch-floating-terminal-with-presentation omarchy-tz-select"
},
"clock#vertical": {
"format": "{:%H\n  —\n%M}",
"format-alt": "{:L%d %B W%V %Y}",
"tooltip": false,
"clock": {
"format": "󰥔 {:%I:%M %p}",
"format-alt": "󰃭 {:%A, %d %B %Y}",
"tooltip-format": "{:%A, %d %B %Y}",
"tooltip": true,
"on-click-right": "omarchy-launch-floating-terminal-with-presentation omarchy-tz-select"
},
},
"custom/weather": {
"exec": "$OMARCHY_PATH/default/waybar/weather.sh",
"return-type": "json",
Expand Down Expand Up @@ -141,23 +138,10 @@
"transition-duration": 600,
"children-class": "tray-group-item"
},
"modules": ["group/expand-icons", "tray"]
},
"group/expand-icons": {
"orientation": "inherit",
"modules": ["custom/expand-icon#horizontal", "custom/expand-icon#vertical"]
},
"custom/expand-icon#horizontal": {
"format": "",
"tooltip": false,
"on-scroll-up": "",
"on-scroll-down": "",
"on-scroll-left": "",
"on-scroll-right": ""
"modules": ["custom/expand-icon", "tray"]
},
"custom/expand-icon#vertical": {
"custom/expand-icon": {
"format": "",
"rotate": 270,
"tooltip": false,
"on-scroll-up": "",
"on-scroll-down": "",
Expand Down Expand Up @@ -196,7 +180,7 @@
"on-click": "omarchy-voxtype-model"
},
"tray": {
"icon-size": 12,
"spacing": 17
"icon-size": 14,
"spacing": 14
}
}
Loading