update
This commit is contained in:
parent
28d169a222
commit
541fcebbbf
4 changed files with 287 additions and 0 deletions
|
@ -29,6 +29,8 @@ alias telnet='telnet -e "#"'
|
|||
alias update-system='apt-update && sudo aptitude -y -s dist-upgrade'
|
||||
alias upgrade-system='apt-upgrade && apt-autoclean'
|
||||
alias vdir='vdir --color=auto'
|
||||
alias wake_dominik="wakeonlan '00:19:99:d5:da:2f'";
|
||||
alias wake_office="wakeonlan '00:19:99:C4:D4:54'";
|
||||
alias xzc='xz --best --extreme'
|
||||
function ddg() { www-browser "https://duckduckgo.com/?q=`escape "$@"`"; }
|
||||
function escape() { perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$@"; }
|
||||
|
|
277
fbpanel
Normal file
277
fbpanel
Normal file
|
@ -0,0 +1,277 @@
|
|||
########################################
|
||||
## fbpanel configuration file ##
|
||||
########################################
|
||||
|
||||
Global {
|
||||
edge = top
|
||||
allign = right
|
||||
margin = 0
|
||||
widthtype = pixel
|
||||
width = 1600
|
||||
height = 24
|
||||
transparent = false
|
||||
tintcolor = #808080
|
||||
alpha = 224
|
||||
setdocktype = true
|
||||
#setpartialstrut = true
|
||||
autohide = false
|
||||
heightWhenHidden = 2
|
||||
roundcorners = false
|
||||
#roundcornersradius = 7
|
||||
#layer = none
|
||||
MaxElemHeight = 24
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = space
|
||||
config {
|
||||
size = 5
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = menu
|
||||
config {
|
||||
IconSize = 16
|
||||
#icon = start-here
|
||||
# Use a nice Debian logo for the menu list ;-)
|
||||
image = /usr/share/pixmaps/debian-logo.png
|
||||
systemmenu {
|
||||
}
|
||||
|
||||
separator {
|
||||
}
|
||||
|
||||
menu {
|
||||
name = Computer
|
||||
icon = computer
|
||||
|
||||
item {
|
||||
name = Terminal
|
||||
icon = terminal
|
||||
action = x-terminal-emulator
|
||||
}
|
||||
|
||||
item {
|
||||
name = Lock Display
|
||||
icon = gnome-lockscreen
|
||||
action = xscreensaver-command -lock
|
||||
}
|
||||
|
||||
separator {
|
||||
}
|
||||
|
||||
item {
|
||||
name = Reboot
|
||||
icon = gnome-session-reboot
|
||||
action = reboot
|
||||
}
|
||||
|
||||
item {
|
||||
name = Shutdown
|
||||
icon = gnome-session-halt
|
||||
action = halt
|
||||
}
|
||||
|
||||
item {
|
||||
name = logout
|
||||
icon = gnome-session-logout
|
||||
action = /usr/lib/fbpanel/fbpanel/xlogout
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = space
|
||||
config {
|
||||
size = 5
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Plugin {
|
||||
type = launchbar
|
||||
config {
|
||||
button {
|
||||
icon = file-manager
|
||||
tooltip = File Manager
|
||||
action = dolphin
|
||||
}
|
||||
|
||||
button {
|
||||
icon = terminal
|
||||
tooltip = Terminal
|
||||
action = x-terminal-emulator
|
||||
}
|
||||
|
||||
button {
|
||||
icon = web-browser
|
||||
tooltip = Web Browser
|
||||
action = x-www-browser
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = space
|
||||
config {
|
||||
size = 5
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = wincmd
|
||||
config {
|
||||
icon = gnome-fs-desktop
|
||||
tooltip = Left click to iconify all windows. Middle click to shade them.
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = space
|
||||
config {
|
||||
size = 10
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = taskbar
|
||||
expand = true
|
||||
config {
|
||||
ShowIconified = true
|
||||
ShowMapped = true
|
||||
ShowAllDesks = false
|
||||
tooltips = true
|
||||
IconsOnly = false
|
||||
#MaxTaskWidth = 150
|
||||
}
|
||||
}
|
||||
|
||||
# Plugin {
|
||||
# type = space
|
||||
# config {
|
||||
# size = 10
|
||||
# }
|
||||
# }
|
||||
|
||||
# Plugin {
|
||||
# type = pager
|
||||
# config {
|
||||
# showwallpaper = true
|
||||
# }
|
||||
# }
|
||||
|
||||
Plugin {
|
||||
type = space
|
||||
config {
|
||||
size = 10
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = mem
|
||||
expand = false
|
||||
padding = 2
|
||||
config {
|
||||
ShowSwap = true
|
||||
}
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = cpu
|
||||
config {
|
||||
Color = green
|
||||
}
|
||||
}
|
||||
|
||||
# Plugin {
|
||||
# type = net
|
||||
# expand = false
|
||||
# padding = 0
|
||||
# config {
|
||||
# #interface = ppp0
|
||||
# interface = eth0
|
||||
# # set connection limits to make traffic graph more accurate
|
||||
# TxLimit = 1000000
|
||||
# RxLimit = 1000000
|
||||
# TxColor = violet
|
||||
# RxColor = blue
|
||||
# }
|
||||
# }
|
||||
|
||||
Plugin {
|
||||
type = space
|
||||
config {
|
||||
size = 10
|
||||
}
|
||||
}
|
||||
|
||||
# plugin {
|
||||
# type = volume
|
||||
# }
|
||||
|
||||
plugin {
|
||||
type = battery
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = tray
|
||||
}
|
||||
|
||||
Plugin {
|
||||
type = space
|
||||
config {
|
||||
size = 10
|
||||
}
|
||||
}
|
||||
|
||||
# Digital Clock
|
||||
Plugin {
|
||||
type = tclock
|
||||
config {
|
||||
ShowSeconds = false
|
||||
HoursView = 24
|
||||
TooltipFmt = %A %x
|
||||
Color = black
|
||||
#Action = xmessage Please define some command &
|
||||
}
|
||||
}
|
||||
|
||||
# 'icons' plugin lets you customize window icons.
|
||||
# these changes apply to entire desktop
|
||||
Plugin {
|
||||
type = icons
|
||||
config {
|
||||
DefaultIcon = /usr/share/fbpanel/images/default.xpm
|
||||
application {
|
||||
icon = gnome-terminal
|
||||
ClassName = XTerm
|
||||
}
|
||||
|
||||
application {
|
||||
icon = gnome-terminal
|
||||
ClassName = mlterm
|
||||
}
|
||||
|
||||
application {
|
||||
icon = gnome-terminal
|
||||
ClassName = URxvt
|
||||
}
|
||||
|
||||
application {
|
||||
icon = gnome-emacs
|
||||
ClassName = Emacs
|
||||
}
|
||||
|
||||
application {
|
||||
icon = mozilla-firefox
|
||||
ClassName = Firefox-bin
|
||||
}
|
||||
|
||||
application {
|
||||
icon = mozilla-firefox
|
||||
ClassName = Firefox
|
||||
}
|
||||
}
|
||||
}
|
|
@ -197,6 +197,8 @@ client.urgent #002b36 #dc322f #002b36 #dc322f
|
|||
# finds out, if available)
|
||||
bar {
|
||||
output LVDS-0
|
||||
mode hide
|
||||
hidden_state hide
|
||||
tray_output LVDS-0
|
||||
status_command i3status
|
||||
position top
|
||||
|
|
6
stalonetrayrc
Normal file
6
stalonetrayrc
Normal file
|
@ -0,0 +1,6 @@
|
|||
dockapp_mode simple
|
||||
window_type dock
|
||||
kludges force_icons_size
|
||||
icon_size 16
|
||||
skip_taskbar true
|
||||
transparent true
|
Loading…
Reference in a new issue