Compare commits

...

7 Commits

9 changed files with 75 additions and 39 deletions

View File

@ -33,7 +33,7 @@ draw_bold_text_with_bright_colors: true
colors:
primary:
background: '0x263238'
background: '0x1a141d'
foreground: '0xcfd8dc'
bright_foreground: '0xeceff1'
normal:
@ -55,8 +55,6 @@ colors:
cyan: '0x00e5ff'
white: '0xffffff'
background_opacity: 0.97
cursor:
style: Block
unfocused_hollow: true

View File

@ -2,6 +2,3 @@
*Menu.background: Black
*Menu.foreground: White
Oneko.reverse: true
Emacs.font: -*-Courier Prime Code-*-r-normal-*-*-120-*-*-m-*-iso10646-1
Emacs.width: 80
Emacs.height: 30

View File

@ -1,4 +1,4 @@
# vim: syntax=fish:
# -*-Fish-*-
set -gx XBPS_DISTDIR $_agw_dir_src/packages/void/dist
set -gx XBPS_HOSTDIR $_agw_dir_bin/void/hostdir

View File

@ -1 +1,2 @@
XBPS_MAKEJOBS=12
XBPS_ALLOW_RESTRICTED=yes

View File

@ -1,4 +1,46 @@
;; meta stuff
(let ((usr-backup (locate-user-emacs-file "backup"))
(usr-custom (locate-user-emacs-file "custom.el")))
(setq auto-save-default nil
backup-directory-alist `((".*" . ,usr-backup))
create-lockfiles nil
custom-file usr-custom
gc-cons-threshold 64000000
global-mark-ring-max 1024
inhibit-compacting-font-caches t
inhibit-startup-screen t
initial-scratch-message nil
mark-ring-max 1024))
;; important ergonomics
(setq fill-column 80
sentence-end-double-space nil)
(defalias #'yes-or-no-p #'y-or-n-p)
;; packages
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")))
;; default visuals
(add-to-list 'default-frame-alist '(width . 80))
(add-to-list 'default-frame-alist '(height . 30))
(set-face-attribute 'default nil :family "Courier Prime Code"
:height 120 :weight 'normal :width 'normal)
(set-face-attribute 'variable-pitch nil :family "Source Sans Pro"
:height 120 :weight 'normal :width 'normal)
(copy-face 'default 'fixed-pitch)
(copy-face 'default 'mode-line)
;; fontset usage
(dolist (range '((#x2310 . #x26bf)
(#x26c0 . #x329f)
(#x1f000 . #x1fa9f)))
(set-fontset-font t range "Noto Color Emoji"))
(set-fontset-font t '(#x2e80 . #x9fff) "Noto Sans CJK JP")
;; EOF

View File

@ -1,43 +1,16 @@
;; startup
(let ((usr-backup (locate-user-emacs-file "backup"))
(usr-custom (locate-user-emacs-file "custom.el"))
(usr-data (locate-user-emacs-file "data.el")))
(setq auto-save-default nil
backup-directory-alist `((".*" . ,usr-backup))
create-lockfiles nil
custom-file usr-custom
gc-cons-threshold 64000000
global-mark-ring-max 1024
inhibit-compacting-font-caches t
inhibit-startup-screen t
initial-scratch-message nil
mark-ring-max 1024)
(let ((usr-data (locate-user-emacs-file "data.el")))
(load custom-file)
(load usr-data))
(defalias #'yes-or-no-p #'y-or-n-p)
(setq fill-column 80
sentence-end-double-space nil)
(set-face-attribute 'variable-pitch nil :height 140 :family "Source Sans Pro")
(set-face-attribute 'fixed-pitch nil :height 140 :family "Source Code Pro")
(dolist (range '((#x2310 . #x26bf)
(#x26c0 . #x329f)
(#x1f000 . #x1fa9f)))
(set-fontset-font t range "Noto Color Emoji"))
(set-fontset-font t '(#x2e80 . #x9fff) "Noto Sans CJK JP")
;; mode line
(setq-default mode-line-format
'("%+"
mode-line-buffer-identification
mode-line-modes
"%5l↑%3c→%6i⇆"
(:eval (number-to-string (count-lines (point-min) (point-max))))
(:eval
(number-to-string (count-lines (point-min) (point-max))))
""
mode-line-percent-position))
@ -105,6 +78,18 @@
:ensure t
:config
(load-theme 'base16-atelier-cave t)
(dolist (face '(mode-line
mode-line-buffer-id
mode-line-emphasis
mode-line-highlight
mode-line-inactive
header-line
header-line-highlight))
(set-face-attribute face nil
:family "tewi2a"
:height 90
:weight 'normal
:width 'normal))
(set-face-attribute 'mode-line nil
:background "#0a0a0a"
:foreground "#92ebf0"))

View File

@ -25,3 +25,16 @@ function xqrebuild -d "Rebuild some of our srcpkgs"
xqdir
xbulk $argv 2>&1 | tee /tmp/xqrebuild.log | less +F
end
function xqupdate -d "Updates the srcpkg repository for use"
echo "This command must be done after you have updated."
echo "If you haven't yet, run `sudo xbps-install -Su'."
echo "Type 'ok' to continue, or anything else to exit."
if test (read) != "ok"
exit 1
end
xqdir
git pull
rm -rf $XBPS_MASTERDIR
./xbps-src binary-bootstrap
end

View File

@ -9,7 +9,7 @@ end
function xrsync -d "Upload voidlinux package repository"
rsync $argv -azvh --delete --progress \
"$XBPS_HOSTDIR"/binpkgs/ \
"$XBPS_HOSTDIR"/binpkgs/{*.{xbps,xbps.sig},*-repodata} \
"$_agw_secret_void_copy_dir"
end

View File

@ -1,3 +1,4 @@
# -*-Sh-*-
DEHYDRATED_USER="ssl"
DEHYDRATED_GROUP="www-data"
BASEDIR="/var/www/ssl"
@ -10,4 +11,3 @@ LOCKFILE="${BASEDIR}/lock"
CONTACT_EMAIL="marrub@greyserv.net"
CA="https://acme-v02.api.letsencrypt.org/directory"
CHALLENGETYPE="http-01"
# vim: syn=sh: