From ca9fd6eb3ad1aabc084a1b308a7a819852c9d206 Mon Sep 17 00:00:00 2001 From: tomit4 Date: Sat, 26 Feb 2022 11:56:46 -0800 Subject: [PATCH] added ranger configuration files --- ranger/rc.conf | 2 + ranger/rifle.conf | 284 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 286 insertions(+) create mode 100644 ranger/rc.conf create mode 100644 ranger/rifle.conf diff --git a/ranger/rc.conf b/ranger/rc.conf new file mode 100644 index 00000000..5d88e294 --- /dev/null +++ b/ranger/rc.conf @@ -0,0 +1,2 @@ +set preview_images true +set preview_images_method kitty diff --git a/ranger/rifle.conf b/ranger/rifle.conf new file mode 100644 index 00000000..b347dadc --- /dev/null +++ b/ranger/rifle.conf @@ -0,0 +1,284 @@ +# vim: ft=cfg +# +# This is the configuration file of "rifle", ranger's file executor/opener. +# Each line consists of conditions and a command. For each line the conditions +# are checked and if they are met, the respective command is run. +# +# Syntax: +# , , ... = command +# +# The command can contain these environment variables: +# $1-$9 | The n-th selected file +# $@ | All selected files +# +# If you use the special command "ask", rifle will ask you what program to run. +# +# Prefixing a condition with "!" will negate its result. +# These conditions are currently supported: +# match | The regexp matches $1 +# ext | The regexp matches the extension of $1 +# mime | The regexp matches the mime type of $1 +# name | The regexp matches the basename of $1 +# path | The regexp matches the absolute path of $1 +# has | The program is installed (i.e. located in $PATH) +# env | The environment variable "variable" is non-empty +# file | $1 is a file +# directory | $1 is a directory +# number | change the number of this command to n +# terminal | stdin, stderr and stdout are connected to a terminal +# X | A graphical environment is available (darwin, Xorg, or Wayland) +# +# There are also pseudo-conditions which have a "side effect": +# flag | Change how the program is run. See below. +# label