summaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorpks <pks@pks.rocks>2023-10-03 10:58:14 +0200
committerpks <pks@pks.rocks>2023-10-03 10:58:14 +0200
commit6a671a6209932adc6858289c3e04f2f29693304f (patch)
tree5d5764d799b0a7b900ad06fff7e4fe2ac8404b4c /setup.sh
parentcec429dc47c4165b6483a9e9eb2df9d055aa7158 (diff)
update
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/setup.sh b/setup.sh
index c5be270..f0a40d8 100755
--- a/setup.sh
+++ b/setup.sh
@@ -1,7 +1,6 @@
#!env zsh
-symlink ()
-{
+function symlink () {
for i in `find . -maxdepth 1 -type d | grep -v .git | sed "s|./||" | grep -v by_os | grep -v "^\.$"`; do
stow -t $HOME $i
done
@@ -40,13 +39,3 @@ symlink
cd by_os/$(uname); symlink
git submodule update --init --recursive
-if [[ $(uname) == "Linux" ]]; then
- cd $HOME/.urxvt;
- ln -s urxvt-font-size/font-size .
- ln -s urxvt-perls/keyboard-select .
- ln -s urxvt-perls/deprecated/clipboard .
- ln -s urxvt-perls/deprecated/url-select .
- ln -s urxvt-tabbedex/tabbedex .
-fi
-
-