aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--distro/fedora.sh13
-rw-r--r--dotfiles/tmux.conf (renamed from tmux/tmux.conf)0
-rw-r--r--dotfiles/tmux_helper.sh (renamed from tmux/tmux_helper.sh)0
-rw-r--r--dotfiles/tmx.sh (renamed from tmux/tmx.sh)0
-rwxr-xr-xinstall.sh4
5 files changed, 10 insertions, 7 deletions
diff --git a/distro/fedora.sh b/distro/fedora.sh
index a27e87d..cd809eb 100644
--- a/distro/fedora.sh
+++ b/distro/fedora.sh
@@ -4,13 +4,12 @@ yum -y group install "Development Tools"
yum -y group install "C Development Tools and Libraries"
yum -y builddep dmenu slock st
yum -y install \
- NetworkManager-tui \
- ShellCheck \
ansible \
arandr \
bear \
bind-utils \
bsdtar \
+ btop \
buildah \
chromium \
dunst \
@@ -30,21 +29,22 @@ yum -y install \
google-noto-emoji-fonts \
htop \
iperf3 \
- java-1.8.0-openjdk \
- java-1.8.0-openjdk-devel \
java-11-openjdk \
java-11-openjdk-devel \
+ java-1.8.0-openjdk \
+ java-1.8.0-openjdk-devel \
kpartx \
- libXt-devel \
libfido2 \
libvirt \
+ libXt-devel \
lm_sensors \
maven \
ncdu \
ncmpc \
neofetch \
neovim \
- nload
+ NetworkManager-tui \
+ nload \
npm \
oksh \
oksh \
@@ -62,6 +62,7 @@ yum -y install \
rlwrap \
rsync \
scrot \
+ ShellCheck \
slock \
sxiv \
tmux \
diff --git a/tmux/tmux.conf b/dotfiles/tmux.conf
index a47df0b..a47df0b 100644
--- a/tmux/tmux.conf
+++ b/dotfiles/tmux.conf
diff --git a/tmux/tmux_helper.sh b/dotfiles/tmux_helper.sh
index 7ce68bd..7ce68bd 100644
--- a/tmux/tmux_helper.sh
+++ b/dotfiles/tmux_helper.sh
diff --git a/tmux/tmx.sh b/dotfiles/tmx.sh
index 0d66c27..0d66c27 100644
--- a/tmux/tmx.sh
+++ b/dotfiles/tmx.sh
diff --git a/install.sh b/install.sh
index e4d5b64..179a8d5 100755
--- a/install.sh
+++ b/install.sh
@@ -15,7 +15,9 @@ setLink() {
return
fi
- [ -e "$dest" ] && rm "$dest"
+ if [ -L "$dest" ] || [ -e "$dest" ] ; then
+ rm "$dest"
+ fi
ln -s "$src" "$dest"
}