diff --git a/home/programs/sxhkd/sxhkdrc b/home/programs/sxhkd/sxhkdrc index b27972c..e15196d 100644 --- a/home/programs/sxhkd/sxhkdrc +++ b/home/programs/sxhkd/sxhkdrc @@ -100,10 +100,10 @@ super + alt + {_,shift + }{1,2,3,4,5,6,7,8,9,0} # swap between desktops XF86WakeUp + super; {1,2,3,4,5,6,7,8,9,0} - sh /home/synchronous/.scripts/bspwm/swap-desktop.sh '{1,2,3,4,5,6,7,8,9,10}' + swap-desktop '{1,2,3,4,5,6,7,8,9,10}' XF86WakeUp + super + alt; {1,2,3,4,5,6,7,8,9,0} - sh /home/synchronous/.scripts/bspwm/swap-desktop.sh '{11,12,13,14,15,16,17,18,19,20}' + swap-desktop.sh '{11,12,13,14,15,16,17,18,19,20}' # preselect @@ -162,13 +162,13 @@ super + {Left,Right} bspc desktop -f {prev,next} ctrl + super + {Left,Right} - sh /home/synchronous/.scripts/bspwm/fast-shift.sh {left,right} + fast-shift {left,right} super + {shift} + {d} pkill -f discord ctrl + super + bracket{left,right} - sh /home/synchronous/.scripts/bspwm/fast-shift.sh {left,right} + fast-shift {left,right} super + bracket{left,right} @@ -181,7 +181,7 @@ super + bracket{left,right} # alacritty -e nvim /home/synchronous/Documents/Obsidian/Journal/Daily.md -c "execute 'normal G' | Goyo | autocmd VimResized * call GoyoWrapper()" # open my notes file in nvim w/ a new alacritty window, then jump to end of file super + {o} - sh /home/synchronous/.scripts/vimwiki/open_daily.sh + open_daily # open my notes without goyo and with nvimteee super + {shift} + {o} diff --git a/home/readScripts.nix b/home/readScripts.nix deleted file mode 100644 index 1e3ad19..0000000 --- a/home/readScripts.nix +++ /dev/null @@ -1,29 +0,0 @@ -# readScripts.nix -# {lib, ...}: let - # readScriptsRecursively = dir: let - # entries = builtins.readDir dir; - # names = builtins.attrNames entries; - # in - # lib.concatMap ( - # entry: let - # fullPath = "${dir}/${entry}"; - # entryInfo = entries.${entry}; - # in - # entryInfo - # # if entryInfo.type == "directory" - # # then - # # # Recursively gather more {name, value} items - # # readScriptsRecursively fullPath - # # else - # # [ - # # { - # # name = entry; - # # value = fullPath; - # # } - # # ] - # ); -# in - # # Return just the function for now, so you can test it easily - # { - # inherit readScriptsRecursively; - # } diff --git a/home/tb.nix b/home/tb.nix deleted file mode 100644 index 07d0abe..0000000 --- a/home/tb.nix +++ /dev/null @@ -1,15 +0,0 @@ -{pkgs, ...}: { - home.packages = with pkgs; [ - (writeShellApplication { - name = "termbin"; - runtimeInputs = with pkgs; [ - netcat - ]; - - text = '' - file=$1 - cat "$1" | nc termbin.com 9999 - ''; - }) - ]; -}