#!/bin/sh export XKB_DEFAULT_LAYOUT="us,jp" export XKB_DEFAULT_OPTIONS="grp:rshift_toggle" # Output configuration ───────────────────────────────────────────────────────── riverctl spawn 'wlr-randr --output DP-2 --mode 1920x1080@60.000000Hz --pos -1920,0 --transform normal --scale 1.000000 --output eDP-1 --mode 1920x1080@60.000000Hz --pos 0,0 --transform normal --scale 1.000000 --output HDMI-A-1 --mode 1920x1080@60.000000Hz --pos 1920,0 --transform normal --scale 1.000000' # Startup commands ───────────────────────────────────────────────────────────── riverctl spawn 'pipewire' riverctl spawn 'pipewire-pulse' riverctl spawn 'mpd' riverctl spawn 'start_notify' riverctl spawn 'wl-paste -t text --watch clipman store' riverctl spawn 'waybar' # riverctl spawn 'swayidle -w before-sleep swaylock' riverctl spawn 'mpDris2' riverctl spawn 'wlwpp' # riverctl spawn '/usr/libexec/xdg-desktop-portal-wlr' # riverctl spawn 'emacs --daemon' # Looks ──────────────────────────────────────────────────────────────────────── # Gtk theme # riverctl spawn 'gsettings set org.gnome.desktop.interface gtk-theme Matcha-dark-azul' riverctl spawn 'gsettings set org.gnome.desktop.interface icon-theme Papirus-Dark' riverctl spawn 'gsettings set org.gnome.desktop.interface cursor-theme Breeze_Snow' riverctl spawn 'gsettings set org.gnome.desktop.interface cursor-size 24' # Cursor theme riverctl xcursor-theme Breeze_Snow 24 # Borders riverctl border-width 2 riverctl border-color-focused 0xeceff4 riverctl border-color-unfocused 0x81a1c1 # Background (if no wallpaper is presented) riverctl background-color 0x2e3440 # Inputs ─────────────────────────────────────────────────────────────────────── # riverctl input 2:7:SynPS/2_Synaptics_TouchPad events disabled-on-external-mouse # riverctl input 2:7:SynPS/2_Synaptics_TouchPad drag enabled # riverctl input 2:7:SynPS/2_Synaptics_TouchPad disable-while-typing enabled # riverctl input 2:7:SynPS/2_Synaptics_TouchPad natural-scroll enabled # riverctl input 2:7:SynPS/2_Synaptics_TouchPad tap enabled # riverctl input 2:7:SynPS/2_Synaptics_TouchPad tap-button-map left-right-middle # riverctl input 2:7:SynPS/2_Synaptics_TouchPad scroll-method two-finger # Bindings ───────────────────────────────────────────────────────────────────── # Use the "logo" key as the primary modifier mod="Mod4" # Terminals riverctl map normal $mod Return spawn alacritty riverctl map normal $mod+Shift Return spawn foot # Launcher riverctl map normal $mod D spawn 'wofi --show=drun' riverctl map normal $mod+Control D spawn 'wofi --show=run' # Web search riverctl map normal $mod+Mod1 S spawn 'searchmenu --wofi' riverctl map normal $mod+Control S spawn 'bukumenu --wofi' # Manga riverctl map normal $mod+Mod1 M spawn 'mangamenu --wofi' # Clipboard manager riverctl map normal $mod+Mod1 D spawn 'clipboard --wofi' riverctl map normal $mod+Mod1 C spawn 'clipboard --clear' riverctl map normal $mod C spawn 'clipman clear --tool wofi' # Dismiss notifications riverctl map normal $mod+Mod1 N spawn dismiss_notify # Emacs riverctl map normal $mod+Mod1 E spawn 'emacsclient -c -a emacs' # Screenshot riverctl map normal $mod Print spawn 'screenshot --full' riverctl map normal None Print spawn 'screenshot --region' riverctl map normal Mod1 Print spawn 'screenshot --region-optional' riverctl map normal Control Print spawn 'screeshot --full-optional' # Mod+Q to close the focused view riverctl map normal $mod Q close # Mod+Z to lock the screen riverctl map normal $mod Z spawn swaylock # Mod+Alt+Q to exit river riverctl map normal $mod+Mod1 Q exit # Mod+J and Mod+K to focus the next/previous view in the layout stack riverctl map normal $mod J focus-view next riverctl map normal $mod K focus-view previous # Mod+Shift+J and Mod+Shift+K to swap the focused view with the next/previous # view in the layout stack riverctl map normal $mod+Shift J swap next riverctl map normal $mod+Shift K swap previous # Mod+Period and Mod+Comma to focus the next/previous output riverctl map normal $mod Period focus-output next riverctl map normal $mod Comma focus-output previous # Mod+Shift+{Period,Comma} to send the focused view to the next/previous output riverctl map normal $mod+Shift Period send-to-output next riverctl map normal $mod+Shift Comma send-to-output previous # Mod+E to bump the focused view to the top of the layout stack riverctl map normal $mod E zoom # Mod+H and Mod+L to decrease/increase the main_factor value of rivertile by 0.02 riverctl map normal $mod H send-layout-cmd rivertile 'main-ratio -0.02' riverctl map normal $mod L send-layout-cmd rivertile 'main-ratio +0.02' # Mod+Shift+H and Mod+Shift+L to increment/decrement the main_count value of rivertile riverctl map normal $mod+Shift H send-layout-cmd rivertile 'main-count +1' riverctl map normal $mod+Shift L send-layout-cmd rivertile 'main-count -1' # Mod+Alt+{H,J,K,L} to move views riverctl map normal $mod+Mod1 H move left 100 riverctl map normal $mod+Mod1 J move down 100 riverctl map normal $mod+Mod1 K move up 100 riverctl map normal $mod+Mod1 L move right 100 # Mod+Control+{H,J,K,L} to resize views riverctl map normal $mod+Control H resize horizontal -100 riverctl map normal $mod+Control J resize vertical 100 riverctl map normal $mod+Control K resize vertical -100 riverctl map normal $mod+Control L resize horizontal 100 # Mod+Alt+Control+{H,J,K,L} to snap views to screen edges riverctl map normal $mod+Mod1+Control H snap left riverctl map normal $mod+Mod1+Control J snap down riverctl map normal $mod+Mod1+Control K snap up riverctl map normal $mod+Mod1+Control L snap right # Mod + Left Mouse Button to move views riverctl map-pointer normal $mod BTN_LEFT move-view # Mod + Right Mouse Button to resize views riverctl map-pointer normal $mod BTN_RIGHT resize-view for i in $(seq 1 9) do tags=$((1 << (i - 1))) # Mod+[1-9] to focus tag [0-8] riverctl map normal $mod $i set-focused-tags $tags # Mod+Shift+[1-9] to tag focused view with tag [0-8] riverctl map normal $mod+Shift $i set-view-tags $tags # Mod+Ctrl+[1-9] to toggle focus of tag [0-8] riverctl map normal $mod+Control $i toggle-focused-tags $tags # Mod+Shift+Ctrl+[1-9] to toggle tag [0-8] of focused view riverctl map normal $mod+Shift+Control $i toggle-view-tags $tags done # Mod+0 to focus all tags # Mod+Shift+0 to tag focused view with all tags all_tags=$(((1 << 32) - 1)) riverctl map normal $mod 0 set-focused-tags $all_tags riverctl map normal $mod+Shift 0 set-view-tags $all_tags # Mod+Space to toggle float riverctl map normal $mod Space toggle-float # Mod+F to toggle fullscreen riverctl map normal $mod F toggle-fullscreen # Control+Alt+{H,J,K,L} to change layout orientation riverctl map normal Mod1+Control H send-layout-cmd rivertile 'main-location left' riverctl map normal Mod1+Control J send-layout-cmd rivertile 'main-location bottom' riverctl map normal Mod1+Control K send-layout-cmd rivertile 'main-location top' riverctl map normal Mod1+Control L send-layout-cmd rivertile 'main-location right' # Declare a passthrough mode. This mode has only a single mapping to return to # normal mode. This makes it useful for testing a nested wayland compositor riverctl declare-mode passthrough # Mod+F11 to enter passthrough mode riverctl map normal $mod F11 enter-mode passthrough # Mod+F11 to return to normal mode riverctl map passthrough $mod F11 enter-mode normal # Various media key mapping examples for both normal and locked mode which do # not have a modifier for mode in normal locked do # Eject the optical drive riverctl map $mode None XF86Eject spawn 'eject -T' # Control pulse audio volume riverctl map $mode None XF86AudioRaiseVolume spawn 'volumecontrol increase && pkill -x -RTMIN+11 waybar' riverctl map $mode None XF86AudioLowerVolume spawn 'volumecontrol decrease && pkill -x -RTMIN+11 waybar' riverctl map $mode None XF86AudioMute spawn 'volumecontrol toggle && pkill -x -RTMIN+11 waybar' # Control MPRIS aware media players with playerctl (https://github.com/altdesktop/playerctl) riverctl map $mode None XF86AudioMedia spawn 'playerctl play-pause' riverctl map $mode None XF86AudioPlay spawn 'playerctl play-pause' riverctl map $mode None XF86AudioPrev spawn 'playerctl previous' riverctl map $mode None XF86AudioNext spawn 'playerctl next' # Control screen backlight brighness riverctl map $mode None XF86MonBrightnessUp spawn 'brightness up' riverctl map $mode None XF86MonBrightnessDown spawn 'brightness down' done # Rules ──────────────────────────────────────────────────────────────────────── # Set repeat rate riverctl set-repeat 50 300 # Cursor riverctl focus-follows-cursor normal riverctl set-cursor-warp on-output-change # New window position riverctl attach-mode bottom # Set app-ids of views which should float riverctl float-filter-add "float" riverctl float-filter-add "popup" riverctl float-filter-add "swappy" riverctl float-filter-add "info.febvre.Komikku" # Set app-ids of views which should use client side decorations riverctl csd-filter-add "swappy" # Default layout riverctl default-layout rivertile exec rivertile -view-padding 4 -outer-padding 4 -main-location left -main-count 1 -main-ratio 0.54