LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-24-2018, 02:17 PM   #1
Mill J
Senior Member
 
Registered: Feb 2017
Location: @127.0.0.1
Distribution: Mint, Void, MX, Haiku, PMOS, Plasma Mobile, and many others
Posts: 1,258
Blog Entries: 2

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
Looking for a simple gui front-end to the date command


Hello, Me Again

I'm needing a simple "stand-alone" gui front-end to the date and similar commands, that allows me to set the hardware clock when necessary. This feature is almost always built into the distro/DE settings so I haven't had any luck finding anything.

Does anybody know of an app like that?

If I can't find one I'll just develop my own, however no sense in reinventing the wheel, should something like that exist.

Thanks

Mill J
 
Old 02-24-2018, 05:21 PM   #2
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
whatever happened to the command line and scripts??
Code:
#!/bin/bash


if [[ $# -lt 2 ]] 
then
   echo "Missing time OO:OOAM/PM"
   exit
fi
sudo date +%T -s $1
sudo hwclock -w
gui really? I have no idea where you'd find a gui to do that.

Last edited by BW-userx; 02-24-2018 at 05:22 PM.
 
Old 02-24-2018, 06:34 PM   #3
Mill J
Senior Member
 
Registered: Feb 2017
Location: @127.0.0.1
Distribution: Mint, Void, MX, Haiku, PMOS, Plasma Mobile, and many others
Posts: 1,258

Original Poster
Blog Entries: 2

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
Quote:
Originally Posted by BW-userx View Post
gui really? I have no idea where you'd find a gui to do that.
Clever deduction Watson Precisely why I asked....
 
Old 02-25-2018, 01:04 AM   #4
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
the antix distro contains loads of yad dialogs to make configuration like that; maybe also a date gui.
 
1 members found this post helpful.
Old 02-25-2018, 03:20 AM   #5
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,929

Rep: Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320
you almost never need to set that hw clock. Usually only once in a year or just only one time.
Why do you think you will need that?
 
Old 02-25-2018, 07:58 AM   #6
Mill J
Senior Member
 
Registered: Feb 2017
Location: @127.0.0.1
Distribution: Mint, Void, MX, Haiku, PMOS, Plasma Mobile, and many others
Posts: 1,258

Original Poster
Blog Entries: 2

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
Quote:
Originally Posted by ondoho View Post
the antix distro contains loads of yad dialogs to make configuration like that; maybe also a date gui.
Thanks I'll check that out. Luckily I do have a bootable thumb of antix, laying around.

Quote:
Originally Posted by pan64
you almost never need to set that hw clock. Usually only once in a year or just only one time.
Why do you think you will need that?
Correct, I'd have no problem setting from cli or even bios....but try explaining to someone who knows next to nothing about computers...It's easier to explain a gui.
 
Old 02-25-2018, 08:50 AM   #7
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,929

Rep: Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320Reputation: 7320
I'm afraid it is not a good approach, but you know.
I saw something like widgets or similar written in python and were running inside gnome. I can't recall now the details, but as far as I know you could implement a simple dialog/window/listbox/whatever quite fast and probably that would be useful for you.
 
1 members found this post helpful.
Old 02-25-2018, 09:25 AM   #8
Mill J
Senior Member
 
Registered: Feb 2017
Location: @127.0.0.1
Distribution: Mint, Void, MX, Haiku, PMOS, Plasma Mobile, and many others
Posts: 1,258

Original Poster
Blog Entries: 2

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
I'll probably build my own.

One of these days I want to learn python, but for now c/c++ and wxWidgets has been sufficient for all my projects.


Anyways, on to Geany....
 
Old 02-25-2018, 02:24 PM   #9
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
I'd just teach them how to drive a stick shift, then they can buy that fancy automatic sports car if they want to. I think teaching them GUI just hinders them if they are doing a Linux course, if they want GUI go get windows.
 
Old 02-27-2018, 07:08 AM   #10
bribid05
LQ Newbie
 
Registered: Feb 2018
Posts: 3

Rep: Reputation: Disabled
the antix distro contains loads of yad dialogs to make configuration like that; maybe also a date gui.
 
Old 02-27-2018, 07:57 AM   #11
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
I think Ubuntutu has a date time setting in it as well , just need to learn how to navigate to it, cli would have been faster.....
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
GUI Server Front End? LazerPhreak Linux - Server 4 01-20-2010 12:58 AM
gui read out of back end command lines from gui front end activation? how? Siljrath Linux - General 0 10-24-2008 10:11 AM
How to build front-end (GUI) satimis Programming 3 12-02-2004 01:25 AM
iwlist GUI front end? sjoeboo Linux - Wireless Networking 3 09-09-2004 10:25 PM
iwlist GUI front end? sjoeboo Programming 1 07-29-2004 03:08 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:39 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration