diff --git a/tldr/linux/gcrane-completion b/tldr/linux/gcrane-completion index d92d6a14..d630c851 100644 --- a/tldr/linux/gcrane-completion +++ b/tldr/linux/gcrane-completion @@ -19,7 +19,7 @@ source: https://github.com/tldr-pages/tldr.git - Load completions in your current shell session (bash/zsh): -`source <(gcrane completion bash/zsh)>` +`source <(gcrane completion bash/zsh)` - Load completions in your current shell session (fish): diff --git a/tldr/linux/grim b/tldr/linux/grim index 080e2c8e..0eebfcac 100644 --- a/tldr/linux/grim +++ b/tldr/linux/grim @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Screenshot a specific region: -`grim -g "{{, x}}"` +`grim -g "{{x_position}},{{y_position}} {{width}}x{{height}}"` - Select a specific region and screenshot it, (using slurp): diff --git a/tldr/linux/uci b/tldr/linux/uci new file mode 100644 index 00000000..d3297e4d --- /dev/null +++ b/tldr/linux/uci @@ -0,0 +1,37 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# uci + +> Manage OpenWrt configuration files. +> More information: . + +- Fetch a value: + +`uci get {{network.lan.ipaddr}}` + +- List all options and their values: + +`uci show {{network}}` + +- Set a value: + +`uci set {{config}}.{{section}}.{{option}}={{value}}` + +- Add a new section: + +`uci add {{config}} {{section}}` + +- Delete a section or value: + +`uci delete {{config}}.{{section}}.{{option}}` + +- Commit changes: + +`uci commit {{config}}` + +- Discard uncommitted changes: + +`uci revert {{config}}` diff --git a/tldr/linux/yakuake b/tldr/linux/yakuake new file mode 100644 index 00000000..b1ffdf40 --- /dev/null +++ b/tldr/linux/yakuake @@ -0,0 +1,37 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# yakuake + +> A drop-down terminal for KDE. +> More information: . + +- Start up Yakuake: + +`yakuake` + +- Toggle Yakuale visibility: + +`` + +- Toggle fullscreen mode: + +`` + +- Open a new tab: + +`` + +- Switch between tabs: + +`` + +- Create terminal splits: + +`` + +- Switch between splist: + +`{{|}}` diff --git a/tldr/osx/gcrane-completion b/tldr/osx/gcrane-completion index a70e60d0..0fe11582 100644 --- a/tldr/osx/gcrane-completion +++ b/tldr/osx/gcrane-completion @@ -19,7 +19,7 @@ source: https://github.com/tldr-pages/tldr.git - Load completions in your current shell session (bash/zsh): -`source <(gcrane completion bash/zsh)>` +`source <(gcrane completion bash/zsh)` - Load completions in your current shell session (fish): diff --git a/tldr/pulumi-stack b/tldr/pulumi-stack index 1e3b5b6c..01681ab2 100644 --- a/tldr/pulumi-stack +++ b/tldr/pulumi-stack @@ -12,9 +12,9 @@ source: https://github.com/tldr-pages/tldr.git `pulumi stack init {{stack_name}}` -- View the stack state: +- Show the stack state along with resource URNs: -`pulumi stack` +`pulumi stack --show-urns` - List stacks in the current project: