fssh + setbg
This commit is contained in:
parent
a4a5016d47
commit
cc9a7271e2
3 changed files with 11 additions and 0 deletions
|
@ -11,3 +11,6 @@ mkdir -p "${XDG_DATA_HOME}"
|
|||
|
||||
ln --force --symbolic --no-dereference $BASEDIR/config/x11/ "${XDG_CONFIG_HOME}/x11"
|
||||
ln --force --symbolic --no-dereference $BASEDIR/config/zsh/ "${XDG_CONFIG_HOME}/zsh"
|
||||
|
||||
ln --force --symbolic --no-dereference $BASEDIR/local/bin/fssh "${XDG_BIN_HOME}/fssh"
|
||||
ln --force --symbolic --no-dereference $BASEDIR/local/bin/setbg "${XDG_BIN_HOME}/setbg"
|
||||
|
|
3
local/bin/fssh
Executable file
3
local/bin/fssh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
ssh "$(grep '^Host\b' "$HOME"/.ssh/config | awk '{print $2}' | fzf)"
|
5
local/bin/setbg
Executable file
5
local/bin/setbg
Executable file
|
@ -0,0 +1,5 @@
|
|||
#/bin/sh
|
||||
|
||||
wpath="$HOME/i/wallpapers"
|
||||
img=$(ls $wpath | fzf)
|
||||
feh --no-fehbg --bg-fill $wpath/$img
|
Loading…
Reference in a new issue