24 lines
462 B
Org Mode
24 lines
462 B
Org Mode
#+TITLE: Sway Config
|
|
|
|
* Sway
|
|
:PROPERTIES:
|
|
:header-args: :tangle ~/.config/sway/config :mkdirp true
|
|
:END:
|
|
** Variables
|
|
#+begin_src conf
|
|
set $mod Mod4
|
|
set $term gnome-terminal
|
|
#+end_src
|
|
** Window Borders
|
|
#+begin_src conf
|
|
default_border pixel 0
|
|
default_floating_border normal
|
|
#+end_src
|
|
** Input Configurations
|
|
Swap `ctrl` for `caps lock`
|
|
#+begin_src conf
|
|
input * {
|
|
xkb_options ctrl:swapcaps
|
|
}
|
|
#+end_src
|