From 84d87c3096536a755dafc7179ae82b81c33c4e80 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Sun, 17 Mar 2024 20:08:13 +0000 Subject: Add wip Sway config --- .config/sway/config | 327 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 327 insertions(+) create mode 100644 .config/sway/config diff --git a/.config/sway/config b/.config/sway/config new file mode 100644 index 0000000..43d24b0 --- /dev/null +++ b/.config/sway/config @@ -0,0 +1,327 @@ +### 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 foot +# 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 dmenu_path | fuzzel | xargs swaymsg exec -- + +# Wallpaper is set by imv Shift+W +# exec ~/.config/hypr/scripts/wallpaper.sh +set $wallpaper $(cat ~/.cache/wallpaper) + +# Start Polkit +exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 + +# Check clamshell mode on reload +# exec_always ~/.local/bin/clamshell-mode.sh + +# exec_always bash -c "pkill kanshi; exec kanshi" + +# Start Dunst +exec_always dunst + +# Start wlsunset +exec wlsunset -l 57.4 -L -1.9 + +# At startup focus on workspace 1 +exec swaymsg "workspace 1;" + +# bindsym $mod+g exec env RUST_BACKTRACE=1 \ +# swayr switch-window >> /tmp/swayr.log 2>&1 + +# Start swayr daemon +# exec env RUST_BACKTRACE=1 swayrd > /tmp/swayrd.log 2>&1 + +# Hide mouse cursor after a period of inactivity. +seat * hide_cursor 4000 + +# Gaps Settings +default_border pixel 2 + +gaps top 4 +gaps inner 10 + +#client. + +client.focused "#2c2c2c" "#dddfe2" "#000000" "#000000" "#2c2c2c" + +client.focused_inactive "#23242a" "#000000" "#666666" "#000000" "#999999" + +client.unfocused "#666666" "#fff5e5" "#666666" "#000000" "#999999" + +### Output configuration +# +# Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) +output * bg $wallpaper fill +# +# 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 HDMI-A-1 pos 0 0 res 1920x1080 +output eDP-1 pos 1920 0 res 1920x1080 + +bindswitch --reload --locked lid:on output eDP-1 disable +bindswitch --reload --locked lid:off output eDP-1 enable + +### Idle configuration +# +exec swayidle -w \ + timeout 300 'swaylock -f -i $wallpaper --effect-blur 10x5 --clock --datestr "%a %d %b %Y" --indicator' \ + timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \ + before-sleep 'swaylock -f -i $wallpaper --effect-blur 10x5 --clock ---datestr "%a %d %b %Y" -indicator' + +# This will lock your screen after 300 seconds of inactivity, then turn off +# your displays after another 300 seconds, and turn your screens back on when +# resumed. It will also lock your screen before your computer goes to sleep. + +### Input configuration +# +# Example configuration: +# +# input "2:14:SynPS/2_Synaptics_TouchPad" { +# dwt enabled +# tap enabled +# natural_scroll enabled +# middle_emulation enabled +# } +# +# You can get the names of your inputs by running: swaymsg -t get_inputs +# Read `man 5 sway-input` for more information about this section. + +input "type:keyboard" { + xkb_layout us,gb + xkb_options grp:shift_caps_toggle +} + +### Key bindings +# +# Basics: +# + # Start a terminal + bindsym $mod+Return exec $term + + # Kill focused window + bindsym $mod+Shift+q kill + + # Start your launcher + bindsym $mod+d exec $menu + + # Drag floating windows by holding down $mod and left mouse button. + # Resize them with right mouse button + $mod. + # Despite the name, also works for non-floating windows. + # Change normal to inverse to use left mouse button for resizing and right + # mouse button for dragging. + floating_modifier $mod normal + + # Reload the configuration file + bindsym $mod+Shift+c reload + + # Exit sway (logs you out of your Wayland session) + bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit' + + bindsym XF86MonBrightnessUp exec ~/.local/bin/statusbar/brightnesscontrol up + bindsym XF86MonBrightnessDown exec ~/.local/bin/statusbar/brightnesscontrol down + + bindsym XF86AudioRaiseVolume exec ~/.local/bin/statusbar/volumecontrol up + bindsym XF86AudioLowerVolume exec ~/.local/bin/statusbar/volumecontrol down + bindsym XF86AudioMute exec ~/.local/bin/statusbar/volumecontrol mute + + # Take a screenshot of the focused output and save it into screenshots + bindsym Print exec grim -o $(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') -t jpeg ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg + + # Take a screenshot of the selected region + bindsym $mod+Print exec grim -t jpeg -g "$(slurp)" ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg + + # Take a screenshot and save it to the clipboard + bindsym $mod+Shift+Print exec grim -g "$(slurp -d)" - | wl-copy + + # Open power menu + bindsym Shift+$mod+p exec ~/.local/bin/powermenu + +# +# Moving around: +# + # Move your focus around + bindsym $mod+$left focus left + bindsym $mod+$down focus down + bindsym $mod+$up focus up + bindsym $mod+$right focus right + # Or use $mod+[up|down|left|right] + bindsym $mod+Left focus left + bindsym $mod+Down focus down + bindsym $mod+Up focus up + bindsym $mod+Right focus right + + # Move the focused window with the same, but add Shift + bindsym $mod+Shift+$left move left + bindsym $mod+Shift+$down move down + bindsym $mod+Shift+$up move up + bindsym $mod+Shift+$right move right + # Ditto, with arrow keys + bindsym $mod+Shift+Left move left + bindsym $mod+Shift+Down move down + bindsym $mod+Shift+Up move up + bindsym $mod+Shift+Right move right +# +# Workspaces: +# + # Switch to workspace + # bindsym $mod+1 workspace number 1 + bindsym $mod+1 [workspace="^1$"] move workspace to output current; workspace number 1 + bindsym $mod+2 [workspace="^2$"] move workspace to output current; workspace number 2 + bindsym $mod+3 [workspace="^3$"] move workspace to output current; workspace number 3 + bindsym $mod+4 [workspace="^4$"] move workspace to output current; workspace number 4 + bindsym $mod+5 [workspace="^5$"] move workspace to output current; workspace number 5 + bindsym $mod+6 [workspace="^6$"] move workspace to output current; workspace number 6 + bindsym $mod+7 [workspace="^7$"] move workspace to output current; workspace number 7 + bindsym $mod+8 [workspace="^8$"] move workspace to output current; workspace number 8 + bindsym $mod+9 [workspace="^9$"] move workspace to output current; workspace number 9 + bindsym $mod+0 [workspace="^10$"] move workspace to output current; workspace number 10 + # bindsym $mod+2 workspace number 2 + # bindsym $mod+3 workspace number 3 + # bindsym $mod+4 workspace number 4 + # bindsym $mod+5 workspace number 5 + # bindsym $mod+6 workspace number 6 + # bindsym $mod+7 workspace number 7 + # bindsym $mod+8 workspace number 8 + # bindsym $mod+9 workspace number 9 + # bindsym $mod+0 workspace number 10 + # Move focused container to workspace + bindsym $mod+Shift+1 move container to workspace number 1 + bindsym $mod+Shift+2 move container to workspace number 2 + bindsym $mod+Shift+3 move container to workspace number 3 + bindsym $mod+Shift+4 move container to workspace number 4 + bindsym $mod+Shift+5 move container to workspace number 5 + bindsym $mod+Shift+6 move container to workspace number 6 + bindsym $mod+Shift+7 move container to workspace number 7 + bindsym $mod+Shift+8 move container to workspace number 8 + bindsym $mod+Shift+9 move container to workspace number 9 + bindsym $mod+Shift+0 move container to workspace number 10 + # Note: workspaces can have any name you want, not just numbers. + # We just use 1-10 as the default. + +# Define outputs + # set $output-primary HDMI-A-1 + # set $output-secondary eDP-1 + +# workspace to displays + # workspace 1 output $output-primary + # workspace 2 output $output-primary + # workspace 3 output $output-primary + # workspace 4 output $output-primary + # workspace 5 output $output-primary + # + # workspace 6 output $output-primary + # workspace 7 output $output-primary + # workspace 8 output $output-primary + # workspace 9 output $output-primary + # workspace 10 output $output-secondary + +# +# Layout stuff: +# + # You can "split" the current object of your focus with + # $mod+b or $mod+v, for horizontal and vertical splits + # respectively. + bindsym $mod+b splith + bindsym $mod+v splitv + + # Switch the current container between different layout styles + bindsym $mod+s layout stacking + bindsym $mod+w layout tabbed + bindsym $mod+e layout toggle split + + # Make the current focus fullscreen + bindsym $mod+f fullscreen + + # Toggle Waybar + bindsym $mod+x exec killall -SIGUSR1 waybar + + # Toggle the current focus between tiling and floating mode + bindsym $mod+Shift+space floating toggle + + # Swap focus between the tiling area and the floating area + bindsym $mod+space focus mode_toggle + + # Move focus to the parent container + bindsym $mod+a focus parent +# +# Scratchpad: +# + # Sway has a "scratchpad", which is a bag of holding for windows. + # You can send windows there and get them back later. + + # Move the currently focused window to the scratchpad + bindsym $mod+Shift+minus move scratchpad + + # Show the next scratchpad window or hide the focused scratchpad window. + # If there are multiple scratchpad windows, this command cycles through them. + bindsym $mod+minus scratchpad show +# +# Resizing containers: +# +mode "resize" { + # left will shrink the containers width + # right will grow the containers width + # up will shrink the containers height + # down will grow the containers height + bindsym $left resize shrink width 10px + bindsym $down resize grow height 10px + bindsym $up resize shrink height 10px + bindsym $right resize grow width 10px + + # Ditto, with arrow keys + bindsym Left resize shrink width 10px + bindsym Down resize grow height 10px + bindsym Up resize shrink height 10px + bindsym Right resize grow width 10px + + # Return to default mode + bindsym Return mode "default" + bindsym Escape mode "default" +} +bindsym $mod+r mode "resize" + +# Move workspace to output left or right +bindsym $mod+Control+Right move workspace to output right +bindsym $mod+Control+Left move workspace to output left + +# Move container to output left or right +bindsym $mod+Control+Shift+Right move container to output right +bindsym $mod+Control+Shift+Left move container to output left + +# Window rules +for_window [app_id="mpv"] floating enable, resize set width 640 height 360, move position 1200 650, focus + +focus_on_window_activation focus + +# Assign applications to specific workspaces +for_window [app_id="kitty"] move window to workspace 2, focus +for_window [class="Spotify"] move window to workspace 6, focus +for_window [app_id="gimp-*"] move window to workspace 5, focus +for_window [app_id="newsboat"] move window to workspace 8, focus +for_window [app_id="nvim"] move window to workspace 3, focus +for_window [app_id="weechat"] move window to workspace 4, focus + +# +# Status Bar: +# +# Read `man 5 sway-bar` for more information about this section. +bar { + swaybar_command waybar +} + +include /etc/sway/config.d/* -- cgit v1.2.3