#!/bin/sh # General riverctl keyboard-layout -options caps:swapescape gb riverctl set-repeat 120 200 # Mapping riverctl map normal Alt+Shift Q exit riverctl map normal Alt Q close riverctl map normal Alt J focus-view next riverctl map normal Alt K focus-view previous # Applications riverctl map normal Alt+Shift Return spawn foot riverctl map normal Alt+Shift B spawn $BROWSER riverctl map normal Alt+Shift C spawn $BROWSER # Change window size riverctl map normal Alt+Shift K resize vertical +10 riverctl map normal Alt+Shift J resize vertical -10 riverctl map normal Alt+Shift L resize horizontal +10 riverctl map normal Alt+Shift H resize horizontal -10 # Screenshots riverctl map normal Alt+Shift S grim # Swap windows riverctl map normal Alt Return swap next # Tags for i in $(seq 1 9) ; do tags=$((1 << ($i - 1))) # Alt+[1-9] to focus tag [0-8] riverctl map normal Alt $i set-focused-tags $tags # Alt+Shift+[1-9] to tag focused view of tag [0-8] riverctl map normal Alt+Shift $i set-view-tags $tags # Alt+Ctrl+[1-9] to toggle focus of tag [0-8] riverctl map normal Alt+Control $i toggle-focused-tags $tags # Alt+Shift+Ctrl+[1-9] to toggle tag [0-8] of focused view riverctl map normal Alt+Shift+Control $i toggle-view-tags $tags done # Alt+F to toggle fullscreen riverctl map normal Alt F toggle-fullscreen # Alt+Space to toggle float riverctl map normal Alt Space toggle-float # Autostart wallpaper & riverctl default-layout rivertile rivertile & waybar &