From c574e4cba6757405012ceb84d526b881be3b4ea1 Mon Sep 17 00:00:00 2001 From: Mastermindzh Date: Tue, 3 May 2022 14:43:02 +0200 Subject: [PATCH] remove ranger --- README.md | 3 +- config/ranger/rc.conf | 32 -------- config/ranger/rifle.conf | 84 --------------------- config/ranger/scope.sh | 159 --------------------------------------- dependencies/pacman.txt | 1 - install.sh | 1 - 6 files changed, 2 insertions(+), 278 deletions(-) delete mode 100644 config/ranger/rc.conf delete mode 100644 config/ranger/rifle.conf delete mode 100755 config/ranger/scope.sh diff --git a/README.md b/README.md index 06fca4b..5d58225 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ New version as of dec 2021: [![dotfiles](media/dotfiles4.jpg)](https://raw.githubusercontent.com/Mastermindzh/dotfiles/master/media/dotfiles4.jpg) Older versions: + - [dotfiles](media/dotfiles3.png) - [dotfiles](media/dotfiles.png) - [dotfiles2](media/dotfiles2.png) @@ -25,7 +26,7 @@ Older versions: | Terminal | xfce4-terminal | | Editor | nano | | Code editor | vscode / jetbrains stuff | -| Browser | Chromium | +| Browser | Firefox | | File manager | If I have to use one ... Nautilus | | Music | Tidal through [Tidal-hifi](https://github.com/Mastermindzh/tidal-hifi) | | | | diff --git a/config/ranger/rc.conf b/config/ranger/rc.conf deleted file mode 100644 index aa6b897..0000000 --- a/config/ranger/rc.conf +++ /dev/null @@ -1,32 +0,0 @@ -set preview_images true -set confirm_on_delete true -set column_ratios 1,3,4 -set viewmode miller -set unicode_ellipsis true - -set preview_files true -set preview_directories true -set collapse_preview true - -# git stuff -set vcs_aware false -set vcs_backend_git enabled - -# Which files should be hidden? (regular expression) -set hidden_filter ^\.|\.(?:pyc|pyo|bak|swp)$|^lost\+found$|^__(py)?cache__$ - -# Show hidden files? You can toggle this by typing 'zh' -set show_hidden false - -# Draw borders around columns? (separators, outline, both, or none) -# Separators are vertical lines between columns. -# Outline draws a box around all the columns. -# Both combines the two. -set draw_borders both - -# KEY config -map delete -map quit -map copy -map cut -map paste \ No newline at end of file diff --git a/config/ranger/rifle.conf b/config/ranger/rifle.conf deleted file mode 100644 index cfe85b4..0000000 --- a/config/ranger/rifle.conf +++ /dev/null @@ -1,84 +0,0 @@ -# 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 | $DISPLAY is not empty (i.e. Xorg runs) -# -# There are also pseudo-conditions which have a "side effect": -# flag | Change how the program is run. See below. -# label