clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

update omarchy to 3.4.1

sspaeti 6df13201 1818ee95

+42 -6
+3
ghostty/.config/ghostty/config
··· 42 42 43 43 # Slowdown mouse scrolling 44 44 mouse-scroll-multiplier = 0.95 45 + 46 + # Fix general slowness on hyprland (https://github.com/ghostty-org/ghostty/discussions/3224) 47 + async-backend = epoll
+7 -2
hypr/.config/hypr/hypridle.conf
··· 1 1 general { 2 2 lock_cmd = omarchy-lock-screen # lock screen and 1password 3 3 before_sleep_cmd = loginctl lock-session # lock before suspend. 4 - after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display. 5 - on_unlock_cmd = omarchy-restart-waybar # prevent stacking of waybar when waking 4 + after_sleep_cmd = sleep 1 && hyprctl dispatch dpms on # delay for PAM readiness, then turn on display. 6 5 inhibit_sleep = 3 # wait until screen is locked 7 6 } 8 7 ··· 14 13 listener { 15 14 timeout = 600 # 10min 16 15 on-timeout = loginctl lock-session # lock screen when timeout has passed 16 + } 17 + 18 + listener { 19 + timeout = 330 # 5.5min 20 + on-timeout = brightnessctl -sd '*::kbd_backlight' set 0 # save state and turn off keyboard backlight 21 + on-resume = brightnessctl -rd '*::kbd_backlight' # restore keyboard backlight 17 22 } 18 23 19 24 listener {
+1 -1
hypr/.config/hypr/hyprlock.conf
··· 39 39 } 40 40 41 41 auth { 42 - fingerprint:enabled = true 42 + fingerprint:enabled = false 43 43 }
+2
linux_applications/.local/share/applications/limine-snapper-restore.desktop
··· 1 + [Desktop Entry] 2 + Hidden=true
+2
linux_applications/.local/share/applications/wiremix.desktop
··· 1 + [Desktop Entry] 2 + Hidden=true
+1
walker/.config/elephant/menus/omarchy_background_selector.lua
··· 1 + /home/sspaeti/.local/share/omarchy/default/elephant/omarchy_background_selector.lua
+1
walker/.config/elephant/symbols.toml
··· 1 + command = 'wl-copy && hyprctl dispatch sendshortcut "SHIFT, Insert,"'
+14 -1
waybar/.config/waybar/config.jsonc
··· 5 5 "spacing": 0, 6 6 "height": 26, 7 7 "modules-left": ["custom/omarchy", "hyprland/workspaces"], 8 - "modules-center": ["clock", "custom/update", "custom/voxtype", "custom/screenrecording-indicator"], 8 + "modules-center": ["clock", "custom/update", "custom/voxtype", "custom/screenrecording-indicator", "custom/idle-indicator", "custom/notification-silencing-indicator"], 9 9 "modules-right": [ 10 10 "group/tray-expander", 11 11 "bluetooth", ··· 122 122 "format-muted": "", 123 123 "format-icons": { 124 124 "headphone": "", 125 + "headset": "", 125 126 "default": ["", "", ""] 126 127 } 127 128 }, ··· 155 156 "tooltip": true, 156 157 "on-click-right": "omarchy-voxtype-config", 157 158 "on-click": "omarchy-voxtype-model" 159 + }, 160 + "custom/idle-indicator": { 161 + "on-click": "omarchy-toggle-idle", 162 + "exec": "$OMARCHY_PATH/default/waybar/indicators/idle.sh", 163 + "signal": 9, 164 + "return-type": "json" 165 + }, 166 + "custom/notification-silencing-indicator": { 167 + "on-click": "omarchy-toggle-notification-silencing", 168 + "exec": "$OMARCHY_PATH/default/waybar/indicators/notification-silencing.sh", 169 + "signal": 10, 170 + "return-type": "json" 158 171 }, 159 172 "tray": { 160 173 "icon-size": 12,
+11 -2
waybar/.config/waybar/style.css
··· 34 34 #battery, 35 35 #pulseaudio, 36 36 #custom-omarchy, 37 - #custom-screenrecording-indicator, 37 + 38 38 #custom-update { 39 39 min-width: 12px; 40 40 margin: 0 7.5px; ··· 72 72 opacity: 0; 73 73 } 74 74 75 - #custom-screenrecording-indicator { 75 + 76 + #custom-screenrecording-indicator, 77 + #custom-idle-indicator, 78 + #custom-notification-silencing-indicator { 76 79 min-width: 12px; 77 80 margin-left: 5px; 81 + margin-right: 0; 78 82 font-size: 10px; 79 83 padding-bottom: 1px; 80 84 } ··· 91 95 #custom-voxtype.recording { 92 96 color: #a55555; 93 97 } 98 + 99 + #custom-idle-indicator.active, 100 + #custom-notification-silencing-indicator.active { 101 + color: #a55555; 102 + }