From 758787f3440065dba2a5e36dfed4527fc6947e49 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Sat, 1 Jun 2019 22:14:02 -0400 Subject: [PATCH] Breaking out Configuration for output --- sway/config | 12 ------------ sway/config.d/output | 11 +++++++++++ 2 files changed, 11 insertions(+), 12 deletions(-) create mode 100644 sway/config.d/output diff --git a/sway/config b/sway/config index 0a9d5aa..99deecf 100644 --- a/sway/config +++ b/sway/config @@ -23,18 +23,6 @@ bindsym $mod+backslash exec gopass ls --flat \ | xargs --no-run-if-empty gopass show -c -################################################################################ -# Output configuration - -# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) -output * bg `/home/james/dotfiles/wall/cycle` fill -output eDP-1 scale 1 -# -# Example configuration: -# -# output HDMI-A-1 resolution 1920x1080 position 1920,0 -# -# You can get the names of your outputs by running: swaymsg -t get_outputs ### Idle configuration exec swayidle -w \ diff --git a/sway/config.d/output b/sway/config.d/output new file mode 100644 index 0000000..8b795cb --- /dev/null +++ b/sway/config.d/output @@ -0,0 +1,11 @@ +################################################################################ +# Output configuration +# +# Example configuration: +# +# output HDMI-A-1 resolution 1920x1080 position 1920,0 +# +# You can get the names of your outputs by running: swaymsg -t get_outputs + +output * bg `/home/james/dotfiles/wall/cycle` fill +output eDP-1 scale 1