Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 916 Bytes

README.org

File metadata and controls

38 lines (29 loc) · 916 Bytes

Requirements

  • cl-ppcre

    Install cl-ppcre from the REPL:

    (ql:quickload :cl-ppcre)
        

Usage

This simple plugin parses your ssh config file and opens a connection using a teminal emulator.

Put the following in your ~/.stumpwmrc

(load-module "swm-ssh")

And use it either by calling the appropriate function directly (swm-ssh-menu) or by defining a keybind (example <prefix> C-a) in your ~/.stumpwmrc

(define-key *root-map* (kbd "C-a") "swm-ssh-menu")

Variables

swm-ssh-default-term

Default terminal to open an ssh connection is urxvtc. To change it, use

(setq swm-ssh:*swm-ssh-default-term* "xterm")

swm-ssh-config-path

Ssh config file path. Defaults to ~/.ssh/config. Change it with

(setq swm-ssh:*swm-ssh-config-path* "/path/to/ssh/config")