Class: OpenDashboardService

Inherits:
Object
  • Object
show all
Defined in:
lib/clash-systray/app/services/open_dashboard_service.rb

Instance Method Summary collapse

Instance Method Details

#performObject



2
3
4
5
6
7
8
9
10
# File 'lib/clash-systray/app/services/open_dashboard_service.rb', line 2

def perform
  config = Clash.config
  port = config.external_controller.split(":")[1]
  url = "http://127.0.0.1:#{port}/ui/?secret=#{config.secret}"
  view = QWebEngineView.new
  view.set_attribute(Qt::WA_DeleteOnClose)
  view.load(QUrl.new(url))
  view.show_maximized
end