Skip to content

Instantly share code, notes, and snippets.

View titonbarua's full-sized avatar
🐢
Happy, relaxed and focused.

Titon Barua titonbarua

🐢
Happy, relaxed and focused.
View GitHub Profile
@yogthos
yogthos / core.cljs
Last active February 18, 2025 04:46
Gjs ClojureScript example
(ns gjs-example.core)
(defn main []
(set! (-> js/imports .-gi .-versions .-Gtk) "3.0")
(let [Gtk (doto (-> js/imports .-gi .-Gtk) (.init nil))
window (Gtk.Window.
(clj->js
{:type (-> Gtk .-WindowType .-TOPLEVEL)
:title "A default title"
:default_width 300