This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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";*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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 % ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"nodes": { | |
"cachix": { | |
"inputs": { | |
"devenv": [ | |
"devenv" | |
], | |
"flake-compat": [ | |
"devenv" | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eu | |
binary="$1" | |
with_strings="${2:-}" | |
strings=$(strings "$binary") | |
linking=$(ldd "$binary") | |
rpaths=$(readelf -d "$binary") |
OlderNewer