28 lines
487 B
Plaintext
28 lines
487 B
Plaintext
# vim: ft=swayconfig
|
|
|
|
# Set super key as mod key
|
|
set $mod Mod4
|
|
|
|
# Arrow keys as direction keys
|
|
set $left Left
|
|
set $down Down
|
|
set $up Up
|
|
set $right Right
|
|
|
|
# Terminal emulator
|
|
set $term alacritty
|
|
|
|
# Application launcher
|
|
set $menu exec $term -o window.opacity=0.85 \
|
|
--class launcher \
|
|
-t "Application Launcher" \
|
|
-e /usr/bin/sway-launcher-desktop
|
|
|
|
# Waybar as status bar
|
|
bar {
|
|
swaybar_command waybar
|
|
}
|
|
|
|
# Read the rest of the config files
|
|
include ~/.config/sway/config.d/*
|