Compare commits
6 commits
9cce357dd0
...
fca2564987
Author | SHA1 | Date | |
---|---|---|---|
fca2564987 | |||
7dec0da91c | |||
de8c777a3c | |||
1ce05411e0 | |||
0eda2a1003 | |||
3a30fd8a86 |
2 changed files with 8 additions and 0 deletions
|
@ -98,6 +98,7 @@ module GX
|
||||||
when Config::Mode::ShowVersion
|
when Config::Mode::ShowVersion
|
||||||
STDOUT.puts "#{PROGRAM_NAME} #{VERSION}"
|
STDOUT.puts "#{PROGRAM_NAME} #{VERSION}"
|
||||||
when Config::Mode::Mount
|
when Config::Mode::Mount
|
||||||
|
@config.load_from_env
|
||||||
@config.load_from_file
|
@config.load_from_file
|
||||||
filesystem = choose_filesystem
|
filesystem = choose_filesystem
|
||||||
raise Models::InvalidFilesystemError.new("Invalid filesystem") if filesystem.nil?
|
raise Models::InvalidFilesystemError.new("Invalid filesystem") if filesystem.nil?
|
||||||
|
|
|
@ -72,6 +72,13 @@ module GX
|
||||||
raise MissingFileError.new("Configuration file not found")
|
raise MissingFileError.new("Configuration file not found")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def load_from_env()
|
||||||
|
if !ENV["FZF_DEFAULT_OPTS"]?
|
||||||
|
# force defaults settings if none defined
|
||||||
|
ENV["FZF_DEFAULT_OPTS"] = "--height 40% --layout=reverse --border"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def load_from_file
|
def load_from_file
|
||||||
config_path = @path
|
config_path = @path
|
||||||
if config_path.nil?
|
if config_path.nil?
|
||||||
|
|
Loading…
Reference in a new issue