Guest User

Untitled

a guest
Jun 23rd, 2019
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 KB | None | 0 0
  1. # ===System===
  2.  
  3. font pango:Roboto Mono Regular 11
  4.  
  5. floating_modifier mod1
  6.  
  7. set $mod mod4
  8.  
  9. set $ws1 "1"
  10. set $ws2 "2"
  11. set $ws3 "3"
  12. set $ws4 "4"
  13. set $ws5 "5"
  14. set $ws6 "6"
  15. set $ws7 "7"
  16. set $ws8 "8"
  17. set $ws9 "9"
  18. set $ws10 "10"
  19.  
  20. for_window [class="zenity"] floating enable
  21. for_window [class="^.*" ] border pixel 2
  22. for_window [class="Dunst"] floating enable
  23. for_window [class="Steam"] floating enable
  24.  
  25. gaps inner 20
  26. smart_gaps on
  27. smart_borders on
  28.  
  29. # ===Autostart===
  30.  
  31. exec --no-startup-id /usr/lib/mate-polkit/polkit-mate-authentication-agent-1
  32. exec --no-startup-id xset -b
  33. exec --no-startup-id i3-msg workspace 1
  34. assign [class="Alacritty"] 1
  35. exec --no-startup-id alacritty
  36. assign[class="code-oss"] 2
  37. exec --no-startup-id code
  38. assign [class="Firefox"] 3
  39. exec --no-startup-id firefox
  40. exec --no-startup-id setxkbmap -layout "us,ru" -option "grp:alt_shift_toggle"
  41. exec --no-startup-id dunst
  42. exec --no-startup-id compton --config ~/Scripts/cfg -f
  43. exec_always --no-startup-id ~/Scripts/polybar
  44. exec --no-startup-id feh --bg-scale /home/uzzer/Pictures/wall.jpg
  45.  
  46. # ===Binds===
  47.  
  48. bindsym mod1+r restart
  49. bindsym mod1+control+s exec --no-startup-id flameshot full -p ~/Screenshots
  50. bindsym mod1+t exec --no-startup-id alacritty
  51. bindsym F4 exec --no-startup-id betterlockscreen -l dimblur
  52. bindsym F5 exec --no-startup-id betterlockscreen -s dimblur
  53. bindsym mod1+x kill
  54. bindsym mod1+f exec --no-startup-id firefox -no-remote
  55. bindsym mod1+Tab floating toggle
  56. bindsym mod1+s exec --no-startup-id thunar
  57. bindsym mod1+m split h
  58. bindsym mod1+v split v
  59. bindsym mod1+d exec --no-startup-id rofi -font "roboto 11" -show drun -lines 7 -width 30
  60. bindsym mod1+b exec --no-startup-id ddcutil setvcp 10 100
  61. bindsym mod1+g exec --no-startup-id ddcutil setvcp 10 0
  62. bindsym mod1+e exec --no-startup-id alacritty -e htop
  63. bindsym mod1+q exec --no-startup-id redshift -l 55.52:89.20
  64. bindsym mod1+a exec --no-startup-id killall -q redshift
  65. bindsym mod1+c exec --no-startup-id code
  66. bindsym F3 exec amixer -q set Master 1%+ unmute
  67. bindsym F2 exec amixer -q set Master 1%- unmute
  68. bindsym F1 exec amixer set Master unmute && amixer set Headphone toggle
  69. bindsym mod1+1 workspace $ws1
  70. bindsym mod1+2 workspace $ws2
  71. bindsym mod1+3 workspace $ws3
  72. bindsym mod1+4 workspace $ws4
  73. bindsym mod1+5 workspace $ws5
  74. bindsym mod1+6 workspace $ws6
  75. bindsym mod1+7 workspace $ws7
  76. bindsym mod1+8 workspace $ws8
  77. bindsym mod1+9 workspace $ws9
  78. bindsym mod1+0 workspace $ws10
  79. bindsym mod1+$mod+h resize shrink width 10 px or 10 ppt
  80. bindsym mod1+$mod+j resize grow height 10 px or 10 ppt
  81. bindsym mod1+$mod+k resize shrink height 10 px or 10 ppt
  82. bindsym mod1+$mod+l resize grow width 10 px or 10 ppt
  83. bindsym mod1+control+h focus left
  84. bindsym mod1+control+j focus down
  85. bindsym mod1+control+k focus up
  86. bindsym mod1+control+l focus right
  87. bindsym $mod+h move left
  88. bindsym $mod+j move down
  89. bindsym $mod+k move up
  90. bindsym $mod+l move right
  91. bindsym $mod+1 move container to workspace 1
  92. bindsym $mod+2 move container to workspace 2
  93. bindsym $mod+3 move container to workspace 3
  94. bindsym $mod+4 move container to workspace 4
  95. bindsym $mod+5 move container to workspace 5
  96. bindsym $mod+6 move container to workspace 6
  97. bindsym $mod+7 move container to workspace 7
  98. bindsym $mod+8 move container to workspace 8
  99. bindsym $mod+9 move container to workspace 9
  100. bindsym $mod+0 move container to workspace 10
  101.  
  102. # ===Colors===
  103.  
  104. set $background #424263
  105. set $foreground #ffffff
  106. set $unfocused #424263
  107. set $focused #95dafc
  108. set $urgent #e992ff
  109.  
  110. # ===Class=== Border Background Text Indicator Child indicator
  111.  
  112. client.focused $focused $focused $focused $focused $focused
  113. client.focused_inactive $unfocused $unfocused $foreground $unfocused $unfocused
  114. client.unfocused $unfocused $unfocused $foreground $unfocused $unfocused
  115. client.urgent $urgent $urgent $foreground $urgent $urgent
Advertisement
Add Comment
Please, Sign In to add comment