Compare commits
8 Commits
70da3a582d
...
b34a43897a
Author | SHA1 | Date | |
---|---|---|---|
b34a43897a | |||
bd18a20251 | |||
27b28e997b | |||
ee2730f757 | |||
8683fce4aa | |||
1875b87592 | |||
69753c2345 | |||
07fd321f94 |
55
matrix.fnl
Normal file
55
matrix.fnl
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
;; homogeneous matrix operations for 2d graphics
|
||||||
|
|
||||||
|
(local identity
|
||||||
|
[
|
||||||
|
1 0 0
|
||||||
|
0 1 0
|
||||||
|
0 0 1
|
||||||
|
])
|
||||||
|
|
||||||
|
(fn multiply-matrix [a b]
|
||||||
|
[
|
||||||
|
(+ (* (. a 1) (. b 1)) (* (. a 2) (. b 4)) (* (. a 3) (. b 7)))
|
||||||
|
(+ (* (. a 1) (. b 2)) (* (. a 2) (. b 5)) (* (. a 3) (. b 8)))
|
||||||
|
(+ (* (. a 1) (. b 3)) (* (. a 2) (. b 6)) (* (. a 3) (. b 9)))
|
||||||
|
|
||||||
|
(+ (* (. a 4) (. b 1)) (* (. a 5) (. b 4)) (* (. a 6) (. b 7)))
|
||||||
|
(+ (* (. a 4) (. b 2)) (* (. a 5) (. b 5)) (* (. a 6) (. b 8)))
|
||||||
|
(+ (* (. a 4) (. b 3)) (* (. a 5) (. b 6)) (* (. a 6) (. b 9)))
|
||||||
|
|
||||||
|
(+ (* (. a 7) (. b 1)) (* (. a 8) (. b 4)) (* (. a 9) (. b 7)))
|
||||||
|
(+ (* (. a 7) (. b 2)) (* (. a 8) (. b 5)) (* (. a 9) (. b 8)))
|
||||||
|
(+ (* (. a 7) (. b 3)) (* (. a 8) (. b 6)) (* (. a 9) (. b 9)))
|
||||||
|
])
|
||||||
|
|
||||||
|
(fn scale [matrix x y]
|
||||||
|
(let [scale [
|
||||||
|
x 0 0
|
||||||
|
0 y 0
|
||||||
|
0 0 1]]
|
||||||
|
(multiply-matrix matrix scale)))
|
||||||
|
|
||||||
|
(fn translate [matrix x y]
|
||||||
|
(let [translation [
|
||||||
|
1 0 x
|
||||||
|
0 1 y
|
||||||
|
0 0 1]]
|
||||||
|
(multiply-matrix matrix translation)))
|
||||||
|
|
||||||
|
(fn rotate [matrix rad]
|
||||||
|
(let [sin (math.sin rad)
|
||||||
|
cos (math.cos rad)
|
||||||
|
rotation [
|
||||||
|
cos (- sin) 0
|
||||||
|
sin cos 0
|
||||||
|
0 0 1
|
||||||
|
]]
|
||||||
|
(multiply-matrix matrix rotation)))
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
: identity
|
||||||
|
: scale
|
||||||
|
: translate
|
||||||
|
: rotate
|
||||||
|
}
|
58
module.nix
Normal file
58
module.nix
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
{
|
||||||
|
systemd.services."eufon" = {
|
||||||
|
wants = [
|
||||||
|
"systemd-machined.service"
|
||||||
|
"accounts-daemon.service"
|
||||||
|
"systemd-udev-settle.service"
|
||||||
|
"dbus.socket"
|
||||||
|
];
|
||||||
|
aliases = [ "display-manager.service" ];
|
||||||
|
after = [
|
||||||
|
"rc-local.service"
|
||||||
|
"systemd-machined.service"
|
||||||
|
"systemd-user-sessions.service"
|
||||||
|
"getty@tty2.service"
|
||||||
|
"plymouth-quit.service"
|
||||||
|
"plymouth-start.service"
|
||||||
|
"systemd-logind.service"
|
||||||
|
"systemd-udev-settle.service"
|
||||||
|
];
|
||||||
|
conflicts = [
|
||||||
|
"getty@tty2.service"
|
||||||
|
"plymouth-quit.service"
|
||||||
|
];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
serviceConfig =
|
||||||
|
let run-eufon = pkgs.writeScript "run-eufon" ''
|
||||||
|
#!${pkgs.bash}/bin/bash
|
||||||
|
source ${config.system.build.setEnvironment}
|
||||||
|
${pkgs.dbus}/bin/dbus-run-session /home/dan/src/eufon/run.sh
|
||||||
|
systemd-cat echo "dbus-run-session $?"
|
||||||
|
'';
|
||||||
|
in {
|
||||||
|
WorkingDirectory = "/home/dan/src/eufon";
|
||||||
|
TTYPath = "/dev/tty2";
|
||||||
|
TTYReset = "yes";
|
||||||
|
TTYVHangup = "yes";
|
||||||
|
TTYVTDisallocate = "yes";
|
||||||
|
PAMName = "login";
|
||||||
|
StandardInput = "tty";
|
||||||
|
StandardError = "journal";
|
||||||
|
StandardOutput = "journal";
|
||||||
|
User = "dan";
|
||||||
|
ExecStart = run-eufon;
|
||||||
|
Restart = "always";
|
||||||
|
};
|
||||||
|
environment = {
|
||||||
|
NIX_PATH = "nixpkgs=${<nixpkgs>}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
git
|
||||||
|
];
|
||||||
|
networking.networkmanager.enable = true;
|
||||||
|
services.logind.extraConfig = ''
|
||||||
|
HandlePowerKey=ignore
|
||||||
|
'';
|
||||||
|
}
|
59
pinephone.nix
Normal file
59
pinephone.nix
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
# configuration.nix contains settings applicable to _my_ pinephone
|
||||||
|
# pinephone.nix contains settings applicable to eufon on pinephones.
|
||||||
|
# module.nix contains settings applicable to eufon generally
|
||||||
|
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
powerManagement = {
|
||||||
|
enable = true;
|
||||||
|
cpuFreqGovernor = "ondemand";
|
||||||
|
};
|
||||||
|
mobile.boot.stage-1.firmware = [
|
||||||
|
config.mobile.device.firmware
|
||||||
|
];
|
||||||
|
hardware.sensor.iio.enable = true;
|
||||||
|
hardware.firmware = [ config.mobile.device.firmware ];
|
||||||
|
|
||||||
|
services.fwupd = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages =
|
||||||
|
let refresh-bootfs = (import ./refresh-bootfs.nix { inherit config pkgs lib; });
|
||||||
|
in with pkgs; [
|
||||||
|
dtc
|
||||||
|
file
|
||||||
|
refresh-bootfs
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.etc."fwupd/remotes.d/testing.conf" = {
|
||||||
|
mode = "0644";
|
||||||
|
text = ''
|
||||||
|
[fwupd Remote]
|
||||||
|
|
||||||
|
Enabled=true
|
||||||
|
Title=Linux Vendor Firmware Service (testing)
|
||||||
|
MetadataURI=https://cdn.fwupd.org/downloads/firmware-testing.xml.gz
|
||||||
|
ReportURI=https://fwupd.org/lvfs/firmware/report
|
||||||
|
OrderBefore=lvfs,fwupd
|
||||||
|
AutomaticReports=false
|
||||||
|
ApprovalRequired=false
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
nixpkgs = {
|
||||||
|
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||||
|
"pine64-pinephone-firmware"
|
||||||
|
];
|
||||||
|
|
||||||
|
};
|
||||||
|
# boot.loader.generic-extlinux-compatible.enable = lib.mkForce true;
|
||||||
|
hardware.opengl = {
|
||||||
|
enable = true;
|
||||||
|
driSupport = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
143
rc.fnl
143
rc.fnl
@ -1,6 +1,7 @@
|
|||||||
(local { : GdkPixbuf } (require :lgi))
|
|
||||||
(local { : view } (require :fennel))
|
(local { : view } (require :fennel))
|
||||||
|
|
||||||
|
(local texture (require :texture))
|
||||||
|
(local matrix (require :matrix))
|
||||||
(local socket-repl (require :socket-repl))
|
(local socket-repl (require :socket-repl))
|
||||||
|
|
||||||
(let [repl-socket-name
|
(let [repl-socket-name
|
||||||
@ -12,49 +13,9 @@
|
|||||||
)]
|
)]
|
||||||
(socket-repl.start repl-socket-name))
|
(socket-repl.start repl-socket-name))
|
||||||
|
|
||||||
|
(fn resize-wayland-backend [output]
|
||||||
(fn texture-from-file [renderer filename]
|
(when (string.find (output:name) "^WL-")
|
||||||
(let [pixels
|
(output:set_mode 360 720 0)))
|
||||||
(let [(buf err) (GdkPixbuf.Pixbuf.new_from_file filename)]
|
|
||||||
(if (not buf) (print :err err))
|
|
||||||
buf)]
|
|
||||||
(renderer:texture_from_pixels
|
|
||||||
pixels.rowstride
|
|
||||||
pixels.width
|
|
||||||
pixels.height
|
|
||||||
(pixels:get_pixels))))
|
|
||||||
|
|
||||||
(kiwmi:on
|
|
||||||
"output"
|
|
||||||
(fn [output]
|
|
||||||
(output:set_mode 360 720 0)
|
|
||||||
(let [r (output:renderer)
|
|
||||||
kill (texture-from-file r "close-window.png")
|
|
||||||
launch (texture-from-file r "launcher.png")
|
|
||||||
spinner (texture-from-file r "carousel.png")]
|
|
||||||
(output:on "render"
|
|
||||||
(fn [{: output : renderer}]
|
|
||||||
(let [bar-height 40
|
|
||||||
matrix [1 0 0
|
|
||||||
0 1 0
|
|
||||||
0 0 1]]
|
|
||||||
(renderer:draw_rect :#00000077
|
|
||||||
0 (- 720 bar-height)
|
|
||||||
690 360 bar-height)
|
|
||||||
(renderer:draw_texture
|
|
||||||
kill
|
|
||||||
matrix
|
|
||||||
30 (- 720 bar-height)
|
|
||||||
0.7)
|
|
||||||
(renderer:draw_texture
|
|
||||||
launch matrix
|
|
||||||
(- 180 (/ bar-height 2)) (- 720 bar-height)
|
|
||||||
0.7)
|
|
||||||
(renderer:draw_texture
|
|
||||||
spinner
|
|
||||||
matrix
|
|
||||||
(- 360 30 bar-height) (- 720 bar-height)
|
|
||||||
0.7)))))))
|
|
||||||
|
|
||||||
(fn kill-window []
|
(fn kill-window []
|
||||||
(print "DIE")
|
(print "DIE")
|
||||||
@ -68,25 +29,95 @@
|
|||||||
(print "spin spin sugar")
|
(print "spin spin sugar")
|
||||||
true)
|
true)
|
||||||
|
|
||||||
|
(fn placements [output]
|
||||||
|
(let [(width height) (output:size)
|
||||||
|
bar-height (/ height 15)]
|
||||||
|
{
|
||||||
|
|
||||||
|
:application {
|
||||||
|
:x 0
|
||||||
|
:y 0
|
||||||
|
:w width
|
||||||
|
:h (- height (* bar-height 1.1))
|
||||||
|
}
|
||||||
|
:bar {
|
||||||
|
:x 0
|
||||||
|
:y (- height (* bar-height 1.1))
|
||||||
|
:w width
|
||||||
|
:h (* bar-height 1.1)
|
||||||
|
}
|
||||||
|
:kill {
|
||||||
|
:x (- (* width 0.25) (/ bar-height 2))
|
||||||
|
:y (- height bar-height)
|
||||||
|
:w bar-height
|
||||||
|
:h bar-height
|
||||||
|
:on-press kill-window
|
||||||
|
}
|
||||||
|
:launch {
|
||||||
|
:x (- (* width 0.5) (/ bar-height 2))
|
||||||
|
:y (- height bar-height)
|
||||||
|
:w bar-height
|
||||||
|
:h bar-height
|
||||||
|
:on-press launch
|
||||||
|
}
|
||||||
|
:overview {
|
||||||
|
:x (- (* width 0.75) (/ bar-height 2))
|
||||||
|
:y (- height bar-height)
|
||||||
|
:w bar-height
|
||||||
|
:h bar-height
|
||||||
|
:on-press carousel
|
||||||
|
}
|
||||||
|
}))
|
||||||
|
|
||||||
|
(kiwmi:on
|
||||||
|
"output"
|
||||||
|
(fn [output]
|
||||||
|
(resize-wayland-backend output)
|
||||||
|
(let [(width height) (output:size)
|
||||||
|
r (output:renderer)
|
||||||
|
kill (texture.from-file r "close-window.png")
|
||||||
|
launch (texture.from-file r "launcher.png")
|
||||||
|
spinner (texture.from-file r "carousel.png")]
|
||||||
|
(output:on "render"
|
||||||
|
(fn [{: output : renderer}]
|
||||||
|
(let [buttons (placements output)]
|
||||||
|
(renderer:draw_rect :#77000077
|
||||||
|
buttons.bar.x buttons.bar.y
|
||||||
|
buttons.bar.w buttons.bar.h)
|
||||||
|
(renderer:draw_texture
|
||||||
|
kill
|
||||||
|
matrix.identity
|
||||||
|
buttons.kill.x buttons.kill.y
|
||||||
|
0.7)
|
||||||
|
(renderer:draw_texture
|
||||||
|
launch
|
||||||
|
matrix.identity
|
||||||
|
buttons.launch.x buttons.launch.y
|
||||||
|
0.7)
|
||||||
|
(renderer:draw_texture
|
||||||
|
spinner
|
||||||
|
matrix.identity
|
||||||
|
buttons.overview.x buttons.overview.y
|
||||||
|
0.7)))))))
|
||||||
|
|
||||||
|
|
||||||
(let [cursor (kiwmi:cursor)]
|
(let [cursor (kiwmi:cursor)]
|
||||||
(cursor:on "button_down"
|
(cursor:on "button_down"
|
||||||
(fn [button]
|
(fn [button]
|
||||||
(let [(x y) (cursor:pos)]
|
(let [(x y) (cursor:pos)]
|
||||||
(if (> y 680)
|
(each [name attribs (pairs (placements (kiwmi:active_output)))]
|
||||||
(if (< x 70)
|
(if (and
|
||||||
(kill-window)
|
(<= attribs.x x)
|
||||||
(and (< 150 x) (< x 190))
|
(< x (+ attribs.x attribs.w))
|
||||||
(launch)
|
(<= attribs.y y)
|
||||||
(and (< 285 x) (< x 330))
|
(< y (+ attribs.y attribs.h)))
|
||||||
(carousel)
|
(if attribs.on-press (attribs.on-press))))))))
|
||||||
false))))))
|
|
||||||
|
|
||||||
|
|
||||||
(kiwmi:on "view"
|
(kiwmi:on "view"
|
||||||
(fn [view]
|
(fn [view]
|
||||||
(let [(w h) (: (kiwmi:active_output) :size)]
|
(let [geom (placements (kiwmi:active_output))]
|
||||||
(view:resize w h)
|
(view:resize geom.application.w geom.application.h)
|
||||||
(view:move 0 0))
|
(view:move geom.application.x geom.application.y))
|
||||||
(view:focus)
|
(view:focus)
|
||||||
(view:show)
|
(view:show)
|
||||||
(view:on "request_move" #(view:imove))
|
(view:on "request_move" #(view:imove))
|
||||||
|
43
refresh-bootfs.nix
Normal file
43
refresh-bootfs.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
# nixos/mobile-nixos don't currently (June 2022) update the kernel and
|
||||||
|
# initrd used by the bootloader when nixos-rebuild is run. This is a
|
||||||
|
# workaround until they do. Mount your boot filesystem somewhere
|
||||||
|
# and run "refresh-bootfs /path/to/mounted/bootfs" after switching
|
||||||
|
# configuration
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (config.mobile.outputs) recovery stage-0;
|
||||||
|
inherit (pkgs) writeScriptBin buildPackages imageBuilder runCommandNoCC;
|
||||||
|
|
||||||
|
kernel = stage-0.mobile.boot.stage-1.kernel.package;
|
||||||
|
kernel_file = "${kernel}/${if kernel ? file then kernel.file else pkgs.stdenv.hostPlatform.linux-kernel.target}";
|
||||||
|
# bootscr = runCommandNoCC "boot.scr" {
|
||||||
|
# nativeBuildInputs = [
|
||||||
|
# buildPackages.ubootTools
|
||||||
|
# ];
|
||||||
|
# } ''
|
||||||
|
# mkimage -C none -A arm64 -T script -d {bootcmd} $out
|
||||||
|
# '';
|
||||||
|
|
||||||
|
in writeScriptBin "refresh-bootfs" ''
|
||||||
|
#!${pkgs.runtimeShell}
|
||||||
|
test -n "$1" || exit 1
|
||||||
|
test -d "$1" || exit 1
|
||||||
|
cd $1
|
||||||
|
test -f ./boot.scr || exit 1
|
||||||
|
mkdir -vp mobile-nixos/{boot,recovery}
|
||||||
|
(
|
||||||
|
cd mobile-nixos/boot
|
||||||
|
cp -v ${stage-0.mobile.outputs.initrd} stage-1
|
||||||
|
cp -v ${kernel_file} kernel
|
||||||
|
cp -vr ${kernel}/dtbs dtbs
|
||||||
|
)
|
||||||
|
(
|
||||||
|
cd mobile-nixos/recovery
|
||||||
|
cp -v ${recovery.mobile.outputs.initrd} stage-1
|
||||||
|
cp -v ${kernel_file} kernel
|
||||||
|
cp -vr ${kernel}/dtbs dtbs
|
||||||
|
)
|
||||||
|
# cp -v {bootscr} ./boot.scr
|
||||||
|
''
|
@ -5,5 +5,11 @@ in (p.overrideAttrs (o:{
|
|||||||
shellHook = ''
|
shellHook = ''
|
||||||
export LUA_PATH=`lua -e 'print(package.path)'`
|
export LUA_PATH=`lua -e 'print(package.path)'`
|
||||||
export LUA_CPATH=`lua -e 'print(package.cpath)'`
|
export LUA_CPATH=`lua -e 'print(package.cpath)'`
|
||||||
|
# this is a shell function mostly so that I can comment it out
|
||||||
|
# to experiment with starting sway or tinywl or something else
|
||||||
|
# to see how they behave if kiwmi is being weird
|
||||||
|
start_eufon(){
|
||||||
|
kiwmi -c init.lua;
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
})).override { debug = true; }
|
})).override { debug = true; }
|
||||||
|
14
texture.fnl
Normal file
14
texture.fnl
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
(local { : GdkPixbuf } (require :lgi))
|
||||||
|
|
||||||
|
(fn from-file [renderer filename]
|
||||||
|
(let [pixels
|
||||||
|
(let [(buf err) (GdkPixbuf.Pixbuf.new_from_file filename)]
|
||||||
|
(if (not buf) (print :err err))
|
||||||
|
buf)]
|
||||||
|
(renderer:texture_from_pixels
|
||||||
|
pixels.rowstride
|
||||||
|
pixels.width
|
||||||
|
pixels.height
|
||||||
|
(pixels:get_pixels))))
|
||||||
|
|
||||||
|
{ : from-file }
|
Loading…
Reference in New Issue
Block a user