You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
497 B
15 lines
497 B
#ifndef CMD_H
|
|
#define CMD_H
|
|
|
|
#define global_load "ubconfig --default --source global get boot"
|
|
#define system_load "ubconfig --default --source system get boot"
|
|
|
|
|
|
#define global_save "ubconfig --target global set boot "
|
|
#define system_save "ubconfig --target system set boot "
|
|
#define global_remove "ubconfig --target global remove boot "
|
|
#define system_remove "ubconfig --target system remove boot "
|
|
#define open_link "xdg-open "
|
|
#define other_user "su -l {} -c \" DISPLAY=$DISPLAY {} \""
|
|
|
|
#endif |