diff --git a/README.md b/README.md index 056fe6b..d38aef0 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ Running an [interactive installer](./setup/linux) removes the hassle of setting After running the setup, [default configurations](./env) can be overridden by editing the appropriate local configuration (`~/.config/wryn/env`). ## System Breakdown -`.wryn/MODULE` | Description ----------------------------- | -------------------------------------- -[setup/](./setup) | os-specific setup / update utilities -[config/](./config) | general configuration; appropriate `~/.config` files are symlinked on setup -[vim/](./vim) | `vim` keybindings, plugins, and dictionary binary; activated by an [entry rc](./vim/rc.vim) -[zsh/](./zsh) | `zsh` aliases, functions, and plugins; activated by an [entry rc](./zsh/rc) -[zsh/plugins](./zsh/plugins) | external `zsh` plugins (included as submodules) -[resume/](./resume) | my working resume in `.tex` format -[freeze/](./freeze) | list of hardware specific packages...this will move to cloud storage soon +`.wryn/MODULE` | Description +-------------------------------- | -------------------------------------- +[setup/](./setup) | os-specific setup / update utilities +[colorschemes/](./(colorschemes) | 16-color terminal colorschemes; see [colors](./zsh/colors) to see how these are loaded +[config/](./config) | general configuration; appropriate `~/.config` files are symlinked on setup +[resume/](./resume) | my working resume in `.tex` format +[vim/](./vim) | `vim` keybindings, plugins, and dictionary binary; activated by an [entry rc](./vim/rc.vim) +[zsh/](./zsh) | `zsh` aliases, functions, and plugins; activated by an [entry rc](./zsh/rc) +[zsh/plugins](./zsh/plugins) | external `zsh` plugins diff --git a/bin/xorg/altaria/hdmi4k b/bin/xorg/altaria/hdmi4k index 70fe79f..a01e576 100755 --- a/bin/xorg/altaria/hdmi4k +++ b/bin/xorg/altaria/hdmi4k @@ -9,4 +9,5 @@ xrandr \ --pos 0x0 \ ; +$DOTWRYN/bin/randomize-background PLAY_SFX login diff --git a/setup/env/env.zsh b/setup/env/env.zsh index b4a9ea2..d4fe029 100644 --- a/setup/env/env.zsh +++ b/setup/env/env.zsh @@ -34,6 +34,7 @@ S3_SYNC_MEDIA=( #".local/share/dolphin-emu" #"Games/roms" #"Games/wrynscape" + "Documents" "Media/fe10-radiant-dawn-ost" "Media/fiesta-online-ost" "Media/sfx" diff --git a/setup/freeze/2019-oct-macbook-osx/brew_packages b/setup/freeze/2019-oct-macbook-osx/brew_packages deleted file mode 100644 index 6dc1a89..0000000 --- a/setup/freeze/2019-oct-macbook-osx/brew_packages +++ /dev/null @@ -1,37 +0,0 @@ -axel -clisp -cmake -cmatrix -cowsay -ext4fuse -figlet -findutils -fortune -gcc -ghostscript -git -gnu-getopt -gradle -htop -tomanthony/brews/itermocil -jp2a -libxmlsec1 -llvm -lolcat -lorem -lynx -minicom -mono -mutt -nethack -nmap -node -pkg-config -postgresql -python@2 -sl -rockymadden/rockymadden/slack-cli -vim -w3m -watch -wget diff --git a/setup/freeze/2019-oct-macbook-osx/pip_packages b/setup/freeze/2019-oct-macbook-osx/pip_packages deleted file mode 100644 index 1e92e45..0000000 --- a/setup/freeze/2019-oct-macbook-osx/pip_packages +++ /dev/null @@ -1,10 +0,0 @@ -amqp==2.1.4 -appdirs==1.4.0 -asn1crypto==0.23.0 -gpg==1.13.1 -mock==2.0.0 -pbr==3.1.1 -nodeenv==1.3.3 -six==1.10.0 -vine==1.1.3 -virtualenv==16.7.3 diff --git a/setup/freeze/2019-oct-macbook-osx/rcpathvars b/setup/freeze/2019-oct-macbook-osx/rcpathvars deleted file mode 100644 index 9403547..0000000 --- a/setup/freeze/2019-oct-macbook-osx/rcpathvars +++ /dev/null @@ -1,17 +0,0 @@ -# for pyenv -#export PATH="/Users/w0ryn/.pyenv:$PATH" -#eval "$(pyenv init -)" - -#export LDFLAGS="-L/usr/local/opt/openssl/lib" -export LDFLAGS="-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib" -#LDFLAGS += -L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib - -#export CPPFLAGS="-I/usr/local/opt/openssl/include" -export CPPFLAGS="-I/usr/local/opt/llvm/include -I/usr/local/opt/llvm/include/c++/v1/" -#CPPFLAGS += -I/usr/local/opt/llvm/include -I/usr/local/opt/llvm/include/c++/v1/ - -export PATH="/usr/local/opt/llvm/bin:$PATH" -export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig" -export PYCURL_SSL_LIBRARY=openssl - -export PATH="/usr/local/opt/gnu-getopt/bin:$PATH" diff --git a/setup/freeze/2019-oct-macbook-osx/setup b/setup/freeze/2019-oct-macbook-osx/setup deleted file mode 100644 index 12bfcbe..0000000 --- a/setup/freeze/2019-oct-macbook-osx/setup +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -echo Setting up preferred utilities... -local INSTALL_LOCATION='~/.wryn/new_computer_setup' - -sudo xcode-select --install; -brew update; # install brew - -brew --version; -[ $? -ne 0 ] && echo failed to install homebrew && return 1 - -brew update; # install brew packages - -for package in $(cat $INSTALL_LOCATION/osx/brew_packages); do - brew install "$package" -done; - -# mssql install -#brew install freetds@0.91 -#brew link --force freedts@0.91 -#brew tap microsoft/mssqul-release https://github.com/Microsoft/homebrew-m2 -#brew update -#brew install --no-sandbox msodbcsql - -brew services start postgresql - -# use ~/.bashrc instead -[[ ! -f ~/.bashrc ]] && touch ~/.bashrc -echo '[[ -s ~/.bashrc ]] && source ~/.bashrc' >> ~/.bash_profile -cat $INSTALL_LOCATION/osx/rcpathvars >> ~/.bashrc - -# python packages -pip3 install -r pip_packages diff --git a/setup/freeze/2020-jan-macbook-arch/aurlist.txt b/setup/freeze/2020-jan-macbook-arch/aurlist.txt deleted file mode 100644 index 61578a3..0000000 --- a/setup/freeze/2020-jan-macbook-arch/aurlist.txt +++ /dev/null @@ -1,25 +0,0 @@ -1password-cli -android-messages-desktop -datagrip -gmux_backlight -google-chrome -jdk -lorem-ipsum-generator -mbpfan-git -mcpelauncher-linux-git -mcpelauncher-msa-git -mcpelauncher-msa-ui-qt-git -mcpelauncher-ui-git -msodbcsql -mssql-cli -nvidia-bl -pgcli-git -python36 -python37 -quicklisp -slack-cli -slack-desktop -thermald -tpp -vmail -yay diff --git a/setup/freeze/2020-jan-macbook-arch/piplist.txt b/setup/freeze/2020-jan-macbook-arch/piplist.txt deleted file mode 100644 index 2cdc672..0000000 --- a/setup/freeze/2020-jan-macbook-arch/piplist.txt +++ /dev/null @@ -1,85 +0,0 @@ -absl-py==0.8.1 -anytree==2.8.0 -appdirs==1.4.3 -applicationinsights==0.11.9 -arandr==0.1.10 -backports.csv==1.0.7 -Beaker==1.11.0 -btrfsutil==1.1.1 -CacheControl==0.12.6 -chardet==3.0.4 -cli-helpers==1.2.0 -Click==7.0 -colorama==0.4.3 -configobj==5.0.6 -contextlib2==0.6.0 -dill==0.3.1.1 -distlib==0.3.0 -distro==1.4.0 -evdev==1.3.0 -future==0.18.2 -googleapis-common-protos==1.6.0 -greenlet==0.4.15 -html5lib==1.0.1 -humanize==0.5.1 -idna==2.9 -importlib-metadata==1.5.0 -lit==0.9.1.dev0 -lockfile==0.12.2 -loremipsum==1.0.5 -louis==3.13.0 -lutris==0.5.4 -lxml==4.5.0 -Mako==1.1.2 -mallard-ducktype==1.0.2 -Markdown==3.1.1 -MarkupSafe==1.1.1 -more-itertools==8.2.0 -msgpack==0.6.2 -mysqlclient==1.4.6 -nodeenv==1.3.3 -numpy==1.17.4 -ordered-set==3.1.1 -packaging==20.3 -pep517==0.8.1 -pgcli==2.2.0 -pgspecial==1.11.9 -Pillow==6.2.1 -progress==1.5 -promise==2.2.1 -prompt-toolkit==3.0.4 -protobuf==3.11.0 -psycopg2==2.8.4 -pulsemixer==1.5.0 -pycairo==1.19.1 -pyfiglet==0.8.post0 -Pygments==2.6.1 -PyGObject==3.36.0 -PyOpenGL==3.1.5 -pyparsing==2.4.6 -PyQt5==5.14.1 -PyQt5-sip==12.7.1 -python-dateutil==2.8.1 -pytoml==0.1.21 -PyYAML==5.3 -requests==2.23.0 -retrying==1.3.3 -setproctitle==1.1.10 -six==1.14.0 -sqlparse==0.3.1 -tabulate==0.8.6 -team==1.0 -tensorflow-datasets==1.3.0 -tensorflow-metadata==0.15.1 -termcolor==1.1.0 -termdown==1.16.0 -terminaltables==3.1.0 -toml==0.10.0 -tqdm==4.39.0 -urllib3==1.25.8 -virtualenv==16.7.8 -wcwidth==0.1.8 -webencodings==0.5.1 -wpm==1.51.5 -wrapt==1.11.2 -zipp==3.1.0 diff --git a/setup/freeze/2020-jan-macbook-arch/pkglist.txt b/setup/freeze/2020-jan-macbook-arch/pkglist.txt deleted file mode 100644 index 5f4b3fe..0000000 --- a/setup/freeze/2020-jan-macbook-arch/pkglist.txt +++ /dev/null @@ -1,205 +0,0 @@ -alsa-utils -apache -arandr -autoconf -autoconf-archive -automake -axel -bash -binutils -bison -bluez -bluez-tools -bluez-utils -broadcom-wl-dkms -bzip2 -clisp -cmake -cmatrix -coreutils -cowsay -cpupower -cronie -cryptsetup -cups -deepin-screenshot -device-mapper -dhcpcd -diffutils -discord -dmenu -docbook-xml -docbook-xsl -e2fsprogs -efibootmgr -espeak -fakeroot -feh -figlet -file -filesystem -findutils -flex -fortune-mod -freeglut -freetds -fzf -gawk -gcc -gcc-libs -gettext -git -glib2-docs -glibc -gnome-common -gobject-introspection -grep -groff -grub -gtk-doc -gzip -hdf5 -hplip -htop -i3-gaps -i3blocks -i3lock -i3status -i7z -inetutils -intel-ucode -intltool -iproute2 -iputils -itstool -jfsutils -jq -jshon -kitty -less -lib32-alsa-plugins -lib32-libpulse -lib32-nvidia-utils -lib32-vulkan-icd-loader -libtool -licenses -light -linux -linux-firmware -linux-headers -logrotate -lolcat -lutris -lvm2 -m4 -make -mako -mallard-ducktype -man-db -man-pages -mdadm -mdp -mono -nano -net-tools -netctl -nethack -networkmanager -nmap -nodejs -ntp -nvidia -nvidia-settings -opencv -opencv-samples -openssh -pacman -patch -pavucontrol -pciutils -perl -perl-anyevent-i3 -perl-json-xs -perl-xml-parser -picom -pkgconf -postgresql -postgresql-docs -postgresql-old-upgrade -procps-ng -psmisc -pulsemixer -python-anytree -python-beaker -python-lxml -python-markdown -python-markupsafe -python-mysqlclient -python-opengl -python-pip -python-psycopg2 -python-pygments -python-pyqt5 -python2-pip -refind-efi -reiserfsprogs -ruby-ncurses -s-nail -sbcl -screen -sed -shadow -sl -sudo -sxiv -sysfsutils -systemd -systemd-sysvcompat -tar -termdown -terminus-font -texinfo -texlive-bibtexextra -texlive-core -texlive-fontsextra -texlive-formatsextra -texlive-games -texlive-humanities -texlive-latexextra -texlive-music -texlive-pictures -texlive-pstricks -texlive-publishers -texlive-science -tk -tlp -tmux -ttf-dejavu -unixodbc -usbutils -util-linux -uwsgi-plugin-python -vbam-wx -vi -vim -vulkan-intel -w3m -wget -which -wine -x11vnc -xclip -xfce4-power-manager -xfce4-pulseaudio-plugin -xfsprogs -xmlsec -xorg-xbacklight -xorg-xdpyinfo -xorg-xev -xorg-xinit -xorg-xrandr -yelp-tools -yelp-xsl -zip -zsh -zsh-completions diff --git a/setup/freeze/2020-sep-macbook-arch/aurlist.txt b/setup/freeze/2020-sep-macbook-arch/aurlist.txt deleted file mode 100644 index 2310dc6..0000000 --- a/setup/freeze/2020-sep-macbook-arch/aurlist.txt +++ /dev/null @@ -1,46 +0,0 @@ -1password-cli -android-messages-desktop -bashtop-git -bcwc-pcie-git -elgato-gchd -facetimehd-firmware -gconf -gmux_backlight -google-chrome -jdk -jre -lib32-libevdev -libffi6 -lorem-ipsum-generator -mbpfan-git -minecraft-launcher -msodbcsql -mssql-cli -mssql-tools -nvidia-bl -pgcli -python-applicationinsights -python-cli_helpers -python-pgspecial -python-rtmidi -python2-pytoml -python36 -python37 -qtws-base -quicklisp -ruby-blockenspiel -ruby-highline -ruby-sequel -ruby-versionomy -runelite -slack-cli -slack-desktop -steamcmd -tpp -ttf-muli -v4l2loopback-dkms-git -vmail -xautoclick -xorg-font-utils -yay -youtubemusic-nativefier diff --git a/setup/freeze/2020-sep-macbook-arch/piplist.txt b/setup/freeze/2020-sep-macbook-arch/piplist.txt deleted file mode 100644 index 64232de..0000000 --- a/setup/freeze/2020-sep-macbook-arch/piplist.txt +++ /dev/null @@ -1,127 +0,0 @@ -absl-py==0.8.1 -anytree==2.8.0 -apparmor==2.13.4 -appdirs==1.4.4 -applicationinsights==0.11.9 -arandr==0.1.10 -argcomplete==1.11.1 -asn1crypto==1.4.0 -astroid==2.4.2 -backports.csv==1.0.7 -Beaker==1.11.0 -btrfsutil==1.2.0 -CacheControl==0.12.6 -certifi==2020.6.20 -cffi==1.14.2 -chardet==3.0.4 -cli-helpers==0.2.3 -click==7.1.2 -colorama==0.4.3 -configobj==5.0.6 -contextlib2==0.6.0.post1 -coverage==5.0.4 -cryptography==3.1 -Cython==0.29.21 -dill==0.3.1.1 -distlib==0.3.1 -distro==1.5.0 -drawille==0.1.0 -entrypoints==0.3 -enum34==1.1.10 -evdev==1.3.0 -factories==1.2.0 -flake8==3.8.3 -flake8-polyfill==1.0.2 -future==0.18.2 -googleapis-common-protos==1.6.0 -greenlet==0.4.16 -html5lib==1.1 -huepy==1.2.1 -humanize==0.5.1 -idna==2.10 -importlib-metadata==1.6.1 -isort==5.5.2 -jeepney==0.4.3 -keyring==21.4.0 -launchpad-py==0.8.3 -lazy-object-proxy==1.5.1 -LibAppArmor==2.13.4 -lit==0.10.1.dev0 -lockfile==0.12.2 -loremipsum==1.0.5 -louis==3.15.0 -lxml==4.5.2 -Mako==1.1.3 -mallard-ducktype==1.0.2 -Markdown==3.2.2 -MarkupSafe==1.1.1 -mccabe==0.6.1 -more-itertools==8.5.0 -msgpack==1.0.0 -mssql-cli @ file:///home/w0ryn/.cache/yay/mssql-cli/src/mssql_cli-1.0.0-py2.py3-none-manylinux1_x86_64.whl -mssql-scripter==1.0.0a23 -mysqlclient==2.0.1 -nodeenv==1.3.3 -nose2==0.9.2 -npyscreen==4.10.5 -numpy==1.19.2 -ordered-set==4.0.2 -packaging==20.4 -pep517==0.8.2 -pep8-naming==0.10.0 -pgcli==3.0.0 -pgspecial==1.11.10 -Pillow==7.2.0 -ply==3.11 -progress==1.5 -promise==2.2.1 -prompt-toolkit==2.0.10 -protobuf==3.11.0 -psutil==5.7.2 -psycopg2==2.8.6 -pulsemixer==1.5.1 -pycairo==1.19.1 -pycodestyle==2.6.0 -pycparser==2.20 -pyfiglet==0.8.post0 -pyflakes==2.2.0 -Pygments==2.7.0 -PyGObject==3.36.1 -pylint==2.5.3 -PyOpenGL==3.1.5 -pyOpenSSL==19.1.0 -pyparsing==2.4.7 -PyQt5==5.15.1 -PyQt5-sip==12.8.1 -python-dateutil==2.8.1 -python-rtmidi==1.4.5 -pytoml==0.1.21 -PyYAML==5.3.1 -qute==1.0.10 -redis==3.5.3 -regex==2020.7.14 -requests==2.24.0 -resolvelib==0.4.0 -retrying==1.3.3 -scipy==1.5.2 -scribble==1.0.0 -SecretStorage==3.1.2 -setproctitle==1.1.10 -six==1.15.0 -sqlparse==0.2.4 -tabulate==0.8.7 -team==1.0 -tensorflow-datasets==1.3.0 -tensorflow-metadata==0.15.1 -termcolor==1.1.0 -termdown==1.17.0 -terminaltables==3.1.0 -toml==0.10.1 -tqdm==4.39.0 -urllib3==1.25.10 -virtualenv==16.7.8 -wcwidth==0.2.5 -webencodings==0.5.1 -wpm==1.51.5 -wrapt==1.12.1 -zipp==3.1.0 diff --git a/setup/freeze/2020-sep-macbook-arch/pkglist.txt b/setup/freeze/2020-sep-macbook-arch/pkglist.txt deleted file mode 100644 index 9c39c63..0000000 --- a/setup/freeze/2020-sep-macbook-arch/pkglist.txt +++ /dev/null @@ -1,258 +0,0 @@ -1password-cli -alsa-utils -android-messages-desktop -apache -arandr -autoconf -autoconf-archive -automake -axel -bash -bashtop-git -bcwc-pcie-git -binutils -bison -bluez -bluez-tools -bluez-utils -broadcom-wl-dkms -bzip2 -clisp -cmake -cmatrix -coreutils -cowsay -cpupower -cronie -cryptsetup -cups -deepin-screen-recorder -device-mapper -dhcpcd -diffutils -discord -dmenu -dmidecode -docbook-xml -docbook-xsl -docker -e2fsprogs -efibootmgr -elgato-gchd -espeak -fakeroot -feh -figlet -file -filesystem -findutils -flex -fortune-mod -freeglut -freetds -fzf -gawk -gcc -gcc-libs -gettext -git -glib2-docs -glibc -gmux_backlight -gobject-introspection -google-chrome -gradle -grep -groff -grub -gtk-doc -gzip -hdf5 -hplip -htop -hwdetect -i3-gaps -i3blocks -i3lock -i3status -i7z -inetutils -intel-ucode -intltool -iproute2 -iputils -itstool -jdk -jfsutils -jq -jre -jshon -kitty -less -lib32-alsa-plugins -lib32-libpulse -lib32-nvidia-utils -lib32-v4l-utils -lib32-vulkan-icd-loader -libffi6 -libtool -licenses -light -linux -linux-firmware -linux-headers -logrotate -lolcat -lorem-ipsum-generator -lua-sec -lvm2 -m4 -make -mako -mallard-ducktype -man-db -man-pages -mbpfan-git -mdadm -mdp -minecraft-launcher -mono -msodbcsql -mssql-cli -mssql-tools -nano -net-tools -netctl -nethack -networkmanager -nmap -nodejs -ntp -nvidia -nvidia-bl -nvidia-settings -obs-studio -opencv -opencv-samples -openssh -pacman -patch -pavucontrol -pciutils -perl -perl-anyevent-i3 -perl-json-xs -perl-xml-parser -pgcli -picom -pkgconf -postgresql -postgresql-docs -postgresql-old-upgrade -powertop -procps-ng -psmisc -pulseaudio-alsa -pulseaudio-bluetooth -pulsemixer -python-anytree -python-beaker -python-lxml -python-markdown -python-markupsafe -python-mysqlclient -python-numpy -python-opengl -python-pip -python-psycopg2 -python-pygments -python-pylint -python-pyopenssl -python-pyqt5 -python-redis -python-rtmidi -python-scipy -python2-pip -python36 -python37 -quicklisp -redis -refind -reiserfsprogs -ripgrep -ruby-ncurses -runelite -s-nail -sbcl -screen -sed -shadow -sl -slack-cli -slack-desktop -soundfont-fluid -sshfs -steam -steamcmd -sudo -sxiv -sysfsutils -systemd -systemd-sysvcompat -tar -termdown -terminus-font -texinfo -texlive-bibtexextra -texlive-core -texlive-fontsextra -texlive-formatsextra -texlive-games -texlive-humanities -texlive-latexextra -texlive-music -texlive-pictures -texlive-pstricks -texlive-publishers -texlive-science -thermald -timidity++ -tk -tlp -tmux -tpp -ttf-dejavu -unixodbc -usbutils -util-linux -uwsgi-plugin-python -v4l2loopback-dkms-git -vbam-wx -vi -vim -vmail -vulkan-intel -w3m -wget -which -wine -x11vnc -xautoclick -xclip -xdotool -xfce4-power-manager -xfce4-pulseaudio-plugin -xfsprogs -xmlsec -xorg-xbacklight -xorg-xdpyinfo -xorg-xev -xorg-xinit -xorg-xrandr -yay -yelp-tools -yelp-xsl -youtubemusic-nativefier -zip -zsh -zsh-completions diff --git a/setup/freeze/systemd-utils/dell-xps13-7390/powertop.service b/setup/freeze/systemd-utils/dell-xps13-7390/powertop.service deleted file mode 100755 index 60ee418..0000000 --- a/setup/freeze/systemd-utils/dell-xps13-7390/powertop.service +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Powertop tunings - -[Service] -Type=oneshot -ExecStart=/usr/bin/powertop --auto-tune - -[Install] -WantedBy=multi-user.target diff --git a/setup/freeze/systemd-utils/macbook_pro13/backlight-control.service b/setup/freeze/systemd-utils/macbook_pro13/backlight-control.service deleted file mode 100755 index 9971a73..0000000 --- a/setup/freeze/systemd-utils/macbook_pro13/backlight-control.service +++ /dev/null @@ -1,8 +0,0 @@ -[Unit] -Description=Enables the gmux backlighting. This is a non-standard NVIDIA issue on Macbooks - -[Service] -ExecStart=/usr/bin/bash -c 'setpci -v -H1 -s 00:01.00 BRIDGE_CONTROL=0; gmux_backlight 400' - -[Install] -WantedBy=multi-user.target diff --git a/setup/freeze/systemd-utils/macbook_pro13/suppress-gpe.service b/setup/freeze/systemd-utils/macbook_pro13/suppress-gpe.service deleted file mode 100755 index 6fe2ab9..0000000 --- a/setup/freeze/systemd-utils/macbook_pro13/suppress-gpe.service +++ /dev/null @@ -1,8 +0,0 @@ -[Unit] -Description=Disables GPE 66, an interrupt that is going crazy on Macs - -[Service] -ExecStart=/usr/bin/bash -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe16; echo "disable" > /sys/firmware/acpi/interrupts/gpe17;' - -[Install] -WantedBy=multi-user.target diff --git a/setup/freeze/systemd-utils/macbook_pro13/suspend-fix.service b/setup/freeze/systemd-utils/macbook_pro13/suspend-fix.service deleted file mode 100755 index 145a2d3..0000000 --- a/setup/freeze/systemd-utils/macbook_pro13/suspend-fix.service +++ /dev/null @@ -1,7 +0,0 @@ -[Unit] -Description=Disables magnetic sensor wakeup, allowing arch to sleep -[Service] -Type=oneshot -ExecStart=/bin/sh -c "echo XHC! > /proc/acpi/wakeup && echo LID0 > /proc/acpi/wakeup" -[Install] -WantedBy=multi-user.target diff --git a/setup/linux b/setup/linux index 5a85052..690834b 100755 --- a/setup/linux +++ b/setup/linux @@ -98,13 +98,9 @@ GET_SUDO_PASSWORD() { MAKE_REQUIRED_DIRECTORY_STRUCTURE() { DIRECTORIES=( - "$HOME/.config" "$HOME/.config/wryn" - "$HOME/.config/wryn/env" - "$HOME/.local" "$HOME/.local/bin" "$HOME/.packages" - "$HOME/.vim" "$HOME/.vim/bundle" "$HOME/.vim/colors" ) @@ -113,7 +109,7 @@ MAKE_REQUIRED_DIRECTORY_STRUCTURE() { "$HOME/.zshrc" ) - for D in $DIRECTORIES; do [ ! -d $D ] && mkdir $D; done + for D in $DIRECTORIES; do [ ! -d $D ] && mkdir -p $D; done for F in $FILES; do [ ! -f $F ] && touch $F; done }