Remove terminal launcher

master
Hektor Misplon 2023-06-14 21:15:14 +02:00
parent 95ef4cb016
commit e95270dd80
2 changed files with 1 additions and 7 deletions

View File

@ -1,4 +0,0 @@
#!/usr/bin/env bash
alacritty --class Launcher,Launcher -e sh \
-c 'compgen -c | sort -u | fzf --reverse | (x=$(cat); (set -m; exec $x &))'

View File

@ -173,7 +173,6 @@ myKeys =
("M-<Space> S-<Space>", defaultLayout), -- ("M-<Space> S-<Space>", defaultLayout), --
("M-<Space> M-<Space>", nextLayout), -- ..fat finger ("M-<Space> M-<Space>", nextLayout), -- ..fat finger
("M-<Space> M-S-<Space>", defaultLayout), -- ("M-<Space> M-S-<Space>", defaultLayout), --
("M-S-p", spawnTermLauncher),
("<F8>", spawnKeepassXC), ("<F8>", spawnKeepassXC),
("M-z", spawnZettelkasten), ("M-z", spawnZettelkasten),
("M-p", spawnLauncher), ("M-p", spawnLauncher),
@ -232,9 +231,8 @@ spawnKeepassXC = spawn "keepassxc"
fullscreenBrowser :: X () fullscreenBrowser :: X ()
fullscreenBrowser = spawn "firefox --fullscreen" fullscreenBrowser = spawn "firefox --fullscreen"
spawnLauncher, spawnTermLauncher :: X () spawnLauncher :: X ()
spawnLauncher = spawn "albert toggle" spawnLauncher = spawn "albert toggle"
spawnTermLauncher = spawn "alacritty --class Launcher,Launcher"
spawnCalculator = spawn "alacritty --class 'Calculator' -e ipython -i /home/h/.bin/calc.py" spawnCalculator = spawn "alacritty --class 'Calculator' -e ipython -i /home/h/.bin/calc.py"
printScreen :: X () printScreen :: X ()