add xfce terminal support
Some checks failed
Publish Release / Publish binaries (push) Has been cancelled

This commit is contained in:
Dvlv 2024-03-26 18:15:13 +00:00
parent 165e2dc085
commit 8a8e47611f
No known key found for this signature in database
GPG key ID: 1F4BD7220B7FDCFA
3 changed files with 11 additions and 1 deletions

View file

@ -40,6 +40,11 @@
<url type="help">https://dvlv.github.io/BoxBuddyRS</url> <url type="help">https://dvlv.github.io/BoxBuddyRS</url>
<releases> <releases>
<release version="2.1.5" date="2024-03-26">
<description>
<p>Added support for Xfce4 Terminal</p>
</description>
</release>
<release version="2.1.4" date="2024-03-13"> <release version="2.1.4" date="2024-03-13">
<description> <description>
<p>Fix View Applications pop-up for newer versions of Distrobox</p> <p>Fix View Applications pop-up for newer versions of Distrobox</p>

View file

@ -819,7 +819,7 @@ fn show_about_popup(window: &ApplicationWindow) {
let d = adw::AboutWindow::new(); let d = adw::AboutWindow::new();
d.set_transient_for(Some(window)); d.set_transient_for(Some(window));
d.set_application_name("BoxBuddy"); d.set_application_name("BoxBuddy");
d.set_version("2.1.4"); d.set_version("2.1.5");
d.set_developer_name("Dvlv"); d.set_developer_name("Dvlv");
d.set_license_type(gtk::License::MitX11); d.set_license_type(gtk::License::MitX11);
d.set_comments( d.set_comments(

View file

@ -209,6 +209,11 @@ pub fn get_supported_terminals() -> Vec<TerminalOption> {
executable_name: String::from("konsole"), executable_name: String::from("konsole"),
separator_arg: String::from("-e"), separator_arg: String::from("-e"),
}, },
TerminalOption {
name: String::from("Xfce Terminal"),
executable_name: String::from("xfce4-terminal"),
separator_arg: String::from("-x"),
},
TerminalOption { TerminalOption {
name: String::from("Tilix"), name: String::from("Tilix"),
executable_name: String::from("tilix"), executable_name: String::from("tilix"),