mirror of
https://github.com/Phantop/dotfiles
synced 2025-03-21 17:39:33 +00:00
Fish: remove some unused functions
This commit is contained in:
parent
238fb20262
commit
c89621e161
|
@ -1,14 +0,0 @@
|
|||
function build
|
||||
s printf ''
|
||||
gp
|
||||
./autogen.sh --prefix=/usr
|
||||
./configure --prefix=/usr
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr .
|
||||
s printf ''
|
||||
make -j8
|
||||
s make install
|
||||
meson --prefix=/usr build
|
||||
s printf ''
|
||||
ninja -C build
|
||||
sudo ninja -C build install
|
||||
end
|
|
@ -1,8 +0,0 @@
|
|||
# Defined in /tmp/fish.0ygHEX/libpath.fish @ line 1
|
||||
function libpath
|
||||
if test $argv
|
||||
export LD_LIBRARY_PATH=$argv LIBGL_DRIVERS_PATH=$argv EGL_DRIVERS_PATH=$argv mesa_glthread=true AMD_DEBUG=nohyperz
|
||||
else
|
||||
export LD_LIBRARY_PATH=(pwd) LIBGL_DRIVERS_PATH=(pwd) EGL_DRIVERS_PATH=(pwd) mesa_glthread=true AMD_DEBUG=nohyperz
|
||||
end
|
||||
end
|
|
@ -1,9 +0,0 @@
|
|||
function xcompress
|
||||
if test -d $argv
|
||||
tar -cf $argv.tar $argv
|
||||
xz -efvk9T 0 $argv.tar
|
||||
rm $argv.tar
|
||||
else
|
||||
xz -efvk9T 0 $argv
|
||||
end
|
||||
end
|
|
@ -1,10 +0,0 @@
|
|||
# Defined in /tmp/fish.E9SjCK/zcompress.fish @ line 2
|
||||
function zcompress
|
||||
if test -d $argv
|
||||
tar -cf $argv.tar $argv
|
||||
zstd -T0 -19 $argv.tar
|
||||
rm $argv.tar
|
||||
else
|
||||
zstd -T0 -19 $argv
|
||||
end
|
||||
end
|
13
.local/bin/build
Executable file
13
.local/bin/build
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
sudo printf ''
|
||||
git pull
|
||||
./autogen.sh --prefix=/usr
|
||||
./configure --prefix=/usr
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr .
|
||||
sudo printf ''
|
||||
make -j8
|
||||
sudo make install
|
||||
meson --prefix=/usr build
|
||||
sudo printf ''
|
||||
ninja -C build
|
||||
sudo ninja -C build install
|
Loading…
Reference in a new issue