diff --git a/preview.png b/assets/media/preview.png similarity index 100% rename from preview.png rename to assets/media/preview.png diff --git a/install b/assets/package/install similarity index 98% rename from install rename to assets/package/install index 21b4509..cd4f46a 100755 --- a/install +++ b/assets/package/install @@ -76,7 +76,7 @@ fi printg " ==> Starting build process..." # The build dir is the same as if we were installing yeet using yeet -# Clear the build dir (in case it already exists +# Clear the build dir (in case it already exists) rm -rf "${XDG_CACHE_HOME:-$HOME/.cache}/yeet/build/yeet/" # Create it again mkdir -p "${XDG_CACHE_HOME:-$HOME/.cache}/yeet/build/yeet/" diff --git a/yeet.example.conf b/assets/package/yeet.example.conf similarity index 100% rename from yeet.example.conf rename to assets/package/yeet.example.conf diff --git a/readme.md b/readme.md index 48ae0ed..6a654bd 100644 --- a/readme.md +++ b/readme.md @@ -1,12 +1,12 @@ # YEET -Yet another minimalistic [pacman](https://wiki.archlinux.org/title/Pacman) wrapper. Yeet! +Yet another minimal [pacman](https://wiki.archlinux.org/title/Pacman) wrapper. Yeet! Inspired by several AMAZING projects: [`pacaur`](https://aur.archlinux.org/pacaur), [`pikaur`](https://aur.archlinux.org/pikaur), [`yay`](https://aur.archlinux.org/yay) and [`paru`](https://aur.archlinux.org/paru). Uses [`package-query`](https://aur.archlinux.org/package-query) to query packages from the sync repos and AUR. ## Preview -![[Yeet being used](./preview.png)](./preview.png) +![[Yeet being used](./assets/media/preview.png)](./assets/media/preview.png) ## Installation @@ -21,13 +21,13 @@ The script will perform the steps given in the [Manual Installation section](#ma Using `cURL`: ``` -curl https://raw.githubusercontent.com/gamemaker1/yeet/develop/install | bash +curl https://raw.githubusercontent.com/gamemaker1/yeet/develop/assets/package/install | bash ``` Using `wget`: ``` -wget https://raw.githubusercontent.com/gamemaker1/yeet/develop/install -O - | bash +wget https://raw.githubusercontent.com/gamemaker1/yeet/develop/assets/package/install -O - | bash ``` ### Manual @@ -44,7 +44,7 @@ mkdir -p ~/.cache/yeet/build/ cd ~/.cache/yeet/build/ git clone https://aur.archlinux.org/yeet.git cd yeet -makepkg -sic +makepkg -sfcCi ``` ## Usage and configuration @@ -58,19 +58,19 @@ makepkg -sic - Upgrade all packages (`yeet -U`) - Run pacman -Q (`yeet -Q`) -`yeet` can be configured using its config file, located at `$XDG_CONFIG_HOME/yeet/yeet.conf` OR `$HOME/.config/yeet/yeet.conf`. [Here](./yeet.example.conf) is an example configuration. +`yeet` can be configured using its config file, located at `$XDG_CONFIG_HOME/yeet/yeet.conf` OR `$HOME/.config/yeet/yeet.conf`. [Here](./assets/package/yeet.example.conf) is an example configuration. ## Contributing Thank you for your interest in contributing to `yeet`! -You can contribute to `yeet` by spreading the word, spotting and fixing bugs, and help adding new features. `yeet` is just a bash script, you may edit [the file](./yeet) and submit a pull request. Suggestions and PRs welcome! +You can contribute to `yeet` by spreading the word, spotting and fixing bugs, and help adding new features. `yeet` is just a bash script, you may edit [the file](./source/yeet) and submit a pull request. Suggestions and PRs welcome! ## License ### GNU GPL v3 -Copyright (C) 2021 Vedant K (gamemaker1) \ +Copyright (C) 2021 Vedant K (gamemaker1) \ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/yeet b/source/yeet similarity index 100% rename from yeet rename to source/yeet