27 lines
635 B
Plaintext
27 lines
635 B
Plaintext
|
# Default config for sway
|
||
|
#
|
||
|
# Copy this to ~/.config/sway/config and edit it to your liking.
|
||
|
#
|
||
|
# Read `man 5 sway` for a complete reference.
|
||
|
|
||
|
### Variables
|
||
|
#
|
||
|
# Logo key. Use Mod1 for Alt.
|
||
|
set $mod Mod4
|
||
|
# set $mod Mod1
|
||
|
# Home row direction keys, like vim
|
||
|
set $left h
|
||
|
set $down j
|
||
|
set $up k
|
||
|
set $right l
|
||
|
# Your preferred terminal emulator
|
||
|
set $term alacritty
|
||
|
# Your preferred application launcher
|
||
|
# Note: it's recommended that you pass the final command to sway
|
||
|
# set $menu dmenu_path | dmenu | xargs swaymsg exec
|
||
|
set $menu /usr/local/bin/wofi --show drun --gtk-dark
|
||
|
|
||
|
bindsym $mod+grave exec $term
|
||
|
|
||
|
include ~/.config/sway/config.d/*.conf
|