mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
9 lines
228 B
Bash
Executable File
9 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl -fLo xwinwrap.c https://github.com/mmhobi7/xwinwrap/raw/master/xwinwrap.c
|
|
cc -g -O2 -Wall -Wextra -lX11 -lXext -lXrender -o xwinwrap xwinwrap.c
|
|
|
|
# Install
|
|
chmod 755 xwinwrap
|
|
mv -fv xwinwrap ~/.local/bin/xwinwrap
|