How do I remove the clock shown on the Ubuntu lock screen? [on hold]Disable Ubuntu lock screenCLI Ubuntu lock...

What does "enim et" mean?

How to move the player while also allowing forces to affect it

Are white and non-white police officers equally likely to kill black suspects?

"listening to me about as much as you're listening to this pole here"

Could a US political party gain complete control over the government by removing checks & balances?

How to deal with fear of taking dependencies

Re-submission of rejected manuscript without informing co-authors

How can I fix this gap between bookcases I made?

What is the meaning of "of trouble" in the following sentence?

Is there any use for defining additional entity types in a SOQL FROM clause?

If a centaur druid Wild Shapes into a Giant Elk, do their Charge features stack?

Information to fellow intern about hiring?

Is ipsum/ipsa/ipse a third person pronoun, or can it serve other functions?

Is it wise to hold on to stock that has plummeted and then stabilized?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

I see my dog run

Is there a name of the flying bionic bird?

Why is my log file so massive? 22gb. I am running log backups

Doomsday-clock for my fantasy planet

Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore

Copycat chess is back

What causes the sudden spool-up sound from an F-16 when enabling afterburner?

Unbreakable Formation vs. Cry of the Carnarium

map list to bin numbers



How do I remove the clock shown on the Ubuntu lock screen? [on hold]


Disable Ubuntu lock screenCLI Ubuntu lock screen after X minutesHide clock on lock screen in Windows 8Can I bring the lock screen back after dismissing it? ('go back a screen' from password entry)How do I fix the Windows 8 Lock Screen login lock-out?Windows 8 Dual Screen Lock screen?Removing time, date and any icons from windows 8 lock screenHow do I make a custom lock screen?Ubuntu, screen lock without screensaverRemoving date and time from Ubuntu lock screen






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







2















I'm using Ubuntu 18.04.



I want the remove the digital clock from the lock screen because I just want to see a good wallpaper there, unobstructed.



How do I go about this?










share|improve this question













put on hold as off-topic by Mokubai yesterday



  • This question does not appear to be about computer software or computer hardware within the scope defined in the help center.

If this question can be reworded to fit the rules in the help center, please edit the question.

















  • I'm voting to close this question because it has been cross posted to askubuntu.com/questions/1107000/…

    – Mokubai
    yesterday


















2















I'm using Ubuntu 18.04.



I want the remove the digital clock from the lock screen because I just want to see a good wallpaper there, unobstructed.



How do I go about this?










share|improve this question













put on hold as off-topic by Mokubai yesterday



  • This question does not appear to be about computer software or computer hardware within the scope defined in the help center.

If this question can be reworded to fit the rules in the help center, please edit the question.

















  • I'm voting to close this question because it has been cross posted to askubuntu.com/questions/1107000/…

    – Mokubai
    yesterday














2












2








2


1






I'm using Ubuntu 18.04.



I want the remove the digital clock from the lock screen because I just want to see a good wallpaper there, unobstructed.



How do I go about this?










share|improve this question














I'm using Ubuntu 18.04.



I want the remove the digital clock from the lock screen because I just want to see a good wallpaper there, unobstructed.



How do I go about this?







linux ubuntu lock-screen clock ubuntu-18.04






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 4 at 18:39









involtusinvoltus

264




264




put on hold as off-topic by Mokubai yesterday



  • This question does not appear to be about computer software or computer hardware within the scope defined in the help center.

If this question can be reworded to fit the rules in the help center, please edit the question.







put on hold as off-topic by Mokubai yesterday



  • This question does not appear to be about computer software or computer hardware within the scope defined in the help center.

If this question can be reworded to fit the rules in the help center, please edit the question.













  • I'm voting to close this question because it has been cross posted to askubuntu.com/questions/1107000/…

    – Mokubai
    yesterday



















  • I'm voting to close this question because it has been cross posted to askubuntu.com/questions/1107000/…

    – Mokubai
    yesterday

















I'm voting to close this question because it has been cross posted to askubuntu.com/questions/1107000/…

– Mokubai
yesterday





I'm voting to close this question because it has been cross posted to askubuntu.com/questions/1107000/…

– Mokubai
yesterday










1 Answer
1






active

oldest

votes


















0














removing the clock is not possible unless digging the core files of gnome-shell files which is very difficult.



instead you can hide it by editing ubuntu.css file.



Disclaimer: playing with gdm3 files is very dangerous, small mistakes will stop access to gnome desktop session. Only tty will work. i have several times reinstalled Ubuntu in such cases. although i have successfully hidden the clock-display on lock-screen. proceed with your own risk.



