Extracted from: https://github.com/kurokirasama/nushell_sublime_syntax with the fix from kurokirasama/nushell_sublime_syntax#4
Extracted from: https://github.com/kurokirasama/nushell_sublime_syntax with the fix from kurokirasama/nushell_sublime_syntax#4
| # Search winget, Scoop and Chocolatey simultaneously in Windows Terminal | |
| function pkg([string] $name) { | |
| function Build-SearchCmd([string] $cmd) { | |
| "C:\Windows\system32\cmd.exe", "/C", (@("ECHO ^> $cmd", "$cmd", "PAUSE") -join ' & ') | |
| } | |
| wt split-pane --vertical --size 0.5 (Build-SearchCmd "winget search $name") `; ` | |
| split-pane --horizontal --size 0.66 (Build-SearchCmd "scoop search $name") `; ` | |
| split-pane --horizontal --size 0.5 (Build-SearchCmd "choco search $name") `; ` | |
| focus-pane --target 0 |
| { | |
| services.displayManager.extraSessionFilePackages = | |
| let gnome-flashback-xmonad = {wmName, wmLabel, wmCommand}: pkgs.callPackage ({ stdenv, gnome3, bash, haskellPackages, glib, wrapGAppsHook }: stdenv.mkDerivation { | |
| name = "gnome-flashback-${wmName}"; | |
| buildInputs = [ gnome3.gnome-flashback gnome3.gnome-panel bash haskellPackages.xmonad glib ]; | |
| nativeBuildInputs = [ wrapGAppsHook ]; | |
| unpackPhase = "true"; |
| use nix | |
| layout_nix_pipenv() { | |
| if [[ ! -f Pipfile ]]; then | |
| log_error 'No Pipfile found. Use `pipenv` to create a Pipfile first.' | |
| exit 2 | |
| fi | |
| # Use ram as virtualenv storage |
| [ | |
| { | |
| "netflix_collection_number": 1, | |
| "netflix_episode_number": 1, | |
| "title": "If I Were You", | |
| "series_number": 285, | |
| "season": 11, | |
| "season_number": 28, | |
| "air_date": "2007-01-24" | |
| }, |
| Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
| This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
| usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
| Getting help: | |
| -h — print basic options | |
| -h long — print more options | |
| -h full — print all options (including all format and codec specific options, very long) |
| /* Getopt for GNU. | |
| NOTE: getopt is now part of the C library, so if you don't know what | |
| "Keep this file name-space clean" means, talk to drepper@gnu.org | |
| before changing it! | |
| Copyright (C) 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001 | |
| Free Software Foundation, Inc. | |
| This file is part of the GNU C Library. | |
| The GNU C Library is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU Lesser General Public |