diff options
author | mms <git@sapka.me> | 2024-11-12 23:23:01 +0100 |
---|---|---|
committer | mms <git@sapka.me> | 2024-11-12 23:23:01 +0100 |
commit | c65e4885b999e90732bf37ee954540bae58a4880 (patch) | |
tree | a9e22b04c7306dc4f292ae22469c3f136ac9611f /bin/osugiru | |
parent | 53112538e1f47ed446848c5787a87350a2cc6e31 (diff) |
feat: rename, again
Diffstat (limited to 'bin/osugiru')
-rwxr-xr-x | bin/osugiru | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/osugiru b/bin/osugiru deleted file mode 100755 index 0ed7510..0000000 --- a/bin/osugiru +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env ruby - -require_relative "../lib/osugiru.rb" - -CONFIG_FILEPATH = 'osugiru/config.rb' -XDG_HOME = ENV.fetch('XDG_CONFIG_HOME', "#{Dir.home}/.config") -def start_osugiru - config_file = File.read("#{XDG_HOME}/#{CONFIG_FILEPATH}") - instance_eval(config_file) - eval_rules -end - -start_osugiru |