config 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. # sway config file
  2. #
  3. # Please see https://i3wm.org/docs/userguide.html for a complete reference!
  4. # @host jellyfish
  5. set $mod Mod4
  6. # @end
  7. # @host tompot
  8. set $mod Mod1
  9. # @end
  10. # Font for window titles. Will also be used by the bar unless a different font
  11. # is used in the bar {} block below.
  12. # @host jellyfish
  13. font pango:Inter 11
  14. # @end
  15. # @host tompot
  16. font pango:monospace 12
  17. font pango:B612 12
  18. # @end
  19. # NetworkManager is the most popular way to manage wireless networks on Linux,
  20. # and nm-applet is a desktop environment-independent system tray GUI for it.
  21. exec wl-paste --watch cliphist store
  22. exec mako
  23. # Use Mouse+$mod to drag floating windows to their wanted position
  24. floating_modifier $mod
  25. # start a terminal
  26. bindsym $mod+Return exec alacritty
  27. # kill focused window
  28. bindsym $mod+Shift+q kill
  29. # start dmenu (a program launcher)
  30. bindsym $mod+d exec bemenu-run -l 10 -p --counter always -c -W 0.2 -B 10 \
  31. --fixed-height --fn 'B612 11' \
  32. --bdr "#323232" --tf "#FFFFFF" --hf "#FFFFFF"
  33. bindsym $mod+Shift+v exec cliphist list | bemenu -l 15 -p --counter always -c -W 0.2 -B 10 \
  34. --fixed-height --fn 'B612 11' \
  35. --bdr "#323232" --tf "#FFFFFF" --hf "#FFFFFF" \
  36. | cliphist decode | wl-copy
  37. # Copy and paste
  38. bindsym $mod+v exec ~/.config/sway/scripts/contextual-paste.sh
  39. bindsym $mod+c exec ~/.config/sway/scripts/contextual-copy.sh
  40. # focus the parent container
  41. bindsym $mod+a exec wtype -M ctrl -k a -m ctrl
  42. # change focus
  43. bindsym $mod+j focus left
  44. bindsym $mod+k focus down
  45. bindsym $mod+l focus up
  46. bindsym $mod+h focus right
  47. # alternatively, you can use the cursor keys:
  48. bindsym $mod+Left focus left
  49. bindsym $mod+Down focus down
  50. bindsym $mod+Up focus up
  51. bindsym $mod+Right focus right
  52. # move focused window
  53. bindsym $mod+Shift+j move left
  54. bindsym $mod+Shift+k move down
  55. bindsym $mod+Shift+l move up
  56. bindsym $mod+Shift+semicolon move right
  57. # alternatively, you can use the cursor keys:
  58. bindsym $mod+Shift+Left move left
  59. bindsym $mod+Shift+Down move down
  60. bindsym $mod+Shift+Up move up
  61. bindsym $mod+Shift+Right move right
  62. # enter fullscreen mode for the focused container
  63. bindsym $mod+f fullscreen toggle
  64. # change container layout (stacked, tabbed, toggle split)
  65. bindsym $mod+s layout stacking
  66. bindsym $mod+w layout tabbed
  67. bindsym $mod+e layout toggle split
  68. # toggle tiling / floating
  69. bindsym $mod+Shift+space floating toggle
  70. # change focus between tiling / floating windows
  71. bindsym $mod+space focus mode_toggle
  72. # Define names for default workspaces for which we configure key bindings later on.
  73. # We use variables to avoid repeating the names in multiple places.
  74. set $ws1 "1"
  75. set $ws2 "2"
  76. set $ws3 "3"
  77. set $ws4 "4"
  78. set $ws5 "5"
  79. set $ws6 "6"
  80. set $ws7 "7"
  81. set $ws8 "8"
  82. set $ws9 "9"
  83. set $ws10 "10"
  84. # switch to workspace
  85. bindsym $mod+1 workspace number $ws1
  86. bindsym $mod+2 workspace number $ws2
  87. bindsym $mod+3 workspace number $ws3
  88. bindsym $mod+4 workspace number $ws4
  89. bindsym $mod+5 workspace number $ws5
  90. bindsym $mod+6 workspace number $ws6
  91. bindsym $mod+7 workspace number $ws7
  92. bindsym $mod+8 workspace number $ws8
  93. bindsym $mod+9 workspace number $ws9
  94. bindsym $mod+0 workspace number $ws10
  95. # move focused container to workspace
  96. bindsym $mod+Shift+1 move container to workspace number $ws1
  97. bindsym $mod+Shift+2 move container to workspace number $ws2
  98. bindsym $mod+Shift+3 move container to workspace number $ws3
  99. bindsym $mod+Shift+4 move container to workspace number $ws4
  100. bindsym $mod+Shift+5 move container to workspace number $ws5
  101. bindsym $mod+Shift+6 move container to workspace number $ws6
  102. bindsym $mod+Shift+7 move container to workspace number $ws7
  103. bindsym $mod+Shift+8 move container to workspace number $ws8
  104. bindsym $mod+Shift+9 move container to workspace number $ws9
  105. bindsym $mod+Shift+0 move container to workspace number $ws10
  106. # reload the configuration file
  107. bindsym $mod+Shift+c reload
  108. # restart sway inplace
  109. bindsym $mod+Shift+r restart
  110. # exit sway
  111. bindsym $mod+Shift+e exec "swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'sway exit'"
  112. # resize window (you can also use the mouse for that)
  113. mode "resize" {
  114. bindsym j resize shrink width 10 px or 10 ppt
  115. bindsym k resize grow height 10 px or 10 ppt
  116. bindsym l resize shrink height 10 px or 10 ppt
  117. bindsym semicolon resize grow width 10 px or 10 ppt
  118. bindsym Left resize shrink width 10 px or 10 ppt
  119. bindsym Down resize grow height 10 px or 10 ppt
  120. bindsym Up resize shrink height 10 px or 10 ppt
  121. bindsym Right resize grow width 10 px or 10 ppt
  122. bindsym Return mode "default"
  123. bindsym Escape mode "default"
  124. bindsym $mod+r mode "default"
  125. }
  126. bindsym $mod+r mode "resize"
  127. bar {
  128. position top
  129. bar swaybar_command waybar
  130. }
  131. # Media player controls
  132. bindsym XF86AudioPlay exec playerctl play-pause
  133. bindsym XF86AudioPause exec playerctl play-pause
  134. bindsym XF86AudioNext exec playerctl next
  135. bindsym XF86AudioPrev exec playerctl previous
  136. # Brightness
  137. # @host tompot
  138. bindsym XF86MonBrightnessUp exec ddcutil setvcp --sn 6L1M413 10 + 5
  139. bindsym XF86MonBrightnessDown exec ddcutil setvcp --sn 6L1M413 10 - 5
  140. # @end
  141. # @host jellyfish
  142. bindsym --locked XF86MonBrightnessUp exec light -A 5
  143. bindsym --locked XF86MonBrightnessDown exec light -U 5
  144. # @end
  145. # @host tompot
  146. bindsym $mod+b exec ~/.config/sway/scripts/brightness-slider.sh
  147. # @end
  148. # Audio
  149. bindsym XF86AudioRaiseVolume exec pactl set-sink-volume @DEFAULT_SINK@ +5%
  150. bindsym XF86AudioLowerVolume exec pactl set-sink-volume @DEFAULT_SINK@ -5%
  151. bindsym XF86AudioMute exec pactl set-sink-mute @DEFAULT_SINK@ toggle
  152. bindsym Print exec 'slurp | GRIM_DEFAULT_DIR=~/Downloads/ grim -g -'
  153. # colors
  154. set $black #272822
  155. set $white #FFFFFF
  156. set $pink #F92672
  157. set $blue #444444
  158. set $green #A6E22E
  159. set $orange #FD971F
  160. set $yellow #E6DB74
  161. set $purple #AE81FF
  162. # class border bg. text indicator child_border
  163. client.focused $black $black $green $blue $blue
  164. client.focused_inactive $black $black $blue $black $black
  165. client.unfocused $black $black $white $black $black
  166. client.background #ff0000
  167. input * {
  168. xkb_options "ctrl:nocaps,grp:toggle"
  169. xkb_layout us,us
  170. xkb_variant ,intl
  171. scroll_factor 1
  172. }
  173. # @host jellyfish
  174. input "9610:8214:SINO_WEALTH_USB_KEYBOARD" {
  175. xkb_options "ctrl:nocaps"
  176. xkb_layout br
  177. xkb_variant abnt2
  178. }
  179. # @end
  180. # @host jellyfish
  181. exec swayidle -w \
  182. timeout 300 'gtklock -d -c /home/capella/.config/gtklock/config.ini' \
  183. timeout 600 'swaymsg "output * power off" && ddcutil setvcp --sn 6L1M413 D6 0x05' \
  184. timeout 900 'systemctl suspend' \
  185. resume 'swaymsg "output * power on" && ddcutil setvcp --sn 6L1M413 D6 0x01' \
  186. before-sleep 'gtklock -d -c /home/capella/.config/gtklock/config.ini'
  187. bindsym $mod+q exec 'gtklock -d -c /home/capella/.config/gtklock/config.ini'
  188. bindswitch --reload --locked lid:on exec 'gtklock -d -c /home/capella/.config/gtklock/config.ini && systemctl suspend'
  189. # @end
  190. # @host tompot
  191. exec swayidle -w \
  192. timeout 300 'swaylock -f -c 000000 -i /tmp/mercator_projection.png' \
  193. timeout 600 'swaymsg "output * power off" && ddcutil setvcp --sn 6L1M413 D6 0x05' \
  194. resume 'swaymsg "output * power on" && ddcutil setvcp --sn 6L1M413 D6 0x01' \
  195. before-sleep 'swaylock -f -c 000000 -i /tmp/mercator_projection.png'
  196. bindsym $mod+q exec 'swaylock -f -c 000000 -i /tmp/mercator_projection.png'
  197. # @end
  198. smart_borders on
  199. hide_edge_borders both
  200. for_window [class="^.*"] border pixel 2
  201. include @sysconfdir@/sway/config.d/*
  202. # @host jellyfish
  203. output HDMI-A-1 pos 0 0
  204. output HDMI-A-2 {
  205. transform 270
  206. pos 930 2160
  207. scale 1
  208. }
  209. output "BOE 0x0832 Unknown" {
  210. scale 1
  211. }
  212. # @end
  213. # @host tompot
  214. output HDMI-A-1 pos 0 0
  215. output HDMI-A-2 {
  216. transform 270
  217. pos 930 2160
  218. scale 1
  219. }
  220. # @end