feat: rm some commands
This commit is contained in:
parent
d982b83e14
commit
59c09f90f9
@ -8,7 +8,7 @@ use crate::{
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
use serde_yaml::Mapping;
|
use serde_yaml::Mapping;
|
||||||
use tauri::{AppHandle, Manager, State};
|
use tauri::State;
|
||||||
|
|
||||||
/// get all profiles from `profiles.yaml`
|
/// get all profiles from `profiles.yaml`
|
||||||
/// do not acquire the lock of ProfileLock
|
/// do not acquire the lock of ProfileLock
|
||||||
@ -231,25 +231,3 @@ pub async fn patch_verge_config(
|
|||||||
let mut verge = verge_state.0.lock().unwrap();
|
let mut verge = verge_state.0.lock().unwrap();
|
||||||
verge.patch_config(payload)
|
verge.patch_config(payload)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// start dragging window
|
|
||||||
#[tauri::command]
|
|
||||||
pub fn win_drag(app_handle: AppHandle) {
|
|
||||||
let window = app_handle.get_window("main").unwrap();
|
|
||||||
window.start_dragging().unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// hide the window
|
|
||||||
#[tauri::command]
|
|
||||||
pub fn win_hide(app_handle: AppHandle) {
|
|
||||||
let window = app_handle.get_window("main").unwrap();
|
|
||||||
window.hide().unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// mini the window
|
|
||||||
#[tauri::command]
|
|
||||||
pub fn win_mini(app_handle: AppHandle) {
|
|
||||||
let window = app_handle.get_window("main").unwrap();
|
|
||||||
// todo: these methods still has bug on Windows
|
|
||||||
window.minimize().unwrap();
|
|
||||||
}
|
|
||||||
|
@ -37,6 +37,7 @@ fn main() -> std::io::Result<()> {
|
|||||||
SystemTrayEvent::MenuItemClick { id, .. } => match id.as_str() {
|
SystemTrayEvent::MenuItemClick { id, .. } => match id.as_str() {
|
||||||
"open_window" => {
|
"open_window" => {
|
||||||
let window = app_handle.get_window("main").unwrap();
|
let window = app_handle.get_window("main").unwrap();
|
||||||
|
window.unminimize().unwrap();
|
||||||
window.show().unwrap();
|
window.show().unwrap();
|
||||||
window.set_focus().unwrap();
|
window.set_focus().unwrap();
|
||||||
}
|
}
|
||||||
@ -63,6 +64,7 @@ fn main() -> std::io::Result<()> {
|
|||||||
},
|
},
|
||||||
SystemTrayEvent::LeftClick { .. } => {
|
SystemTrayEvent::LeftClick { .. } => {
|
||||||
let window = app_handle.get_window("main").unwrap();
|
let window = app_handle.get_window("main").unwrap();
|
||||||
|
window.unminimize().unwrap();
|
||||||
window.show().unwrap();
|
window.show().unwrap();
|
||||||
window.set_focus().unwrap();
|
window.set_focus().unwrap();
|
||||||
}
|
}
|
||||||
@ -73,9 +75,6 @@ fn main() -> std::io::Result<()> {
|
|||||||
cmds::restart_sidecar,
|
cmds::restart_sidecar,
|
||||||
cmds::get_sys_proxy,
|
cmds::get_sys_proxy,
|
||||||
cmds::get_cur_proxy,
|
cmds::get_cur_proxy,
|
||||||
cmds::win_drag,
|
|
||||||
cmds::win_hide,
|
|
||||||
cmds::win_mini,
|
|
||||||
// clash
|
// clash
|
||||||
cmds::get_clash_info,
|
cmds::get_clash_info,
|
||||||
cmds::patch_clash_config,
|
cmds::patch_clash_config,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user