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;
}
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
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.
add a comment |
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
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
add a comment |
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
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
linux ubuntu lock-screen clock ubuntu-18.04
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
New contributor
source: askubuntu.com/questions/1107000/…
– Fat Mind
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
New contributor
source: askubuntu.com/questions/1107000/…
– Fat Mind
2 days ago
add a comment |
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.
New contributor
source: askubuntu.com/questions/1107000/…
– Fat Mind
2 days ago
add a comment |
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.
New contributor
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.
New contributor
New contributor
answered 2 days ago
Fat MindFat Mind
1012
1012
New contributor
New contributor
source: askubuntu.com/questions/1107000/…
– Fat Mind
2 days ago
add a comment |
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
add a comment |
I'm voting to close this question because it has been cross posted to askubuntu.com/questions/1107000/…
– Mokubai♦
yesterday