首页 > 系统相关 >Linux_ubuntu_How to resize Launcher in Unity 2D

Linux_ubuntu_How to resize Launcher in Unity 2D

时间:2023-04-14 11:33:21浏览次数:65  
标签:files 2d shell width Launcher 2D int unity Linux


via: http://www.dedoimedo.com/computers/ubuntu-unity-2d-resize-launcher.html

 

Change Unity 2D configuration files

The configuration files are located under /usr/share/unity-2d/shell. You will need sudo to edit the files contained therein. You should also create a backup of all the files before making any changes. The simplest way to backup would be:

tar cvfz ~/Documents/unity-2d-shell-backup.tar.gz
/usr/share/unity-2d/shell/*

Now, you can proceed to edit the files in any text editor. The paths listed below are all relative to the Unity 2D shell path above.

Shell.qml, change:

width: 65 to width: 50

common/IconTile.qml, change:

sourceSize.width: 48 to sourceSize.width: 32
sourceSize.height: 48 to sourceSize.height: 32

launcher/LauncherList.qml, change:

property int tileSize: 54 to property int tileSize: 38
property int selectionOutlineSize: 65 to
property int selectionOutlineSize: 50

That would be all. Logout, log back in.

标签:files,2d,shell,width,Launcher,2D,int,unity,Linux
From: https://blog.51cto.com/u_16070335/6189773

相关文章

  • VMWare Horizon Linux 手动场 cannot open display 错误
    环境:系统:rhel7.9horizonagent版本:2209桌面:Gnome问题描述:防火墙已关闭的情况下,在使用LSF交互式任务时不能打开带界面的程序(xhost+已经事先执行过)。解决问题:vim/usr/lib/vmware/viewagent/bin/StartXServer.sh找到xdmcp_opt="-query127.0.0.1-once"改为xdmcp_opt......
  • Linux之find
    find.-name"*.java"下面是该命令所找到的命令的缩略清单:find.-name"*.java"./REGEXPvalidate/src/oracle/otnsamples/plsql/ConnectionManager.java./REGEXPvalidate/src/oracle/otnsamples/plsql/DBManager.java总结find.-typef-maxdepth1-mmin-10-name......
  • linux_Ubuntu常用快捷键
    =====桌面=====ALT+F1:聚焦到桌面左侧任务导航栏,可按上下键导航。ALT+F2:运行命令ALT+F4:关闭窗口ALT+TAB:切换程序窗口ALT+空格:打开窗口菜单PRINT:桌面截图 SUPER:打开Dash面板,可搜索或浏览项目,默认有个搜索框,按“下”方向键进入浏览区域(SUPER键指Win键或苹......
  • Linux_压缩解压详解
    linuxzip命令 zip-rmyfile.zip./*将当前目录下的所有文件和文件夹全部压缩成myfile.zip文件,-r表示递归压缩子目录下所有文件. 2.unzipunzip-o-d/home/sunnymyfile.zip把myfile.zip文件解压到/home/sunny/-o:不提示的情况下覆盖文件;-d:-d/home/sunny指明将文件解压缩到......
  • 【Linux】多线程 —— 线程概念 | 线程控制
    多线程1.线程概念1.1Linux线程与接口关系的认识1.2线程的私有&共有资源1.3线程的优缺点1.4线程的异常2.线程控制2.1pthread_create创建线程2.2pthread_join线程等待2.3线程终止的方案2.4pthrerad_detach线程分离azingneverlies正文开始@小边小边别发愁线程,是在进......
  • 【Linux】动静态库@基础IO —— 动静态库的制作使用
    制作动静态库1.动态库&静态库2.制作静态库2.1制作2.2使用3.制作动态库3.1制作3.2使用4.总结我们其实一直都在直接或间接的使用库,本文将介绍动静态库的制作和使用。从今天开始,你的朋友说,诶?你的作业借我看看。你就可以,哦不你也应该,勇敢的做个高尚的人,制作一个库扔给他~正文......
  • 【转】基于.net6+gtksharp实现的Linux下的图形界面串口调试工具
    【开源】基于.net6+gtksharp实现的Linux下的图形界面串口调试工具-狼性法则-博客园(cnblogs.com) 背景22年初从上家互联网公司离职以后,充分认识到互联网行业的风险,公司在没有自身稳定产品的情况下,互联网行业就是一个烧钱的行业,支出远远大于收入来源,上家公司就是如......
  • Linux系统时间同步方法
    使用NTP服务时间同步1、安装ntp。[root@k8s-master01~]#yum-yinstallntp 2、启动ntp服务。[root@k8s-master01~]#systemctlstartntpd[root@k8s-master01~]#systemctlenablentpdCreatedsymlinkfrom/etc/systemd/system/multi-user.target.wants/ntpd.ser......
  • Linux中使用ntpdate同步失败报错:14 Apr 08:42:12 ntpdate[1255]: the NTP socket is i
    报错信息: 报错原因:1、可能是因为同步的域名信息没有解析到。2、可能是因为服务的问题导致没有同步成功。 解决方法:1、先关闭ntpd服务。[root@k8s-master01~]#servicentpdstopRedirectingto/bin/systemctlstopntpd.service 2、重新同步。[root@k8s-maste......
  • linux设备树-linux内核设备树移植(二)
    ----------------------------------------------------------------------------------------------------------------------------内核版本:linux5.2.8根文件系统:busybox1.25.0u-boot:2016.05-------------------------------------------------------------------------------......