commit a26076b864fae71cd7d6d8e12f67fb9d7a9d82fe Author: Joerg Elfring Date: Tue Jun 16 22:47:23 2020 +0200 ALL NEW DOTFILES! No more branches and no more Makefiles diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76203c5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +configDots/ranger/bookmarks +configDots/ranger/history +configDots/ranger/tagged + +simpleDots/vim/vimplug-plugins +!simpleDots/vim/vimplug-plugins/.gitkeep diff --git a/README.md b/README.md new file mode 100644 index 0000000..281463e --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# dotfiles +Theese are my dotfiles... +Credits go to many people, especially Jess Frazelle. + +## VIM Plugins +The vim plugins need to be installed with :PlugInstall diff --git a/Setup.sh b/Setup.sh new file mode 100755 index 0000000..6ecd39f --- /dev/null +++ b/Setup.sh @@ -0,0 +1,84 @@ +#!/bin/bash +################################################################### +## +# Setup my dotfiles +# + + +## Make sure this script is executed from the directory where it lives +olddir=$(pwd) +cd $(dirname $0) + +## Some directories should exist before we start +mkdir --parents ~/.config +mkdir --parents ~/.local/share/applications + +## Take all files (or dirs) in simpleDots, +## delete them if they exist as a dotfile in ~/ or in ~/.config/ +## and recreate them as a link to this repo. +echo "Recreating simpledots..." +for target in $(find $(pwd)/simpleDots -maxdepth 1 -mindepth 1 ! -name "*.swp" ! -name "*+*") +do + basetarget=$(basename $target) + echo " $basetarget" + rm --force --recursive ~/.$basetarget + rm --force --recursive ~/.config/$basetarget + ln --symbolic --no-dereference --force $target ~/.$basetarget +done + +### Do the same for configDots +echo "Recreating configDots..." +for target in $(find $(pwd)/configDots -maxdepth 1 -mindepth 1 ! -name "*.swp" ! -name "*+*") +do + basetarget=$(basename $target) + echo " $basetarget" + rm --force --recursive ~/.$basetarget + rm --force --recursive ~/.config/$basetarget + ln --symbolic --no-dereference --force $target ~/.config/$basetarget +done + +### ... and for desktopfiles +echo "Recreating desktopfiles..." +for target in $(find $(pwd)/desktopfiles -maxdepth 1 -mindepth 1 ! -name "*.swp" ! -name "*+*") +do + basetarget=$(basename $target) + echo " $basetarget" + rm --force --recursive ~/.local/share/applications/$basetarget + ln --symbolic --no-dereference --force $target ~/.local/share/applications/$basetarget +done + +## So far, we ignored files containing the + character. Now, +## if we got an option passed to the script, we will check if there is +## a dot file with +option as a suffix. +## If we find one, we will replace the original link we create before with a +## new link to this file. +if [ $# == 1 ] +then + echo "Recreating simpledots for option $1..." + for target in $(find $(pwd)/simpleDots -maxdepth 1 -mindepth 1 ! -name "*.swp" -name "*+$1") + do + basetarget=$(echo $(basename $target) | cut --delimiter="+" --field="1") + echo " $basetarget" + rm --force --recursive ~/.$basetarget + ln --symbolic --no-dereference --force $target ~/.$basetarget + done + echo "Recreating configDots for option $1..." + for target in $(find $(pwd)/configDots -maxdepth 1 -mindepth 1 ! -name "*.swp" -name "*+$1") + do + basetarget=$(echo $(basename $target) | cut --delimiter="+" --field="1") + echo " $basetarget" + rm --force --recursive ~/.config/$basetarget + ln --symbolic --no-dereference --force $target ~/.config/$basetarget + done + echo "Recreating desktopfiles for option $1..." + for target in $(find $(pwd)/desktopfiles -maxdepth 1 -mindepth 1 ! -name "*.swp" -name "*+$1") + do + basetarget=$(echo $(basename $target) | cut --delimiter="+" --field="1") + echo " $basetarget" + rm --force --recursive ~/.local/share/applications/$basetarget + ln --symbolic --no-dereference --force $target ~/.local/share/applications/$basetarget + done +fi + + +cd $olddir diff --git a/bootstrapArchLinux.org b/bootstrapArchLinux.org new file mode 100644 index 0000000..7b5c9e2 --- /dev/null +++ b/bootstrapArchLinux.org @@ -0,0 +1,189 @@ +#+TITLE: Arch Linux Installation +* Preparation +- Download Arch Linux ISO image +- Write it to an usb drive with +#+BEGIN_SRC + $ dd if=[ARCH-LINUX.iso] of=[/path/to/usbdrive] +#+END_SRC +- Boot the computer from this stick + +* Prepare the disk +We will partition the disk drive for UEFI boot. +The root disk will be encrypted, /boot will reside inside the unencrypted EFI service partition. +The diskdevice is /dev/sda. + +** Partition the disk +- Write some zeros to the disk to make sure there is no bootsector left. +#+BEGIN_SRC + $ dd if=/dev/zero of=/dev/sda +#+END_SRC +- Abort after a few seconds. +- Create partitions and format them +#+BEGIN_SRC + $ gdisk /dev/sda + | o [ENTER] to create a new empty GUID partition table (GPT) + | y [ENTER] to confirm + | + | n [ENTER] add a new partition + | [ENTER] to select default partition number of 1 + | [ENTER] to select default start at first sector + | +512M [ENTER] make that size partition for booting + | ef00 [ENTER] EFI partition type + | + | n [ENTER] add a new partition + | [ENTER] to select default partition number of 2 + | [ENTER] to select default start at first sector + | +60G [ENTER] allocate whatever size wanted for linux + | + | w [ENTER] Write changes + | y [ENTER] confirm +#+END_SRC + +** Encrypt the root partition +- Create and open the root partition +#+BEGIN_SRC + $ cryptsetup luksFormat -v -s 512 -h sha512 /dev/sda2 + $ cryptsetup open /dev/sda2 cryptroot +#+END_SRC +- Format with ext4 +#+BEGIN_SRC + $ mkfs.ext4 /dev/mapper/cryptroot +#+END_SRC +- Mount the encrypted volume +#+BEGIN_SRC + $ mount /dev/mapper/cryptroot /mnt +#+END_SRC + +** Mount the /boot partition +#+BEGIN_SRC + $ mkfs.fat -F32 /dev/sda1 + $ mkdir /mnt/boot + $ mount /dev/sda1 /mnt/boot +#+END_SRC + +* Install the base-system +- Connect to wifi +#+BEGIN_SRC + $ wifi-menu +#+END_SRC +- Select a nearby (possibly faster) mirror by editing /etc/pacman.d/mirrorlist +- Install the base-system +#+BEGIN_SRC + $ pacstrap /mnt base base-devel dialog openssl-1.0 git intel-ucode \ + wpa_supplicant puppet linux linux-firmware vi netctl +#+END_SRC +- Generate fstab for the new system +#+BEGIN_SRC + $ genfstab -pU /mnt >> /mnt/etc/fstab +#+END_SRC + +* Configure the new system +- Chroot into the new system +#+BEGIN_SRC + $ arch-chroot /mnt /bin/bash +#+END_SRC +- Set the hostname +#+BEGIN_SRC + $ echo MYHOSTNAME > /etc/hostname +#+END_SRC +- Edit /etc/vconsole.conf to set keyboard and font +#+BEGIN_SRC + $ vi /etc/vconsole.conf + FONT=latarcyrheb-sun32 + KEYMAP=de +#+END_SRC +The FONT setting is optional. latarcyrheb-sun32 is useful for small hidpi devices like GPD Pocket. +- Add encryption components to initramfs +#+BEGIN_SRC + $ vi /etc/mkinitcpio.conf + ... + HOOKS=(base udev autodetect keyboard keymap consolefont modconf block encrypt + filesystems fsck) + ... + $ mkinitcpio -P +#+END_SRC +- Install bootloader +#+BEGIN_SRC + $ bootctl install +#+END_SRC +- Configure the bootloader +#+BEGIN_SRC + $ vi /boot/loader/loader.conf + default arch + auto-firmware no + timeout 0 + console-mode 2 + editor no +#+END_SRC +- Configure the bootloader entry +#+BEGIN_SRC + $ blkid | grep sda2 | cut -d \" -f 2 > /boot/loader/entries/arch.conf + $ vi /boot/loader/arch.conf + title Arch Linux + linux /vmlinuz-linux + initrd /intel-ucode.img + initrd /initramfs-linux.img + options cryptdevice=UUID=[DEVICE-UUID]:cryptroot root=/dev/mapper/cryptroot rw + fbcon=rotate:1 +#+END_SRC +DEVICE-UUID is the string we added with the first command. +fbcon=rotate:1 rotates the display. This is ONLY NEEDED on device like GPD Pocket. + +* More configuration +- Perform basic systemconfiguration +#+BEGIN_SRC + $ git clone https://github.com/elfrinjo/dotfiles + $ cd dotfiles + $ ./Setup.sh + $ cd sysconfig_arch + $ puppet apply --modulepath ./modules cfg_base.pp +#+END_SRC +- Setup.sh can take options to replace some configfiles. Options are: +| Option | Description | +|--------+----------------------------------------| +| gpdp2 | Some differences for the GPD Pocket II | +| | | +- Change the root password +#+BEGIN_SRC + $ passwd +#+END_SRC +- Create useraccount +#+BEGIN_SRC + $ useradd -m -G sudo [USERNAME] + $ passwd [USERNAME] +#+END_SRC +- Exit the chroot +#+BEGIN_SRC + $ exit +#+END_SRC +- Shutdown the system +#+BEGIN_SRC + $ shutdown -h now +#+END_SRC +- Remove usb-drive +- Start the computer +- Enter drive encryption password +- Logon as the newly created user +- Connect to wifi +#+BEGIN_SRC + $ sudo wifi-menu +#+END_SRC +- Perform more system configuration +#+BEGIN_SRC + $ git clone https://github.com/elfrinjo/dotfiles + $ cd dotfiles + $ ./Setup.sh + $ cd sysconfig_arch + $ sudo puppet apply --modulepath ./modules cfg_[WANTED-CONFIGS].pp +#+END_SRC +- If there are special configfiles for Setup.sh, repeat with appropriate options. (See above) +- configs with cfg_zz need to be applied last as they overwrite previous settings +- At some point the Desktop will start. When this happens, just log on and continue inside a terminal +- Update the system +#+BEGIN_SRC + $ pacman -Syu +#+END_SRC +- Reboot +#+BEGIN_SRC + $ reboot +#+END_SRC diff --git a/configDots/pikaur.conf b/configDots/pikaur.conf new file mode 100644 index 0000000..5d7cac0 --- /dev/null +++ b/configDots/pikaur.conf @@ -0,0 +1,30 @@ +[sync] +alwaysshowpkgorigin = no +develpkgsexpiration = 301 +upgradesorting = versiondiff + +[build] +keepbuilddir = no +keepdevbuilddir = yes +skipfailedbuild = no +alwaysusedynamicusers = no +noedit = no +donteditbydefault = yes +nodiff = yes +gitdiffargs = --ignore-space-change,--ignore-all-space + +[colors] +version = 10 +versiondiffold = 11 +versiondiffnew = 9 + +[ui] +requireenterconfirm = no +diffpager = auto +printcommands = no + +[misc] +sudoloopinterval = 1 +pacmanpath = pacman +debug = no + diff --git a/configDots/ranger/commands.py b/configDots/ranger/commands.py new file mode 100644 index 0000000..97b7909 --- /dev/null +++ b/configDots/ranger/commands.py @@ -0,0 +1,62 @@ +# This is a sample commands.py. You can add your own commands here. +# +# Please refer to commands_full.py for all the default commands and a complete +# documentation. Do NOT add them all here, or you may end up with defunct +# commands when upgrading ranger. + +# A simple command for demonstration purposes follows. +# ----------------------------------------------------------------------------- + +from __future__ import (absolute_import, division, print_function) + +# You can import any python module as needed. +import os + +# You always need to import ranger.api.commands here to get the Command class: +from ranger.api.commands import Command + + +# Any class that is a subclass of "Command" will be integrated into ranger as a +# command. Try typing ":my_edit" in ranger! +class my_edit(Command): + # The so-called doc-string of the class will be visible in the built-in + # help that is accessible by typing "?c" inside ranger. + """:my_edit + + A sample command for demonstration purposes that opens a file in an editor. + """ + + # The execute method is called when you run this command in ranger. + def execute(self): + # self.arg(1) is the first (space-separated) argument to the function. + # This way you can write ":my_edit somefilename". + if self.arg(1): + # self.rest(1) contains self.arg(1) and everything that follows + target_filename = self.rest(1) + else: + # self.fm is a ranger.core.filemanager.FileManager object and gives + # you access to internals of ranger. + # self.fm.thisfile is a ranger.container.file.File object and is a + # reference to the currently selected file. + target_filename = self.fm.thisfile.path + + # This is a generic function to print text in ranger. + self.fm.notify("Let's edit the file " + target_filename + "!") + + # Using bad=True in fm.notify allows you to print error messages: + if not os.path.exists(target_filename): + self.fm.notify("The given file does not exist!", bad=True) + return + + # This executes a function from ranger.core.acitons, a module with a + # variety of subroutines that can help you construct commands. + # Check out the source, or run "pydoc ranger.core.actions" for a list. + self.fm.edit_file(target_filename) + + # The tab method is called when you press tab, and should return a list of + # suggestions that the user will tab through. + # tabnum is 1 for and -1 for by default + def tab(self, tabnum): + # This is a generic tab-completion function that iterates through the + # content of the current directory. + return self._tab_directory_content() diff --git a/configDots/ranger/commands_full.py b/configDots/ranger/commands_full.py new file mode 100644 index 0000000..a3837d8 --- /dev/null +++ b/configDots/ranger/commands_full.py @@ -0,0 +1,1769 @@ +# -*- coding: utf-8 -*- +# This file is part of ranger, the console file manager. +# This configuration file is licensed under the same terms as ranger. +# =================================================================== +# +# NOTE: If you copied this file to ~/.config/ranger/commands_full.py, +# then it will NOT be loaded by ranger, and only serve as a reference. +# +# =================================================================== +# This file contains ranger's commands. +# It's all in python; lines beginning with # are comments. +# +# Note that additional commands are automatically generated from the methods +# of the class ranger.core.actions.Actions. +# +# You can customize commands in the file ~/.config/ranger/commands.py. +# It has the same syntax as this file. In fact, you can just copy this +# file there with `ranger --copy-config=commands' and make your modifications. +# But make sure you update your configs when you update ranger. +# +# =================================================================== +# Every class defined here which is a subclass of `Command' will be used as a +# command in ranger. Several methods are defined to interface with ranger: +# execute(): called when the command is executed. +# cancel(): called when closing the console. +# tab(tabnum): called when is pressed. +# quick(): called after each keypress. +# +# tab() argument tabnum is 1 for and -1 for by default +# +# The return values for tab() can be either: +# None: There is no tab completion +# A string: Change the console to this string +# A list/tuple/generator: cycle through every item in it +# +# The return value for quick() can be: +# False: Nothing happens +# True: Execute the command afterwards +# +# The return value for execute() and cancel() doesn't matter. +# +# =================================================================== +# Commands have certain attributes and methods that facilitate parsing of +# the arguments: +# +# self.line: The whole line that was written in the console. +# self.args: A list of all (space-separated) arguments to the command. +# self.quantifier: If this command was mapped to the key "X" and +# the user pressed 6X, self.quantifier will be 6. +# self.arg(n): The n-th argument, or an empty string if it doesn't exist. +# self.rest(n): The n-th argument plus everything that followed. For example, +# if the command was "search foo bar a b c", rest(2) will be "bar a b c" +# self.start(n): Anything before the n-th argument. For example, if the +# command was "search foo bar a b c", start(2) will be "search foo" +# +# =================================================================== +# And this is a little reference for common ranger functions and objects: +# +# self.fm: A reference to the "fm" object which contains most information +# about ranger. +# self.fm.notify(string): Print the given string on the screen. +# self.fm.notify(string, bad=True): Print the given string in RED. +# self.fm.reload_cwd(): Reload the current working directory. +# self.fm.thisdir: The current working directory. (A File object.) +# self.fm.thisfile: The current file. (A File object too.) +# self.fm.thistab.get_selection(): A list of all selected files. +# self.fm.execute_console(string): Execute the string as a ranger command. +# self.fm.open_console(string): Open the console with the given string +# already typed in for you. +# self.fm.move(direction): Moves the cursor in the given direction, which +# can be something like down=3, up=5, right=1, left=1, to=6, ... +# +# File objects (for example self.fm.thisfile) have these useful attributes and +# methods: +# +# tfile.path: The path to the file. +# tfile.basename: The base name only. +# tfile.load_content(): Force a loading of the directories content (which +# obviously works with directories only) +# tfile.is_directory: True/False depending on whether it's a directory. +# +# For advanced commands it is unavoidable to dive a bit into the source code +# of ranger. +# =================================================================== + +from __future__ import (absolute_import, division, print_function) + +from collections import deque +import os +import re + +from ranger.api.commands import Command + + +class alias(Command): + """:alias + + Copies the oldcommand as newcommand. + """ + + context = 'browser' + resolve_macros = False + + def execute(self): + if not self.arg(1) or not self.arg(2): + self.fm.notify('Syntax: alias ', bad=True) + return + + self.fm.commands.alias(self.arg(1), self.rest(2)) + + +class echo(Command): + """:echo + + Display the text in the statusbar. + """ + + def execute(self): + self.fm.notify(self.rest(1)) + + +class cd(Command): + """:cd [-r] + + The cd command changes the directory. + The command 'cd -' is equivalent to typing ``. + Using the option "-r" will get you to the real path. + """ + + def execute(self): + if self.arg(1) == '-r': + self.shift() + destination = os.path.realpath(self.rest(1)) + if os.path.isfile(destination): + self.fm.select_file(destination) + return + else: + destination = self.rest(1) + + if not destination: + destination = '~' + + if destination == '-': + self.fm.enter_bookmark('`') + else: + self.fm.cd(destination) + + def _tab_args(self): + # dest must be rest because path could contain spaces + if self.arg(1) == '-r': + start = self.start(2) + dest = self.rest(2) + else: + start = self.start(1) + dest = self.rest(1) + + if dest: + head, tail = os.path.split(os.path.expanduser(dest)) + if head: + dest_exp = os.path.join(os.path.normpath(head), tail) + else: + dest_exp = tail + else: + dest_exp = '' + return (start, dest_exp, os.path.join(self.fm.thisdir.path, dest_exp), + dest.endswith(os.path.sep)) + + @staticmethod + def _tab_paths(dest, dest_abs, ends_with_sep): + if not dest: + try: + return next(os.walk(dest_abs))[1], dest_abs + except (OSError, StopIteration): + return [], '' + + if ends_with_sep: + try: + return [os.path.join(dest, path) for path in next(os.walk(dest_abs))[1]], '' + except (OSError, StopIteration): + return [], '' + + return None, None + + def _tab_match(self, path_user, path_file): + if self.fm.settings.cd_tab_case == 'insensitive': + path_user = path_user.lower() + path_file = path_file.lower() + elif self.fm.settings.cd_tab_case == 'smart' and path_user.islower(): + path_file = path_file.lower() + return path_file.startswith(path_user) + + def _tab_normal(self, dest, dest_abs): + dest_dir = os.path.dirname(dest) + dest_base = os.path.basename(dest) + + try: + dirnames = next(os.walk(os.path.dirname(dest_abs)))[1] + except (OSError, StopIteration): + return [], '' + + return [os.path.join(dest_dir, d) for d in dirnames if self._tab_match(dest_base, d)], '' + + def _tab_fuzzy_match(self, basepath, tokens): + """ Find directories matching tokens recursively """ + if not tokens: + tokens = [''] + paths = [basepath] + while True: + token = tokens.pop() + matches = [] + for path in paths: + try: + directories = next(os.walk(path))[1] + except (OSError, StopIteration): + continue + matches += [os.path.join(path, d) for d in directories + if self._tab_match(token, d)] + if not tokens or not matches: + return matches + paths = matches + + return None + + def _tab_fuzzy(self, dest, dest_abs): + tokens = [] + basepath = dest_abs + while True: + basepath_old = basepath + basepath, token = os.path.split(basepath) + if basepath == basepath_old: + break + if os.path.isdir(basepath_old) and not token.startswith('.'): + basepath = basepath_old + break + tokens.append(token) + + paths = self._tab_fuzzy_match(basepath, tokens) + if not os.path.isabs(dest): + paths_rel = basepath + paths = [os.path.relpath(path, paths_rel) for path in paths] + else: + paths_rel = '' + return paths, paths_rel + + def tab(self, tabnum): + from os.path import sep + + start, dest, dest_abs, ends_with_sep = self._tab_args() + + paths, paths_rel = self._tab_paths(dest, dest_abs, ends_with_sep) + if paths is None: + if self.fm.settings.cd_tab_fuzzy: + paths, paths_rel = self._tab_fuzzy(dest, dest_abs) + else: + paths, paths_rel = self._tab_normal(dest, dest_abs) + + paths.sort() + + if self.fm.settings.cd_bookmarks: + paths[0:0] = [ + os.path.relpath(v.path, paths_rel) if paths_rel else v.path + for v in self.fm.bookmarks.dct.values() for path in paths + if v.path.startswith(os.path.join(paths_rel, path) + sep) + ] + + if not paths: + return None + if len(paths) == 1: + return start + paths[0] + sep + return [start + dirname for dirname in paths] + + +class chain(Command): + """:chain ; ; ... + + Calls multiple commands at once, separated by semicolons. + """ + + def execute(self): + if not self.rest(1).strip(): + self.fm.notify('Syntax: chain ; ; ...', bad=True) + return + for command in [s.strip() for s in self.rest(1).split(";")]: + self.fm.execute_console(command) + + +class shell(Command): + escape_macros_for_shell = True + + def execute(self): + if self.arg(1) and self.arg(1)[0] == '-': + flags = self.arg(1)[1:] + command = self.rest(2) + else: + flags = '' + command = self.rest(1) + + if command: + self.fm.execute_command(command, flags=flags) + + def tab(self, tabnum): + from ranger.ext.get_executables import get_executables + if self.arg(1) and self.arg(1)[0] == '-': + command = self.rest(2) + else: + command = self.rest(1) + start = self.line[0:len(self.line) - len(command)] + + try: + position_of_last_space = command.rindex(" ") + except ValueError: + return (start + program + ' ' for program + in get_executables() if program.startswith(command)) + if position_of_last_space == len(command) - 1: + selection = self.fm.thistab.get_selection() + if len(selection) == 1: + return self.line + selection[0].shell_escaped_basename + ' ' + return self.line + '%s ' + + before_word, start_of_word = self.line.rsplit(' ', 1) + return (before_word + ' ' + file.shell_escaped_basename + for file in self.fm.thisdir.files or [] + if file.shell_escaped_basename.startswith(start_of_word)) + + +class open_with(Command): + + def execute(self): + app, flags, mode = self._get_app_flags_mode(self.rest(1)) + self.fm.execute_file( + files=[f for f in self.fm.thistab.get_selection()], + app=app, + flags=flags, + mode=mode) + + def tab(self, tabnum): + return self._tab_through_executables() + + def _get_app_flags_mode(self, string): # pylint: disable=too-many-branches,too-many-statements + """Extracts the application, flags and mode from a string. + + examples: + "mplayer f 1" => ("mplayer", "f", 1) + "atool 4" => ("atool", "", 4) + "p" => ("", "p", 0) + "" => None + """ + + app = '' + flags = '' + mode = 0 + split = string.split() + + if len(split) == 1: + part = split[0] + if self._is_app(part): + app = part + elif self._is_flags(part): + flags = part + elif self._is_mode(part): + mode = part + + elif len(split) == 2: + part0 = split[0] + part1 = split[1] + + if self._is_app(part0): + app = part0 + if self._is_flags(part1): + flags = part1 + elif self._is_mode(part1): + mode = part1 + elif self._is_flags(part0): + flags = part0 + if self._is_mode(part1): + mode = part1 + elif self._is_mode(part0): + mode = part0 + if self._is_flags(part1): + flags = part1 + + elif len(split) >= 3: + part0 = split[0] + part1 = split[1] + part2 = split[2] + + if self._is_app(part0): + app = part0 + if self._is_flags(part1): + flags = part1 + if self._is_mode(part2): + mode = part2 + elif self._is_mode(part1): + mode = part1 + if self._is_flags(part2): + flags = part2 + elif self._is_flags(part0): + flags = part0 + if self._is_mode(part1): + mode = part1 + elif self._is_mode(part0): + mode = part0 + if self._is_flags(part1): + flags = part1 + + return app, flags, int(mode) + + def _is_app(self, arg): + return not self._is_flags(arg) and not arg.isdigit() + + @staticmethod + def _is_flags(arg): + from ranger.core.runner import ALLOWED_FLAGS + return all(x in ALLOWED_FLAGS for x in arg) + + @staticmethod + def _is_mode(arg): + return all(x in '0123456789' for x in arg) + + +class set_(Command): + """:set