diff options
-rw-r--r-- | .config/tremc/settings.cfg | 2 | ||||
-rwxr-xr-x | .local/bin/dmapps | 20 |
2 files changed, 4 insertions, 18 deletions
diff --git a/.config/tremc/settings.cfg b/.config/tremc/settings.cfg index 7d45361..8a31948 100644 --- a/.config/tremc/settings.cfg +++ b/.config/tremc/settings.cfg @@ -1,5 +1,5 @@ [Connection] -host = localhost +host = ceres port = 9091 path = /transmission/rpc username = diff --git a/.local/bin/dmapps b/.local/bin/dmapps index bc7de0a..e5f9dab 100755 --- a/.local/bin/dmapps +++ b/.local/bin/dmapps @@ -13,12 +13,7 @@ use constant PROG_LIST => "" . "Web browser" . "\n" . "Mail client" . "\n" . "--- Accessories ---" . "\n" . -"Arduino" . "\n" . "cool-retro-term" . "\n" . -"Qalculate!" . "\n" . -"Kleopatra" . "\n" . -"Transmission" . "\n" . -"Wireshark" . "\n" . "MKVToolNix" . "\n" . "Stellarium" . "\n" . "Google Earth" . "\n" . @@ -47,8 +42,6 @@ use constant PROG_LIST => "" . "Pulse Control Panel" . "\n" . "JACK Audio Connection Kit" . "\n" . "--- Multimedia ---" . "\n" . -"Ario" . "\n" . -"Kdenlive" . "\n" . "OBS Studio" . "\n" . "--- Games ---" . "\n" . "Steam" . "\n" . @@ -77,18 +70,13 @@ sub run chomp($action); $pid = fork(); - exit if $pid; + return if $pid; setsid(); exec("st") if $action =~ "Terminal"; - exec("pcmanfm") if $action =~ "File manager"; + exec("st", "-e", "nnn") if $action =~ "File manager"; exec("firefox") if $action =~ "Web browser"; - exec("thunderbird") if $action =~ "Mail client"; - exec("arduino-ide") if $action =~ "Arduino"; + exec("st", "-e", "neomutt") if $action =~ "Mail client"; exec("cool-retro-term") if $action =~ "cool-retro-term"; - exec("qalculate-gtk") if $action =~ "Qalculate!"; - exec("kleopatra") if $action =~ "Kleopatra"; - exec("transmission-gtk") if $action =~ "Transmission"; - exec("doas", "wireshark") if $action =~ "Wireshark"; exec("mkvtoolnix-gui") if $action =~ "MKVToolNix"; exec("stellarium") if $action =~ "Stellarium"; exec("google-earth-pro") if $action =~ "Google Earth"; @@ -110,8 +98,6 @@ sub run exec("audacity") if $action =~ "Audacity"; exec("pavucontrol") if $action =~ "Pulse Control Panel"; exec("qjackctl") if $action =~ "JACK Audio Connection Kit"; - exec("ario") if $action =~ "Ario"; - exec("kdenlive") if $action =~ "Kdenlive"; exec("obs") if $action =~ "OBS Studio"; exec("steam") if $action =~ "Steam"; exec("lutris") if $action =~ "Lutris"; |