diff --git a/.bin/mutt-find b/.bin/mutt-find index bf322d7..20e916b 100755 --- a/.bin/mutt-find +++ b/.bin/mutt-find @@ -1,6 +1,5 @@ #!/bin/sh -set -ex local LINKDIR="$HOME/.cache/mu/results" -mu find --clearlinks --format=links --linksdir=$LINKDIR "$@" -mutt -F $HOME/.mutt/rc-account-private -f $LINKDIR +mu find --clearlinks --format=links --linksdir=$LINKDIR "$@" \ + && mutt -F $HOME/.mutt/rc-account-private -f $LINKDIR rm -rf $LINKDIR; diff --git a/.bin/obsdmake b/.bin/obsdmake index 7df0586..e22ec33 100755 --- a/.bin/obsdmake +++ b/.bin/obsdmake @@ -14,7 +14,7 @@ export LLVM_CCACHE_DIR="/var/ccache" export CMAKE_CXX_COMPILER_LAUNCHER="ccache" export CMAKE_C_COMPILER_LAUNCHER="ccache" -FLAGS="-fno-ret-protector -mno-retpoline -march=native" +FLAGS="-fno-stack-protector -fno-ret-protector -mno-retpoline -march=native" export CC="/opt/ccache/bin/cc $FLAGS" export CXX="/opt/ccache/bin/c++ $FLAGS" diff --git a/.bin/portinfo b/.bin/portinfo index fec284a..ba7b774 100755 --- a/.bin/portinfo +++ b/.bin/portinfo @@ -4,13 +4,11 @@ cd /usr/ports/$1 -make show="COMMENT FULLPKGNAME MAINTAINER HOMEPAGE" \ +make show="COMMENT FULLPKGNAME HOMEPAGE MASTER_SITES MAINTAINER DESCR" \ | tr -s " " \ - | awk 'NR == 1 { print "COMMENT: "$0 } \ - NR == 2 { print "DISTNAME: "$0 } \ - NR == 3 { print "MAINTAINER: "$0 } \ - NR == 4 { print "HOMEPAGE: "$0 }' -echo -echo DESCRIPTION: -cat pkg/DESCR* -echo + | awk 'NR == 1 { print " COMMENT: "$0 } \ + NR == 2 { print " DISTNAME: "$0 } \ + NR == 3 { print " HOMEPAGE: "$0 } \ + NR == 4 { print "MASTER_SITES: "$0 } \ + NR == 5 { print " MAINTAINER: "$0 } \ + NR == 6 { print "DESCRIPTION: "; system("/bin/cat " $0); }' diff --git a/.config/luakit/rc.lua b/.config/luakit/rc.lua index 55f6c15..ebfeae0 100644 --- a/.config/luakit/rc.lua +++ b/.config/luakit/rc.lua @@ -72,8 +72,8 @@ settings.window.search_engines.default = settings.window.search_engines.duckd ---------------------------------- -- Add adblock --- local adblock = require "adblock" --- local adblock_chrome = require "adblock_chrome" +local adblock = require "adblock" +local adblock_chrome = require "adblock_chrome" -- Enable Developer Tools local webinspector = require "webinspector" diff --git a/.mutt/scripts/mu-find.sh b/.mutt/scripts/mu-find.sh index d6a71b0..8547766 100755 --- a/.mutt/scripts/mu-find.sh +++ b/.mutt/scripts/mu-find.sh @@ -1,5 +1,5 @@ #!/bin/ksh printf "MU Seach: " -read -r term +read -r REPLY -mu find --clearlinks --format=links --linksdir=~/.cache/mu/results $term +mu find --clearlinks --format=links --linksdir=~/.cache/mu/results "${REPLY}" diff --git a/.stalonetrayrc b/.stalonetrayrc new file mode 100644 index 0000000..b3fbbfe --- /dev/null +++ b/.stalonetrayrc @@ -0,0 +1,6 @@ +icon_size 16 +geometry 6x1 +background "#121212" +grow_gravity W +icon_gravity E +parent_bg true