网站导航 专题 首页

办公软件
WordExcelPPTWPS
操作系统
Win7Win10Win11
常用软件
工具软件视频播放图片处理
数码产品
笔记本手机教程平板电脑
安卓教程
应用教程刷机教程游戏攻略
苹果教程
iphone越狱iphone备份教程
游戏攻略
游戏新闻网络游戏单机游戏
生活攻略
美食/营养汽车旅游出行

ubuntu indicator位置调整

教程之家 Linux

添加了网络上传下载流量显示后,随着数字大小的变化导致很多在此indicator之前的图标就一直随之而变动,看着十分难受,askubuntu后解决方法如下。

一、indicator icon位置调整

mkdir -p ~/.local/share/indicators/application/

sudo cp /usr/share/indicator-application/ordering-override.keyfile ~/.local/share/indicators/application/

vim ~/.local/share/indicators/application/ordering-override.keyfile

[Ordering Index Overrides]

nm-applet=1

gnome-power-manager=2

Fcitx=3

dropbox-client-2400=8

dropbox-client-2400=8

indicator-sensors=5

My-Weather-Indicator=6

Shutter=7

二、Dropbox位置调整

将以下脚本添加到开机自启动程序中

#!/bin/bash

dropbox start -i

sleep 1

b=`pidof dropbox`

c=`echo $b | cut -d‘ ’ -f1`

c1=`echo $b | cut -d‘ ’ -f2`

d=“dropbox-client-$c=8”

d1=“dropbox-client-$c1=8”

filename=~/.local/share/indicators/application/ordering-override.keyfile

count=0

while read LINE

do

let count++

if [[ $LINE == *dropbox* ]];then

c=$LINE

e=$count

e1=$(($e + 1))

break

fi

done 《 $filename

sed -i “$e s/.*/$d/” $filename

sed -i “$e1 s/.*/$d1/” $filename

相关教程:

相关下载:

本类最新

SSH连接时出现“ssh algorithm negotiation failed”错误的原因和解决方法

SSH连接时出现“ssh algorithm negotiation failed”...

永远不要在Linux执行的10个最危险的命令

永远不要在Linux执行的10个最危险的命令

linux系统LNMP重编译安装ngx_lua module模块

linux系统LNMP重编译安装ngx_lua module模块

linux系统如何安装nginx_lua_module模块

linux系统如何安装nginx_lua_module模块

linux系统ngx_lua module模块安装教程

linux系统ngx_lua module模块安装教程

图文教程