Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Clash Verge
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Clash Verge
Commits
79aad6b5
There was an error fetching the commit references. Please try again later.
Commit
79aad6b5
authored
3 years ago
by
GyDi
Browse files
Options
Downloads
Patches
Plain Diff
feat: window self startup
parent
6da7757d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src-tauri/src/utils/mod.rs
+1
-0
1 addition, 0 deletions
src-tauri/src/utils/mod.rs
src-tauri/src/utils/startup.rs
+62
-0
62 additions, 0 deletions
src-tauri/src/utils/startup.rs
with
63 additions
and
0 deletions
src-tauri/src/utils/mod.rs
+
1
−
0
View file @
79aad6b5
...
@@ -4,4 +4,5 @@ pub mod fetch;
...
@@ -4,4 +4,5 @@ pub mod fetch;
pub
mod
init
;
pub
mod
init
;
pub
mod
resolve
;
pub
mod
resolve
;
pub
mod
server
;
pub
mod
server
;
pub
mod
startup
;
pub
mod
sysopt
;
pub
mod
sysopt
;
This diff is collapsed.
Click to expand it.
src-tauri/src/utils/startup.rs
0 → 100644
+
62
−
0
View file @
79aad6b5
use
std
::
io
;
use
std
::
path
::
PathBuf
;
static
APP_KEY
:
&
str
=
"ClashVerge"
;
#[cfg(target_os
=
"windows"
)]
/// get the startup value
/// whether as same as the exe_path
pub
fn
get_startup
(
exe_path
:
&
PathBuf
)
->
io
::
Result
<
bool
>
{
use
winreg
::
enums
::
*
;
use
winreg
::
RegKey
;
let
hkcu
=
RegKey
::
predef
(
HKEY_CURRENT_USER
);
let
cur_var
=
hkcu
.open_subkey_with_flags
(
"SOFTWARE
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
Run"
,
KEY_READ
,
)
?
;
match
cur_var
.get_value
::
<
String
,
_
>
(
APP_KEY
)
{
Ok
(
path
)
=>
{
let
exe_path
=
exe_path
.clone
();
let
exe_path
=
exe_path
.as_os_str
()
.to_str
()
.unwrap
();
Ok
(
path
==
exe_path
)
}
Err
(
_
)
=>
Ok
(
false
),
}
}
#[cfg(target_os
=
"windows"
)]
/// set the startup on windows
/// delete the reg key if disabled
pub
fn
set_startup
(
enable
:
bool
,
exe_path
:
&
PathBuf
)
->
io
::
Result
<
()
>
{
use
winreg
::
enums
::
*
;
use
winreg
::
RegKey
;
let
hkcu
=
RegKey
::
predef
(
HKEY_CURRENT_USER
);
let
cur_var
=
hkcu
.open_subkey_with_flags
(
"SOFTWARE
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
Run"
,
KEY_SET_VALUE
,
)
?
;
match
enable
{
true
=>
{
let
exe_path
=
exe_path
.clone
();
let
exe_path
=
exe_path
.as_os_str
()
.to_str
()
.unwrap
();
cur_var
.set_value
::
<&
str
,
_
>
(
APP_KEY
,
&
exe_path
)
}
false
=>
cur_var
.delete_value
(
APP_KEY
),
}
}
#[cfg(target_os
=
"windows"
)]
#[test]
fn
test
()
{
let
path
=
PathBuf
::
from
(
r"D:\Software\Clash Verge\clash-verge.exe"
);
assert!
(
set_startup
(
true
,
&
path
)
.is_ok
());
assert_eq!
(
get_startup
(
&
path
)
.unwrap
(),
true
);
assert!
(
set_startup
(
false
,
&
path
)
.is_ok
());
assert_eq!
(
get_startup
(
&
path
)
.unwrap
(),
false
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment