diff --git a/LICENSE.md b/LICENSE.md index 9ab5364..16fc79d 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -2,7 +2,7 @@ * css/UbuntuRegular.ttf licensed by [Ubuntu Font License](./LICENSE_UFL.txt). -* icons/Suru licensed by [Creative Commons Attribution-ShareAlike 4.0 License](./LICENSE_CCBYSA.txt). (Read icons/Suru/README.md and cons/Suru/CONTRIBUTING.md to learn about)(Forked from https://github.com/ubuntu/yaru) +* icons/Suru and assets licensed by [Creative Commons Attribution-ShareAlike 4.0 License](./LICENSE_CCBYSA.txt). (Read icons/Suru/README.md and cons/Suru/CONTRIBUTING.md to learn about)(Forked from https://github.com/ubuntu/yaru) * icons/unsplash licensed by [Unsplash License](./LICENSE_UNSPLASH.txt). (Read icons/unsplash/Attribution.html to learn about) diff --git a/apps/terminal/js/main.js b/apps/terminal/js/main.js index 737e80e..694718e 100644 --- a/apps/terminal/js/main.js +++ b/apps/terminal/js/main.js @@ -93,9 +93,9 @@ function runBashCommand(__command){ if(__command.length==1 || __command[1]=="--help"){ writeOutput("Usage: wine PROGRAM [ARGUMENTS...] Run the specified program\n wine --help Display this help and exit\n wine --version Output version information and exit"); } else if(__command[1]=="--version"){ - writeOutput("wine-6.21") + writeOutput("wine-7.0-rc5") } else { - writeOutput("Uygulama başlatılamadı veya belirtilen dosya ile ilişkili bir uygulama yok.") + writeOutput("The application could not be started or there is no application associated with the specified file.") } }else if(__the_command=="sh"||__the_command=="bash"){ writeOutput(__console_info); diff --git a/assets/144.png b/assets/144.png new file mode 100644 index 0000000..eebb48b Binary files /dev/null and b/assets/144.png differ diff --git a/assets/192.png b/assets/192.png new file mode 100644 index 0000000..1834ad0 Binary files /dev/null and b/assets/192.png differ diff --git a/assets/512.png b/assets/512.png new file mode 100644 index 0000000..9ac51a0 Binary files /dev/null and b/assets/512.png differ diff --git a/assets/Vector.svg b/assets/Vector.svg new file mode 100644 index 0000000..b9115ca --- /dev/null +++ b/assets/Vector.svg @@ -0,0 +1,5 @@ + diff --git a/css/login.css b/css/login.css new file mode 100644 index 0000000..0513ee8 --- /dev/null +++ b/css/login.css @@ -0,0 +1,55 @@ +*:not(body,html){ + visibility:hidden !important; +} + +.panel-notification, .panel-status, .panel-status > *, .login-user, .login-user > *, .login-ubuntu{ + visibility: visible !important; +} + +.panel-notification, .panel-status{ + pointer-events: none; +} + +.login-user, .login-ubuntu{ + display: unset !important; +} + +.login-user{ + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%,-50%); + margin: 0; + background: #66666666; + border-radius: 5px; + width: 260px; + height: 65px; + color: #ffffff; +} + +.login-user > img { + position: relative; + top: 8.5px; + left: 8.5px; + width: 48px; + height: 48px; + filter: brightness(2); + border-radius: 50%; + background: #33333333; +} + +.login-user > div{ + position: relative; + bottom: 29px; + left: 65px; + font-size: 18px; +} + +.login-ubuntu{ + position: fixed; + bottom: 20px; + font-size: 45px; + color: #ffffff; + left: 50%; + transform: translate(-50%,0); +} \ No newline at end of file diff --git a/css/panel.css b/css/panel.css index be0b6d6..19681e3 100644 --- a/css/panel.css +++ b/css/panel.css @@ -94,6 +94,11 @@ transition-duration: 0.2s; } +.panel-status-no-wifi{ + grid-template-columns: 0px auto auto !important; + width: 55px !important; +} + .panel-status-icon{ height: 16px; filter: brightness(2); diff --git a/index.html b/index.html index 1cd1f29..e243261 100644 --- a/index.html +++ b/index.html @@ -3,8 +3,9 @@