Advertisement
Guest User

Untitled

a guest
Dec 9th, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. #! /bin/sh
  2.  
  3. # Autostart
  4. sxhkd &
  5. feh --bg-scale /home/hydra/.dotfiles/wallpapers/wallpaper7.jpg
  6. kitty &
  7. setxkbmap -layout es
  8. picom &
  9. pgrep -x sxhkd > /dev/null || sxhkd &
  10. polybar &
  11.  
  12.  
  13. # Workspaces
  14. bspc monitor -d I II III IV V VI
  15.  
  16. # Padding config
  17. bspc config top_padding -5
  18. bspc config bottom_padding 0
  19. bspc config left_padding 0
  20. bspc config right_padding 0
  21.  
  22.  
  23. # Border config
  24. bspc config borderless_monocle true
  25. bspc config gapless_monocle true
  26.  
  27. bspc config border_width 1
  28. bspc config focused_border_color "#8fbcbb"
  29. bscp config normal_border_color "#00FFFFFF"
  30.  
  31.  
  32. # Split config
  33. bspc config window_gap 15
  34. bspc config split_ratio 0.55
  35.  
  36.  
  37. # Rules
  38. bspc rule -a Gimp desktop='^8' state=floatie=floating
  39. bspc rule -a Kupfer.py focus=on
  40. bspc rule -a Screenkey manage=off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement