clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

clipboard

sspaeti 07e6fdcd 8eba4adc

+15 -2
+2 -2
hypr/.config/hypr/bindings.conf
··· 112 112 # Monitor and Screen resolution shorcuts 113 113 # -> in ~/.config/hypr/monitors.conf 114 114 115 - #-keybind 115 + #Clipboard 116 116 bind = SHIFT SUPER, C, exec, alacritty --class clipse -e clipse 117 - # bind = SUPER, V, exec, $terminal --class clipse -e 'clipse' 117 + bindd = SUPER CTRL, F, Search Files (Finder), exec, ~/.config/hypr/sspaeti/omarchy-launch-walker-sspaeti -m files 118 118 119 119 # Example: bind = SUPER, V, exec, alacritty --class clipse -e 'clipse' 120 120
+13
hypr/.config/hypr/sspaeti/omarchy-launch-walker-sspaeti
··· 1 + #!/bin/bash 2 + 3 + # Ensure elephant is running before launching walker 4 + if ! pgrep -x elephant > /dev/null; then 5 + setsid uwsm-app -- elephant & 6 + fi 7 + 8 + # Ensure walker service is running 9 + if ! pgrep -f "walker --gapplication-service" > /dev/null; then 10 + setsid uwsm-app -- walker --gapplication-service & 11 + fi 12 + 13 + exec walker --width 644 --maxheight 300 --minheight 300 "$@"