summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoe <rbo@gmx.us>2025-09-27 21:17:49 +0200
committerjoe <rbo@gmx.us>2025-09-27 21:17:49 +0200
commit73c300db3f7286f3b27397b7bcbe21858d38de77 (patch)
treecb031b10471bfaa037056a277fca54fa1ef66c30
parentup (diff)
downloaddotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.gz
dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.bz2
dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.xz
dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.tar.zst
dotfiles-bsd-73c300db3f7286f3b27397b7bcbe21858d38de77.zip
up
Diffstat (limited to '')
-rw-r--r--.config/env2
-rwxr-xr-x.local/bin/dmapps6
2 files changed, 4 insertions, 4 deletions
diff --git a/.config/env b/.config/env
index cfd681a..c75c94e 100644
--- a/.config/env
+++ b/.config/env
@@ -32,7 +32,7 @@ export EDITOR='nvim'
export VISUAL="${EDITOR}"
export PAGER='less'
export MANPAGER='less'
-export TERMINAL='alacritty'
+export TERMINAL='st'
export BROWSER='firefox'
export READER='zathura'
export FILE='lf'
diff --git a/.local/bin/dmapps b/.local/bin/dmapps
index 0ce4c81..bc7de0a 100755
--- a/.local/bin/dmapps
+++ b/.local/bin/dmapps
@@ -79,7 +79,7 @@ sub run
$pid = fork();
exit if $pid;
setsid();
- exec("alacritty") if $action =~ "Terminal";
+ exec("st") if $action =~ "Terminal";
exec("pcmanfm") if $action =~ "File manager";
exec("firefox") if $action =~ "Web browser";
exec("thunderbird") if $action =~ "Mail client";
@@ -92,9 +92,9 @@ sub run
exec("mkvtoolnix-gui") if $action =~ "MKVToolNix";
exec("stellarium") if $action =~ "Stellarium";
exec("google-earth-pro") if $action =~ "Google Earth";
- exec("alacritty", "-e", "nvim") if $action =~ "NeoVim";
+ exec("st", "-e", "nvim") if $action =~ "NeoVim";
exec("emacs") if $action =~ "Emacs";
- exec("alacritty", "-e", "emacs-nw") if $action =~ "Emacs-NoX";
+ exec("st", "-e", "emacs-nw") if $action =~ "Emacs-NoX";
exec("gimp") if $action =~ "GIMP - GNU Image Manipulation Program";
exec("inkscape") if $action =~ "Inkscape";
exec("librewolf") if $action =~ "LibreWolf";