- Copy the contents of kdialog to
/usr/local/bin/kdialog - Copy the contents of
chrome_chooser.pyto~/.config/ranger/plugins/chrome_chooser.py - Optionally map appropriately
- Run chrome with
XDG_CURRENT_DESKTOP=KDE
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
| ({ lib, newScope, stdenv, pkgs }: let | |
| # nicer aliases | |
| derive = stdenv.mkDerivation; | |
| concat = builtins.concatStringsSep " "; | |
| # vendored libuvc: don't build, just make sources available | |
| libuvc-src = derive { | |
| name = "libuvc-src"; | |
| # using fetchgit instead fetchFromGitHub because |
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 | |
| # TODO: Look at nixpkgs/pkgs/build-support/setup-hooks/auto-patchelf.sh | |
| # https://ms-vsliveshare.gallery.vsassets.io/_apis/public/gallery/publisher/MS-vsliveshare/extension/vsliveshare/0.3.423/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage | |
| set -eu | |
| TOOLS="patchelf xsel" | |
| DEPS="utillinux.out openssl.out icu zlib curl.out lttng-ust libsecret libkrb5" |
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
| { config, lib, pkgs, ...}: | |
| with lib; | |
| let | |
| cfg = config.services.batteryNotifier; | |
| in { | |
| options = { | |
| services.batteryNotifier = { | |
| enable = mkOption { |