remove unneeded i3 stuff

This commit is contained in:
finga 2019-11-10 02:22:30 +01:00
parent e07b953f2d
commit 5c640669f2
2 changed files with 0 additions and 27 deletions

View file

@ -1,16 +0,0 @@
#!/bin/sh
#
# This code is released in public domain by Han Boetes <han@mijncomputer.nl>
#
# This script tries to exec an editor by trying some known editors if $EDITOR is
# not set.
#
# Distributions/packagers can enhance this script with a distribution-specific
# mechanism to find the preferred editor
# Hopefully one of these is installed (no flamewars about preference please!):
for editor in "$VISUAL" "$EDITOR" em nano nvim vim vi emacs pico qe mg jed gedit mc-edit; do
if command -v "$editor" > /dev/null 2>&1; then
exec "$editor" "$@"
fi
done

View file

@ -1,11 +0,0 @@
#!/bin/sh
#
# This code is released in public domain by Han Boetes <han@mijncomputer.nl>
#
# This script tries to exec a terminal emulator by trying some known terminal
# emulators.
for terminal in $TERMINAL urxvtcd rxvt-unicode urxvt x-terminal-emulator rxvt terminator Eterm aterm xterm gnome-terminal roxterm xfce4-terminal; do
if which $terminal > /dev/null 2>&1; then
exec $terminal "$@"
fi
done