Skip to content

Commit

Permalink
Create install_icons.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
nestoris committed Aug 23, 2021
1 parent 4b07e55 commit 0823a37
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions install_icons.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

# script of quick installation of SE98 icon theme into ~/.local/share/icons or ~/.icons folder

localsharethemes="$HOME/.local/share/icons"
homethemes="$HOME/.icons"
[[ -d "$localsharethemes" ]] && cp -rv "$PWD/Icons/SE98" "$localsharethemes" [[ ! -d "$localsharethemes" && -d "$homethemes" ]] && cp -r "$PWD/Icons/SE98" "$homethemes"

0 comments on commit 0823a37

Please sign in to comment.