clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

omarchy update to 3.2.2

sspaeti f8cd1163 01a13873

+32 -125
+3
ghostty/.config/ghostty/config
··· 39 39 40 40 41 41 confirm-close-surface=false 42 + 43 + # Slowdown mouse scrolling 44 + mouse-scroll-multiplier = 0.95
+6 -6
hypr/.config/hypr/bindings.conf
··· 8 8 $webapptoggle = ~/.config/hypr/sspaeti/webapp-toggle.sh 9 9 10 10 #use zsh shell by default -> check if omarchy is not touched by this change 11 - bind = SUPER, return, exec, $terminal -e zsh 12 - bind = SUPER SHIFT, return, exec, $terminal -e nvim 13 - bind = SUPER SHIFT, N, exec, $terminal -e nvim 11 + bind = SUPER, return, exec, omarchy-launch-tui zsh 12 + bind = SUPER SHIFT, return, exec, omarchy-launch-tui nvim 13 + bind = SUPER SHIFT, N, exec, omarchy-launch-tui nvim 14 14 15 15 unbind = SUPER, O 16 16 bind = SUPER, O, exec, uwsm app -- nautilus --new-window ~/Simon/Sync/ 17 - bind = SUPER SHIFT, O, exec, uwsm app -- $terminal -e zsh -c "yazi ~/Simon/Sync" 17 + bind = SUPER SHIFT, O, exec, uwsm app -- omarchy-launch-tui zsh -c "yazi ~/Simon/Sync" 18 18 bind = SUPER, B, exec, $toggle brave-browser "$browser" 19 19 bind = SUPER, Z, exec, $toggle zen "zen-browser" 20 20 bind = SUPER, slash, exec, uwsm app -- 1password ··· 30 30 #wifi shortcut 31 31 bind = SUPER ALT, W, exec, rfkill unblock wifi && kitty --class=Impala -e impala 32 32 33 - bind = SUPER, A, exec, $terminal -e btop 34 - bind = SUPER, D, exec, $terminal -e lazydocker 33 + bind = SUPER, A, exec, omarchy-launch-tui btop 34 + bind = SUPER, D, exec, omarchy-launch-tui lazydocker 35 35 36 36 #keyboard switch 37 37 bindd = SUPER ALT, BACKSPACE, Toggle Keyboard, exec, ~/.config/hypr/sspaeti/switch-keyboard ; notify-send "Keyboard Setup" "Toggle keyboard"
+2 -2
hypr/.config/hypr/hyprlock.conf
··· 22 22 outer_color = $outer_color 23 23 outline_thickness = 4 24 24 25 - font_family = CaskaydiaMono Nerd Font Propo 25 + font_family = CaskaydiaMono Nerd Font 26 26 font_color = $font_color 27 27 28 - placeholder_text = Enter Password 󰈷 28 + placeholder_text = Enter Password 29 29 check_color = $check_color 30 30 fail_text = <i>$FAIL ($ATTEMPTS)</i> 31 31
+1 -3
hypr/.config/hypr/xdph.conf
··· 1 1 screencopy { 2 - 3 - allow_token_by_default = true 4 - 2 + allow_token_by_default = true 5 3 }
+1 -1
uwsm/.config/uwsm/default
··· 1 1 # Changes require a relaunch of Hyprland to take effect. 2 2 3 - export TERMINAL=kitty 3 + export TERMINAL=xdg-terminal-exec 4 4 export EDITOR=nvim
+1
walker/.config/elephant/calc.toml
··· 1 + async = false
+3
walker/.config/elephant/desktopapplications.toml
··· 1 + show_actions = false 2 + only_search_title = true 3 + history = false
+1
walker/.config/elephant/menus/omarchy_themes.lua
··· 1 + /home/sspaeti/.local/share/omarchy/default/elephant/omarchy_themes.lua
+6 -107
walker/.config/walker/config.toml
··· 1 1 force_keyboard_focus = true # forces keyboard forcus to stay in Walker 2 - close_when_open = true # close walker when invoking while already opened 3 2 selection_wrap = true # wrap list if at bottom or top 4 - click_to_close = true # closes walker if clicking outside of the main content area 5 - global_argument_delimiter = "#" # query: firefox#https://benz.dev => part after delimiter will be ignored when querying. this should be the same as in the elephant config 6 - exact_search_prefix = "'" # disable fuzzy searching 7 3 theme = "omarchy-default" # theme to use 8 - disable_mouse = false # disable mouse (on input and list only) 9 4 additional_theme_location = "~/.local/share/omarchy/default/walker/themes/" 10 - 11 - [shell] 12 - anchor_top = true 13 - anchor_bottom = true 14 - anchor_left = true 15 - anchor_right = true 5 + hide_action_hints = true # globally hide the action hints 16 6 17 7 [placeholders] 18 8 "default" = { input = " Search...", list = "No Results" } # placeholders for input and empty list, key is the providers name, so f.e. "desktopapplications" or "menus:other" 19 9 20 10 [keybinds] 21 - close = ["Escape"] 22 - next = ["Down"] 23 - previous = ["Up"] 24 - toggle_exact = ["ctrl e"] 25 - resume_last_query = ["ctrl r"] 26 11 quick_activate = [] 27 12 13 + [columns] 14 + symbols = 1 # providers to be queried by default 15 + 28 16 [providers] 17 + max_results = 256 # 256 should be enough for everyone 29 18 default = [ 30 19 "desktopapplications", 31 - "menus", 32 20 "websearch", 33 - ] # providers to be queried by default 34 - empty = ["desktopapplications"] # providers to be queried when query is empty 35 - max_results = 50 # global max results 36 - 37 - [providers.sets] # define your own defaults/empty sets of providers 38 - [providers.max_results_provider] # define max results per provider in here 21 + ] 39 22 40 23 [[providers.prefixes]] 41 24 prefix = "/" ··· 60 43 [[providers.prefixes]] 61 44 prefix = "$" 62 45 provider = "clipboard" 63 - max_results = 300 #how many are stored see in elephant `max_items` 64 - 65 - [providers.actions] # This will be MERGED/OVEWRITTEN with what the user specifies 66 - dmenu = [{ action = "select", default = true, bind = "Return" }] 67 - 68 - providerlist = [ 69 - { action = "activate", default = true, bind = "Return", after = "ClearReload" }, 70 - ] 71 - 72 - bluetooth = [ 73 - { action = "find", global = true, bind = "ctrl f", after = "AsyncClearReload" }, 74 - { action = "trust", bind = "ctrl t", after = "AsyncReload" }, 75 - { action = "untrust", bind = "ctrl t", after = "AsyncReload" }, 76 - { action = "pair", bind = "Return", after = "AsyncReload" }, 77 - { action = "remove", bind = "ctrl d", after = "AsyncReload" }, 78 - { action = "connect", bind = "Return", after = "AsyncReload" }, 79 - { action = "disconnect", bind = "Return", after = "AsyncReload" }, 80 - ] 81 - 82 - archlinuxpkgs = [ 83 - { action = "install", bind = "Return", default = true }, 84 - { action = "remove", bind = "Return" }, 85 - ] 86 - 87 - calc = [ 88 - { action = "copy", default = true, bind = "Return" }, 89 - { action = "delete", bind = "ctrl d", after = "AsyncReload" }, 90 - { action = "save", bind = "ctrl s", after = "AsyncClearReload" }, 91 - ] 92 - 93 - websearch = [ 94 - { action = "search", default = true, bind = "Return" }, 95 - { action = "erase_history", label = "clear hist", bind = "ctrl h", after = "Reload" }, 96 - ] 97 - 98 - desktopapplications = [ 99 - { action = "start", default = true, bind = "Return" }, 100 - { action = "start:keep", label = "open+next", bind = "shift Return", after = "KeepOpen" }, 101 - { action = "erase_history", label = "clear hist", bind = "ctrl h", after = "AsyncReload" }, 102 - { action = "pin", bind = "ctrl p", after = "AsyncReload" }, 103 - { action = "unpin", bind = "ctrl p", after = "AsyncReload" }, 104 - { action = "pinup", bind = "ctrl n", after = "AsyncReload" }, 105 - { action = "pindown", bind = "ctrl m", after = "AsyncReload" }, 106 - ] 107 - 108 - files = [ 109 - { action = "open", default = true, bind = "Return" }, 110 - { action = "opendir", label = "open dir", bind = "ctrl Return" }, 111 - { action = "copypath", label = "copy path", bind = "ctrl shift c" }, 112 - { action = "copyfile", label = "copy file", bind = "ctrl c" }, 113 - ] 114 - 115 - todo = [ 116 - { action = "save", default = true, bind = "Return", after = "ClearReload" }, 117 - { action = "delete", bind = "ctrl d", after = "ClearReload" }, 118 - { action = "active", bind = "Return", after = "ClearReload" }, 119 - { action = "inactive", bind = "Return", after = "ClearReload" }, 120 - { action = "done", bind = "ctrl f", after = "ClearReload" }, 121 - { action = "clear", bind = "ctrl x", after = "ClearReload", global = true }, 122 - ] 123 - 124 - runner = [ 125 - { action = "run", default = true, bind = "Return" }, 126 - { action = "runterminal", label = "run in terminal", bind = "shift Return" }, 127 - { action = "erase_history", label = "clear hist", bind = "ctrl h", after = "Reload" }, 128 - ] 129 - 130 - symbols = [ 131 - { action = "run_cmd", label = "select", default = true, bind = "Return" }, 132 - { action = "erase_history", label = "clear hist", bind = "ctrl h", after = "Reload" }, 133 - ] 134 - 135 - unicode = [ 136 - { action = "run_cmd", label = "select", default = true, bind = "Return" }, 137 - { action = "erase_history", label = "clear hist", bind = "ctrl h", after = "Reload" }, 138 - ] 139 - 140 - clipboard = [ 141 - { action = "copy", default = true, bind = "Return" }, 142 - { action = "remove", bind = "ctrl d", after = "ClearReload" }, 143 - { action = "remove_all", global = true, label = "clear", bind = "ctrl shift d", after = "ClearReload" }, 144 - { action = "toggle_images", global = true, label = "toggle images", bind = "ctrl i", after = "ClearReload" }, 145 - { action = "edit", bind = "ctrl o" }, 146 - ]
+7 -4
waybar/.config/waybar/config.jsonc
··· 30 30 "7": "7", 31 31 "8": "8", 32 32 "9": "9", 33 + "10": "0", 33 34 "active": "󱓻" 34 35 }, 35 36 "persistent-workspaces": { ··· 63 64 "cpu": { 64 65 "interval": 5, 65 66 "format": "󰍛", 66 - "on-click": "xdg-terminal-exec btop" 67 + "on-click": "omarchy-launch-or-focus-tui btop" 67 68 }, 68 69 "clock": { 69 70 "format": "{:L%A %H:%M}", ··· 106 107 "bluetooth": { 107 108 "format": "", 108 109 "format-disabled": "󰂲", 109 - "format-connected": "", 110 + "format-off": "󰂲", 111 + "format-connected": "󰂱", 112 + "format-no-controller": "", 110 113 "tooltip-format": "Devices connected: {num_connections}", 111 - "on-click": "blueberry" 114 + "on-click": "omarchy-launch-bluetooth" 112 115 }, 113 116 "pulseaudio": { 114 117 "format": "{icon}", 115 - "on-click": "xdg-terminal-exec --app-id=com.omarchy.Wiremix -e wiremix", 118 + "on-click": "omarchy-launch-or-focus-tui wiremix", 116 119 "on-click-right": "pamixer -t", 117 120 "tooltip-format": "Playing at {volume}%", 118 121 "scroll-step": 5,
+1 -1
waybar/.config/waybar/style.css
··· 53 53 } 54 54 55 55 #custom-expand-icon { 56 - margin-right: 20px; 56 + margin-right: 18px; 57 57 } 58 58 59 59 tooltip {
-1
zsh/.dotfiles/zsh/omarchy.shrc
··· 1 1 2 2 source ~/.local/share/omarchy/default/bash/functions 3 - source ~/.local/share/omarchy/default/bash/prompt 4 3 # source ~/.local/share/omarchy/default/bash/init