Sponsored Content
Full Discussion: Gui
Top Forums UNIX for Beginners Questions & Answers Gui Post 303036903 by abdossamad2003 on Tuesday 16th of July 2019 08:00:52 PM
Old 07-16-2019
What does the following sentence mean?
I want to install Dropbox in centos 7, what should I do according to this sentence?


Quote:
"I was just experimenting with Flatpak apps, and Dropbox is available as a Flatpak.

Installing that way was super easy -- installed gnome-software (which has Flatpak support) and then installed it using that GUI."
 

10 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

GUI help

I am running Solaris 9 os on a sparc 64. I installed netscape 7 and it works just fine. However on the desktop when you click web browser is still brings up netscape 4. How can i make the web browser link on the desk top open version 7 instead of 4? Thanks, Steve (1 Reply)
Discussion started by: meyersp
1 Replies

2. UNIX for Dummies Questions & Answers

If a is windows gui ( client), b is a unix gui ( Server for a) and c is a shell scrip

Hello all, 1) I want to have a GUI application that will call Unix shell scripts, 2) that GUI application should be able to reside on windows ( if possible) and then call Unix shell script either directly or through a server residing on unix. That is for example. If a is windows gui (... (1 Reply)
Discussion started by: hchivukula
1 Replies

3. Shell Programming and Scripting

Gui?

Do you guys work with Python? I'm just learning now but GUI seems like a way cool program it is just really wierd... I have version 4.2. you can download it for free off the site... (0 Replies)
Discussion started by: Blacidic
0 Replies

4. Programming

GUI using C language

Hi friends I have my project based on C platform. I was supposed to develop a GUI. Can u pls suggest me the best way to develop the GUI. I heard that motif is the easy one to develop GUI applications. Pls help me out thanks in advance. (4 Replies)
Discussion started by: veeru554
4 Replies

5. UNIX for Advanced & Expert Users

GUI issue

I have successfully installed Red hat linux 7.2 on my PC. But During the installation i saw the following messages "starting anaconda.... probing vedio card:unable to probe " In Xconfiguration step of installation ,The installer could not identify my video card. Finalle when i start... (1 Reply)
Discussion started by: ravi raj kumar
1 Replies

6. Shell Programming and Scripting

What to use for non-X GUI??

Has anybody ever needed to make a GUI (but really old-school style like dialog) to do some menu-based configurations... quite literally I have been bashing out code in Python using an interface class to the Dialog program in Linux... but it doesn't really have all the callback menu-driven... (0 Replies)
Discussion started by: jjinno
0 Replies

7. Shell Programming and Scripting

Running a GUI without GUI

I was wondering if it is possible to run a GUI window (say Firefox) without actually showing up the window on the desktop but still make it do its own regular stuff (like maybe do something via the command line). Sorry if its a dumb question. Thanks (3 Replies)
Discussion started by: Legend986
3 Replies

8. Shell Programming and Scripting

GUI Applications

Hi Experts, Can anyone suggest me kindly, whether designing some small GUI applications are possible in shell scripting..... Like a small calculator kind of stuff....... I fit is possible guide me with some examples. Thanks, Newbie....... (0 Replies)
Discussion started by: kritibalu
0 Replies

9. UNIX for Dummies Questions & Answers

UNIX without GUI

Hello guys, I am new to Unix, because of low RAM, i want to install Unix terminal (command line) without the GUI. Basically, i want to install two Unix OS (without the GUI) on VMware and make a TCP connection between them. I have a total of 2GB RAM on the host computer running window 7, so i... (7 Replies)
Discussion started by: Omar_M
7 Replies

10. Programming

Python gui or C++ gui or java gui?

python gui or c++ gui or java gui? and when to use etch one? (1 Reply)
Discussion started by: kaja
1 Replies
Net::Dropbox::API(3pm)					User Contributed Perl Documentation				    Net::Dropbox::API(3pm)

NAME
Net::Dropbox::API - A dropbox API interface VERSION
Version 1.8.8.8 SYNOPSIS
The Dropbox API is a OAuth based API. I try to abstract as much away as possible so you should not need to know too much about it. This is how it works: use Net::Dropbox::API; my $box = Net::Dropbox::API->new({key => 'KEY', secret => 'SECRET'}); my $login_link = $box->login; # user needs to click this link and login $box->auth; # oauth keys get exchanged my $info = $box->account_info; # and here we have our account info See the examples for a working Mojolicious web client using the Dropbox API. You can find Dropbox's API documentation at <https://www.dropbox.com/developers/web_docs> FUNCTIONS
login This sets up the initial OAuth handshake and returns the login URL. This URL has to be clicked by the user and the user then has to accept the application in dropbox. Dropbox then redirects back to the callback URL defined with "$self->callback_url". If the user already accepted the application the redirect may happen without the user actually clicking anywhere. auth The auth method changes the initial request token into access token that we need for subsequent access to the API. This method only has to be called once after login. account_info account_info polls the users info from dropbox. list lists all files in the path defined: $data = $box->list(); # top-level $data = $box->list( "/Photos" ); # folder The data returned is a ref to a hash containing various fields returned by Dropbox, including a "hash" value, which can be used later to check if Dropbox data beneath a specified folder has changed since the last call. For this, "list()" accepts an optional 'hash' argument: $data = $box->list({ hash => "ce9ccbfb8f255f234c93adcfef33b5a6" }, "/Photos"); This will either return { http_response_code => 304 } in which case nothing has changed since the last call, or { http_response_code => 200, # ... various other fields } if there were modifications. copy copies a folder copy($from, $to) move move a folder move($from, $to) mkdir creates a folder mkdir($path) delete delete a folder delete($path) view creates a cookie protected link for the user to look at. view($path) metadata creates a cookie protected link for the user to look at. metadata($path) putfile uploads a file to dropbox getfile get a file from dropbox debug Set this to a non-false value in order to print some debugging information to STDOUT. debug(1) INTERNAL API
_talk _talk handles the access to the restricted resources. You should normally not need to access this directly. nonce Generate a different nonce for every request. AUTHOR
Lenz Gschwendtner, "<norbu09 at cpan.org>" With Bug fixes from: Greg Knauss "gknauss at eod.com" Chris Prather "chris at prather.org" Shinichiro Aska [ktdreyer] SureVoIP <http://www.surevoip.co.uk> BUGS
Please report any bugs through the web interface at https://github.com/norbu09/Net--Dropbox/issues <https://github.com/norbu09/Net--Dropbox/issues>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Net::Dropbox::API You can also look for information at: o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Net-Dropbox-API <http://annocpan.org/dist/Net-Dropbox-API> o CPAN Ratings http://cpanratings.perl.org/d/Net-Dropbox-API <http://cpanratings.perl.org/d/Net-Dropbox-API> o Search CPAN http://search.cpan.org/dist/Net-Dropbox-API/ <http://search.cpan.org/dist/Net-Dropbox-API/> COPYRIGHT &; LICENSE Copyright 2010 Lenz Gschwendtner. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2012-03-22 Net::Dropbox::API(3pm)
All times are GMT -4. The time now is 04:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy