summary refs log tree commit diff stats
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh23
1 files changed, 4 insertions, 19 deletions
diff --git a/install.sh b/install.sh
index 088903c..7de1e56 100755
--- a/install.sh
+++ b/install.sh
@@ -1,14 +1,15 @@
 #!/usr/bin/bash
 
-sudo pacman -S stow
-
 # Ignore list
 IGNORE=("bin" "wallpaper" "install.sh" ".git")
 
+# Install important packages
+sudo pacman -S stow
+
+# Setting up all the symlinks
 max=${#IGNORE[@]}
 max=$((max-1))
 
-# Setting up all the symlinks
 for f in *; do
 	ignored=false
 
@@ -27,19 +28,3 @@ for f in *; do
 		stow $f
 	fi
 done
-
-# install important packages
-sudo pacman -S alacritty dunst nvim qutebrowser starship xdg-user-dirs zathura meson ninja
-
-# install rofi and dmenu for wayland
-git clone https://github.com/davatorium/rofi.git /tmp/rofi
-cd /tmp/rofi
-meson setup build
-ninja -C build
-sudo ninja -C build install
-git clone https://git.sr.ht/~fabiancodes/dmenu-wayland /tmp/dmenu-wl
-cd /tmp/dmenu-wl
-mkdir build
-meson build
-ninja -C build
-sudo ninja -C build install