open the file /usr/share/gnome-shell/theme/ubuntu.css with below command.



sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css


search for "screen-shield" and find the below content



.screen-shield-clock-time {
font-size: 72pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 28pt;
font-weight: normal; }


then make the font-sizes to 0 like below



.screen-shield-clock-time {
font-size: 0pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 0pt;
font-weight: normal; }


save the file, close and reboot.






share|improve this answer








New contributor




Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • source: askubuntu.com/questions/1107000/…

    – Fat Mind
    2 days ago


















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














removing the clock is not possible unless digging the core files of gnome-shell files which is very difficult.



instead you can hide it by editing ubuntu.css file.



Disclaimer: playing with gdm3 files is very dangerous, small mistakes will stop access to gnome desktop session. Only tty will work. i have several times reinstalled Ubuntu in such cases. although i have successfully hidden the clock-display on lock-screen. proceed with your own risk.



open the file /usr/share/gnome-shell/theme/ubuntu.css with below command.



sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css


search for "screen-shield" and find the below content



.screen-shield-clock-time {
font-size: 72pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 28pt;
font-weight: normal; }


then make the font-sizes to 0 like below



.screen-shield-clock-time {
font-size: 0pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 0pt;
font-weight: normal; }


save the file, close and reboot.






share|improve this answer








New contributor




Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • source: askubuntu.com/questions/1107000/…

    – Fat Mind
    2 days ago
















0














removing the clock is not possible unless digging the core files of gnome-shell files which is very difficult.



instead you can hide it by editing ubuntu.css file.



Disclaimer: playing with gdm3 files is very dangerous, small mistakes will stop access to gnome desktop session. Only tty will work. i have several times reinstalled Ubuntu in such cases. although i have successfully hidden the clock-display on lock-screen. proceed with your own risk.



open the file /usr/share/gnome-shell/theme/ubuntu.css with below command.



sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css


search for "screen-shield" and find the below content



.screen-shield-clock-time {
font-size: 72pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 28pt;
font-weight: normal; }


then make the font-sizes to 0 like below



.screen-shield-clock-time {
font-size: 0pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 0pt;
font-weight: normal; }


save the file, close and reboot.






share|improve this answer








New contributor




Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • source: askubuntu.com/questions/1107000/…

    – Fat Mind
    2 days ago














0












0








0







removing the clock is not possible unless digging the core files of gnome-shell files which is very difficult.



instead you can hide it by editing ubuntu.css file.



Disclaimer: playing with gdm3 files is very dangerous, small mistakes will stop access to gnome desktop session. Only tty will work. i have several times reinstalled Ubuntu in such cases. although i have successfully hidden the clock-display on lock-screen. proceed with your own risk.



open the file /usr/share/gnome-shell/theme/ubuntu.css with below command.



sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css


search for "screen-shield" and find the below content



.screen-shield-clock-time {
font-size: 72pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 28pt;
font-weight: normal; }


then make the font-sizes to 0 like below



.screen-shield-clock-time {
font-size: 0pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 0pt;
font-weight: normal; }


save the file, close and reboot.






share|improve this answer








New contributor




Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










removing the clock is not possible unless digging the core files of gnome-shell files which is very difficult.



instead you can hide it by editing ubuntu.css file.



Disclaimer: playing with gdm3 files is very dangerous, small mistakes will stop access to gnome desktop session. Only tty will work. i have several times reinstalled Ubuntu in such cases. although i have successfully hidden the clock-display on lock-screen. proceed with your own risk.



open the file /usr/share/gnome-shell/theme/ubuntu.css with below command.



sudo -H gedit /usr/share/gnome-shell/theme/ubuntu.css


search for "screen-shield" and find the below content



.screen-shield-clock-time {
font-size: 72pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 28pt;
font-weight: normal; }


then make the font-sizes to 0 like below



.screen-shield-clock-time {
font-size: 0pt;
text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
font-feature-settings: "tnum"; }

.screen-shield-clock-date {
font-size: 0pt;
font-weight: normal; }


save the file, close and reboot.







share|improve this answer








New contributor




Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this answer



share|improve this answer






New contributor




Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









answered 2 days ago









Fat MindFat Mind

1012




1012




New contributor




Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Fat Mind is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • source: askubuntu.com/questions/1107000/…

    – Fat Mind
    2 days ago



















  • source: askubuntu.com/questions/1107000/…

    – Fat Mind
    2 days ago

















source: askubuntu.com/questions/1107000/…

– Fat Mind
2 days ago





source: askubuntu.com/questions/1107000/…

– Fat Mind
2 days ago



Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...