Advertisement
zerinol

Untitled

Dec 9th, 2019
1,757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.56 KB | None | 0 0
  1. #! /bin/sh
  2.  
  3. sxhkd &
  4. xrdb -merge .Xdefaults &
  5. xset r rate 300 50 &
  6. xset +fp /home/zerinol/.local/share/fonts
  7. xset +fp /home/zerinol/.fonts
  8. xset fp rehash
  9. xset -b &
  10. #setxkbmap -model abnt2 -layout br -option caps:escape -variant nodeadkeys &
  11.  
  12. # run the xrandr command if an external monitor is connected to the
  13. # laptop.  This must be executed before the polybar command, so that
  14. # polybar can set the two separate bars properly.
  15. if [ -x $HOME/.local/bin/dual_monitor ];then
  16.     echo "Script executavel"
  17.     dual_monitor
  18. else
  19.     echo "Script nao executavel"
  20. fi
  21.  
  22. #xrandr --output eDP1 --primary --mode 1366x768 --rotate normal --output HDMI1 --mode 1600x900 --rotate normal --above eDP1
  23.  
  24. bspc monitor HDMI1 -n monitor
  25. bspc monitor eDP1 -n laptop
  26.  
  27. bspc monitor laptop -d 1 2 3 4 5
  28. bspc monitor monitor -d 6 7 8 9 0
  29.  
  30. bspc monitor monitor -s laptop
  31.  
  32. bspc config border_width        2
  33. bspc config window_gap          3
  34.  
  35. bspc config normal_border_color "#383C36"
  36. bspc config focused_border_color "#FABD2F"
  37.  
  38. bspc config split_ratio          0.52
  39. bspc config borderless_monocle   true
  40. bspc config gapless_monocle      true
  41.  
  42. bspc rule -a Gimp desktop='^8' state=floating follow=on
  43. bspc rule -a Chromium desktop='^2'
  44. bspc rule -a mplayer2 state=floating
  45. bspc rule -a Kupfer.py focus=on
  46. bspc rule -a Screenkey manage=off
  47. bspc rule -a albert border=off
  48. bspc rule -a Gnome-calculator state=floating
  49. bspc rule -a qBittorrent desktop='^5'
  50.  
  51. sh /home/zerinol/.fehbg &
  52. albert &
  53. $HOME/.config/polybar/launch.sh &
  54. picom &
  55. qbittorrent --no-splash &
  56. dunst &
  57. mpd &
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement