Skip to content

Instantly share code, notes, and snippets.

View gabyx's full-sized avatar
👌
More Single Layer of Abstraction please ...

Gabriel Nützi gabyx

👌
More Single Layer of Abstraction please ...
View GitHub Profile
configuration {
/* modes: "window,drun,run,ssh";*/
/* font: "mono 12";*/
/* location: 0;*/
/* yoffset: 0;*/
/* xoffset: 0;*/
/* fixed-num-lines: true;*/
/* show-icons: false;*/
/* terminal: "rofi-sensible-terminal";*/
/* ssh-client: "ssh";*/
/**
* rofi -dump-theme output.
* Rofi version: 1.7.5
**/
* {
alternate-urgent-background: var(lightbg);
alternate-active-foreground: var(blue);
selected-active-background: var(blue);
selected-urgent-foreground: var(background);
fg2: rgba ( 150, 150, 150, 100 % );
@gabyx
gabyx / flake.lock (before)
Last active March 27, 2025 16:24
flake.nix (before)
{
"nodes": {
"cachix": {
"inputs": {
"devenv": [
"devenv"
],
"flake-compat": [
"devenv"
],
@gabyx
gabyx / analyze-binary.sh
Created April 22, 2025 06:59
Check Nix paths in executable
#!/usr/bin/env bash
set -eu
binary="$1"
with_strings="${2:-}"
strings=$(strings "$binary")
linking=$(ldd "$binary")
rpaths=$(readelf -d "$binary")