34 lines
751 B
Cheetah
34 lines
751 B
Cheetah
# Read `man 5 sway` for a complete reference.
|
|
|
|
### Variables
|
|
#
|
|
# Logo key. Use Mod1 for Alt.
|
|
set $mod Mod4
|
|
# Home row direction keys, like vim
|
|
set $left h
|
|
set $down j
|
|
set $up k
|
|
set $right l
|
|
# Your preferred terminal emulator
|
|
set $term footclient
|
|
# Your preferred application launcher
|
|
# Note: pass the final command to swaymsg so that the resulting window can be opened
|
|
# on the original workspace that the command was run on.
|
|
set $menu fuzzel | xargs swaymsg exec --
|
|
set $bg /usr/share/backgrounds/archlinux/wild.png
|
|
|
|
include /etc/sway/config-vars.d/*
|
|
include ~/.config/sway/config.d/*
|
|
include /etc/sway/config.d/*
|
|
# host specific section
|
|
|
|
bar {
|
|
swaybar_command waybar
|
|
}
|
|
|
|
{{- if eq .chezmoi.hostname "baryte" }}
|
|
|
|
exec zoom&
|
|
exec kanshi&
|
|
|
|
{{- end }}
|