From 7e8cc7201949ad75daca5520c57479229711ed31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 4 Apr 2022 15:54:26 +0200 Subject: Add flake.nix --- shellrc.d-desktop/desktop | 48 ----------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 shellrc.d-desktop/desktop (limited to 'shellrc.d-desktop/desktop') diff --git a/shellrc.d-desktop/desktop b/shellrc.d-desktop/desktop deleted file mode 100644 index 64f0431..0000000 --- a/shellrc.d-desktop/desktop +++ /dev/null @@ -1,48 +0,0 @@ -# vim: ft=sh: -# This is handy only on desktop and is useless on server - -alias sdcv='sdcv -c' - -# Following section is applicable for any desktop but only for graphics########## -# TODO add check for wayland -[ -z "$DISPLAY" ] && return - -alias feh='feh --conversion-timeout 10 -.' - - -# This function should not be called externaly -# It expects PID of surf instace as first argument and all other arguments should -# be command to be called before kill is sent. -__insurf_callback() { - local SPID=$1 - shift - "$@" - echo kill $SPID SIGHUP - kill -s SIGHUP $SPID || exit 1 -} - -# Same as inrun but it opens first argument it founds in surf and then reloads -# that instance automatically. -insurf() { - ( - set -e - # Run surf - surf "$1" & - local SPID=$! - trap "kill $SPID; trap '' EXIT; exit 0" EXIT INT QUIT TERM ABRT - # Insert our callback - local ISFIRST=true - for ARG in "$@"; do - if $ISFIRST; then - shift $# - ISFIRST=false - fi - set "$@" "$ARG" - if [ "$ARG" = "--" ]; then - set "$@" "__insurf_callback" "$SPID" - fi - done - # Run inrun - inrun "$@" - ) -} -- cgit v1.2.3