commit 0a5fdd05b145727d301e71e92e27ff24f8f03965 Author: Rinaldus Date: Wed Feb 24 13:45:23 2016 +0300 initial commit diff --git a/dunst/dunstrc b/dunst/dunstrc new file mode 100644 index 0000000..ad796ea --- /dev/null +++ b/dunst/dunstrc @@ -0,0 +1,29 @@ +[global] + font = Droid Sans 14 + padding = 5 + horizontal_padding = 8 + geometry = "1000x5-0+100" + shrink = yes + transparency = 80 +# format = "%s\n%b" + allow_markup = yes + icon_position = left +# icon_folders = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/48x48/devices/:/usr/share/icons/gnome/48x48/mimetypes + history_length = 20 + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the "#" and following would be interpreted as a comment. + background = "#ececec" + foreground = "#000000" + timeout = 10 + +[urgency_normal] + background = "#ececec" + foreground = "#000000" + timeout = 10 + +[urgency_critical] + background = "#ececec" + foreground = "#000000" + timeout = 10 diff --git a/fbpanel/default b/fbpanel/default new file mode 100644 index 0000000..50e3cad --- /dev/null +++ b/fbpanel/default @@ -0,0 +1,456 @@ +######################################## +## fbpanel configuration file ## +######################################## + + +# DESCRIPTION +# Configuration file consists of mandatory 'Global' block that MUST come first, +# and optionally one or more 'Plugin' block. +# Lines having '#' as first non-blank char or blank lines are ignored +# Keywords are not case-sensitive +# Values are case-sensitive +# Value of variable is a text from first non-blank char after '=' +# till the last non-blank char. '#' is NOT treated as coment in this context + +# 'Global' block describes global parameters like position, size and +# some NETWM settings + +# Global { + +# # screen edge +# # legal values are: left, right, top, bottom +# edge = bottom + +# # allignment of a panel +# # legal values are: left, right, center +# allign = left + +# # length of margin (in pixels) +# # legal values are numbers +# margin = 0 + +# # widthtype specifies how panel width is calculated +# # legal values are: request, pixel, percent +# # request - follow widgets' size requests. can shrink or grow dynamically +# # pixel - occupy fixed number of pixels, then 'width' variable holds a number +# # percent - be 'width' precent of an edge. +# widthType = percent + +# # numerical value of width (not applicable for 'request' widthtype) +# # legal values are numbers +# width = 80 + +# # heighttype specifies how panel height is calculated +# # legal values are: pixel +# # pixel - ocupy fixed number of pixels, then 'height' variable holds a number +# heightType = pixel + +# # numerical value of height (if applicable) +# # legal values are numbers +# height = 28 + + +# # Identify panel window type as dock +# # legal values are boolean +# setDockType = true + +# # Reserve panel's space so that it will not be covered by maximazied windows +# # legal values are boolean +# # setPartialStrut = true + + +# # Transparency stuff: +# # tintColor is a color to composite on root background given as #RRGGBB or as name +# # alpha is transparency of the tint color. +# # transparent = true +# # tintColor = #FFFFFF +# or +# # tintColor = white +# # alpha = 127 + +# # Autohide +# # autoHide = false +# # heightWhenHidden = 2 + +# } + + + +# 'Plugin' block specifies a plugin to load. It has same syntax for both +# builtin and external plugins. + +# First parameter is 'type'. It's mandatory and must come first +# Legal values are plugin names. Names of builtin plugins are: +# separator - visual separator +# wincmd - 'show desktop' button +# taskbar - lists all opened windows (tasks) +# launchbar - bar with launch button +# image - just shows an image +# dclock - digital clock +# space - just seize space +# pager - thumbnailed view of the desktop +# tray - tray for XEMBED icons (aka docklets) + +# expand - specifies if plugin can accomodate extra space or not [optional] +# padding - extra padding around plugin [optional] +# config {} - block of plugin's private configuration. +# This part is plugin dependant + + +# +# Plugin { +# type = wincmd +# config { +# image = ~/.fbpanel/images/Desktop2.png +# tooltip = Left click to iconify all windows. Middle click to shade them. +# } +# } + + +Global { + edge = bottom + allign = center + margin = 0 + widthtype = percent + width = 100 + height = 24 + transparent = false + tintcolor = ffffff + alpha = 28 + setdocktype = true + setpartialstrut = true + autohide = false + heightWhenHidden = 2 + roundcorners = false + roundcornersradius = 7 + layer = none + MaxElemHeight = 32 +} + + + +Plugin { + type = space + config { + size = 2 + } +} + + +Plugin { + type = menu + config { + IconSize = 22 + #icon = start-here + image = ~/Icons/tux.png + systemmenu { + } + separator { + } + menu { + name = Computer + icon = computer + + item { + name = Lock Display + icon = gnome-lockscreen + action = slock + } + separator { + } + + item { + name = logout + icon = gnome-session-logout + action = /usr/libexec/fbpanel/xlogout + } + + item { + name = Reboot + icon = gnome-session-reboot + action = sudo reboot + } + item { + name = Shutdown + icon = gnome-session-halt + action = sudo shutdown -h now + } + } + } +} + + + +Plugin { + type = space + config { + size = 15 + } +} + + +Plugin { + type = launchbar + config { + button { + icon = file-manager + tooltip = Caja + action = caja + } + + button { + icon = claws-mail + tooltip = Claws Mail + action = claws-mail + } + + button { + image = /opt/google/chrome/product_logo_256.png + tooltip = Chrome + action = google-chrome-stable + } + + button { + image = ~/Icons/battle_net.png + tooltip = Battle.net + action = "/home/rinaldus/Games/Blizzard/launch" + } + + button { + icon = steam + tooltip = Steam + action = steam + } + + button { + Image = ~/Icons/system-monitor.png + tooltip = System Monitor + action = mate-system-monitor + } + + button { + Image = ~/Icons/keepassx.png + tooltip = Личная + action = keepassx "/home/rinaldus/Seafile/KeepassX/private.kdbx" + } + + button { + Image = ~/Icons/nuclear.png + tooltip = НИЦ + action = keepassx "/home/rinaldus/Seafile/KeepassX/nits.kdbx" + } + + button { + Image = ~/Icons/plane.png + tooltip = Александр + action = keepassx "/home/rinaldus/Seafile/KeepassX/alexander.kdbx" + } + + button { + icon = terminator + tooltip = Terminator + action = terminator + } + + } +} + +#Plugin { +# type = space +# config { +# size = 15 +# } +#} + + +#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 = 15 + } +} + +Plugin { + type = pager + config { + showwallpaper = true + } +} + + +Plugin { + type = taskbar + expand = true + config { + ShowIconified = true + ShowMapped = true + ShowAllDesks = false + tooltips = true + IconsOnly = false + MaxTaskWidth = 180 + } +} + + +Plugin { + type = space + config { + size = 15 + } +} + +Plugin { + type = space + config { + size = 10 + } +} + +#Plugin { +# type = mem +# expand = false +# padding = 2 +# config { +# ShowSwap = false +# } +#} + +#Plugin { +# type = cpu +# config { +# Color = green +# } +#} + +Plugin { + type = net + expand = false + padding = 0 + config { + #interface = ppp0 + interface = ppp0 + # set connection limits to make traffic graph more accurate + TxLimit = 20 + RxLimit = 190 + TxColor = green + RxColor = red + } +} + + +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 = dclock +# config { +# ShowSeconds = true +# HoursView = 24 +# TooltipFmt = %D.%M.%Y %H:%m%:s +# #Action = xmessage Please define some command & +# } +#} + +# Text Clock +# ClockFmt: (string) Clock format string. May contain strftime conversion +# specifications and Pango markup information. +# TooltipFmt: (string) Tooltip format string. +# Action: (string) Shell command to execute when clock is clicked. +# ShowCalendar: (boolean) Show a GTK calendar widget when the clock is +# clicked. Only valid if Action is unset. +# ShowTooltip: (boolean) Show tooltip for clock. +Plugin { + type = tclock + config { + ClockFmt = %a %x %H:%M:%S + # 2 line view, time in bold above and date below + # ClockFmt = %-l:%M %P %a %B %-e + TooltipFmt = %A %x + #Action = xmessage Please define some command & + ShowCalendar = true + ShowTooltip = true + } +} + +Plugin { + type = space + config { + size = 5 + } +} + +Plugin { + type = launchbar + config { + button { + icon = gnome-lockscreen + tooltip = Lock + action = slock + } + } + +# '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 + } + } +} diff --git a/obmenu-generator/cache.db b/obmenu-generator/cache.db new file mode 100644 index 0000000..e50665b Binary files /dev/null and b/obmenu-generator/cache.db differ diff --git a/obmenu-generator/config.pl b/obmenu-generator/config.pl new file mode 100644 index 0000000..25ccaab --- /dev/null +++ b/obmenu-generator/config.pl @@ -0,0 +1,97 @@ +#!/usr/bin/perl + +# obmenu-generator - configuration file +# This file will be updated automatically. +# Any additional comment and/or indentation will be lost. + +=for comment + +|| FILTERING + | skip_filename_re : Skip a .desktop file if its name matches the regex. + Name is from the last slash to the end. (filename.desktop) + Example: qr/^(?:gimp|xterm)\b/, # skips 'gimp' and 'xterm' + + | skip_entry : Skip a destkop file if the value from a given key matches the regex. + Example: [ + {key => 'Name', re => qr/(?:about|terminal)/i}, + {key => 'Exec', re => qr/^xterm/}, + ], + + | substitutions : Substitute, by using a regex, in the values of the desktop files. + Example: [ + {key => 'Exec', re => qr/xterm/, value => 'sakura'}, + {key => 'Exec', re => qr/\\\\/, value => '\\', global => 1}, # for wine apps + ], + + +|| ICON SETTINGS + | icon_dirs_first : When looking for icons, look in this directories first, + before looking in the directories of the current icon theme. + Example: [ + "$ENV{HOME}/My icons", + ], + + | icon_dirs_second : Look in this directories after looked in the directories of the + current icon theme. (Before /usr/share/pixmaps) + Example: [ + "/usr/share/icons/gnome", + ], + + | icon_dirs_last : Look in this directories at the very last, after looked in + /usr/share/pixmaps, /usr/share/icons/hicolor and some other + directories. + Example: [ + "/usr/share/icons/Tango", + ], + + | strict_icon_dirs : A true value will make the script to look only inside the directories + specified by you in either one of the above three options. + + | gtk_rc_filename : Absolute path to the GTK configuration file. + | missing_image : Use this icon for missing icons (default: gtk-missing-image) + + +|| KEYS + | name_keys : Valid keys for the item names. + Example: ['Name[fr]', 'GenericName[fr]', 'Name'], # french menu + + +|| PATHS + | desktop_files_paths : Absolute paths which contain .desktop files. + Example: [ + '/usr/share/applications', + "$ENV{HOME}/.local/share/applications", + glob("$ENV{HOME}/.local/share/applications/wine/Programs/*"), + ], + + +|| NOTES + | Regular expressions: + * use qr/RE/ instead of 'RE' + * use qr/RE/i for case insensitive mode + +=cut + +our $CONFIG = { + "editor" => "geany", + "Linux::DesktopFiles" => { + desktop_files_paths => ["/usr/share/applications", "/usr/local/share/applications"], + gtk_rc_filename => "/home/rinaldus/.gtkrc-2.0", + icon_dirs_first => undef, + icon_dirs_last => undef, + icon_dirs_second => undef, + keep_unknown_categories => 1, + skip_entry => undef, + skip_filename_re => undef, + skip_svg_icons => 0, + strict_icon_dirs => undef, + substitutions => undef, + terminalization_format => "%s -e '%s'", + terminalize => 1, + unknown_category_key => "other", + }, + "missing_icon" => "gtk-missing-image", + "name_keys" => ["Name"], + "terminal" => "terminator", + "VERSION" => 0.66, +} diff --git a/obmenu-generator/icons.db b/obmenu-generator/icons.db new file mode 100644 index 0000000..1a4ab8a Binary files /dev/null and b/obmenu-generator/icons.db differ diff --git a/obmenu-generator/schema.pl b/obmenu-generator/schema.pl new file mode 100644 index 0000000..40fc9e5 --- /dev/null +++ b/obmenu-generator/schema.pl @@ -0,0 +1,113 @@ +#!/usr/bin/perl + +# obmenu-generator - schema file + +=for comment + + item: add an item inside the menu {item => ["command", "label", "icon"]}, + cat: add a category inside the menu {cat => ["name", "label", "icon"]}, + sep: horizontal line separator {sep => undef}, {sep => "label"}, + pipe: a pipe menu entry {pipe => ["command", "label", "icon"]}, + raw: any valid Openbox XML string {raw => q(xml string)}, + begin_cat: begin of a category {begin_cat => ["name", "icon"]}, + end_cat: end of a category {end_cat => undef}, + obgenmenu: generic menu settings {obgenmenu => ["label", "icon"]}, + exit: default "Exit" action {exit => ["label", "icon"]}, + +=cut + +# NOTE: +# * Keys and values are case sensitive. Keep all keys lowercase. +# * ICON can be a either a direct path to an icon or a valid icon name +# * Category names are case insensitive. (X-XFCE and x_xfce are equivalent) + +require "$ENV{HOME}/.config/obmenu-generator/config.pl"; + +## Text editor +my $editor = $CONFIG->{editor}; + +our $SCHEMA = [ + + # COMMAND LABEL ICON +# {item => ['xdg-open .', 'File Manager', 'file-manager']}, +# {item => ['xterm', 'Terminal', 'terminal']}, +# {item => ['xdg-open http://', 'Web Browser', 'web-browser']}, +# {item => ['gmrun', 'Run command', 'system-run']}, + + {sep => 'Categories'}, + + # NAME LABEL ICON + {cat => ['utility', 'Accessories', 'applications-utilities']}, + {cat => ['development', 'Development', 'applications-development']}, + {cat => ['education', 'Education', 'applications-science']}, + {cat => ['game', 'Games', 'applications-games']}, + {cat => ['graphics', 'Graphics', 'applications-graphics']}, + {cat => ['audiovideo', 'Multimedia', 'applications-multimedia']}, + {cat => ['network', 'Network', 'applications-internet']}, + {cat => ['office', 'Office', 'applications-office']}, +# {cat => ['other', 'Other', 'applications-other']}, + {cat => ['settings', 'Settings', 'applications-accessories']}, + {cat => ['system', 'System', 'applications-system']}, + + #{cat => ['qt', 'QT Applications', 'qt4logo']}, + #{cat => ['gtk', 'GTK Applications', 'gnome-applications']}, + #{cat => ['x_xfce', 'XFCE Applications', 'applications-other']}, + #{cat => ['gnome', 'GNOME Applications', 'gnome-applications']}, + #{cat => ['consoleonly', 'CLI Applications', 'applications-utilities']}, + + # LABEL ICON + #{begin_cat => ['My category', 'cat-icon']}, + # ... some items ... + #{end_cat => undef}, + + # COMMAND LABEL ICON + #{pipe => ['obbrowser', 'Disk', 'drive-harddisk']}, + + ## Generic advanced settings + #{sep => undef}, + #{obgenmenu => ['Openbox Settings', 'openbox']}, + #{sep => undef}, + + ## Custom advanced settings + {sep => undef}, + {begin_cat => ['Advanced Settings', 'gnome-settings']}, + + # Configuration files + # {item => ["$editor ~/.conkyrc", 'Conky RC', 'text-x-source']}, + # {item => ["$editor ~/.config/tint2/tint2rc", 'Tint2 Panel', 'text-x-source']}, + + # obmenu-generator category + {begin_cat => ['Obmenu-Generator', 'menu-editor']}, + # {item => ["$editor ~/.config/obmenu-generator/schema.pl", 'Menu Schema', 'text-x-source']}, + # {item => ["$editor ~/.config/obmenu-generator/config.pl", 'Menu Config', 'text-x-source']}, + + {sep => undef}, + {item => ['obmenu-generator -p', 'Generate a pipe menu', 'menu-editor']}, + {item => ['obmenu-generator -s -c', 'Generate a static menu', 'menu-editor']}, + {item => ['obmenu-generator -p -i', 'Generate a pipe menu with icons', 'menu-editor']}, + {item => ['obmenu-generator -s -i -c', 'Generate a static menu with icons', 'menu-editor']}, + {sep => undef}, + + {item => ['obmenu-generator -d', 'Refresh Icon Set', 'gtk-refresh']}, + {end_cat => undef}, + + # Openbox category + {begin_cat => ['Openbox', 'openbox']}, + {item => ['openbox --reconfigure', 'Reconfigure Openbox', 'openbox']}, + {item => ["$editor ~/.config/openbox/autostart", 'Openbox Autostart', 'shellscript']}, + {item => ["$editor ~/.config/openbox/rc.xml", 'Openbox RC', 'text-xml']}, + {item => ["$editor ~/.config/openbox/menu.xml", 'Openbox Menu', 'text-xml']}, + {end_cat => undef}, + + {end_cat => undef}, + {sep => undef}, + + ## The xscreensaver lock command + {item => ['slock', 'Lock', 'lock']}, + + # This option uses the default Openbox's action "Exit" + {exit => ['Exit', 'exit']}, + + # This uses the 'oblogout' menu + # {item => ['oblogout', 'Exit', 'exit']}, +] diff --git a/openbox/autostart b/openbox/autostart new file mode 100644 index 0000000..dc5f7b4 --- /dev/null +++ b/openbox/autostart @@ -0,0 +1,46 @@ +# Set Russian layout +setxkbmap -layout us,ru -option "grp:ctrl_shift_toggle,grp_led:scroll" -variant ",winkeys" & + +# Set keyboard repeat delay +xset r rate 150 20 & + +# Disable screen blanking + +xset s noblank & +xset s off & + +# Generate Openbox menu +obmenu-generator -p -i + +# Load panel +fbpanel & + +# Set background image +feh --bg-scale ~/wallpapers/amazingdrawings_1920x1080.jpg + +# Load layout indicator +xxkb & + +# Load Skype +/opt/bin/skype & + +# Load Pidgin +pidgin & + +# Load volumeicon +volumeicon & + +# Load Seafile +/usr/local/bin/seafile-applet & + +# Load polkit-agent for mount drives +/usr/libexec/polkit-gnome-authentication-agent-1 & + +# Load Mail Notifier +mail-notifier & + +# Load Eventlist +eventlist & + +# Load Conky +conky_start & diff --git a/openbox/menu.xml b/openbox/menu.xml new file mode 100644 index 0000000..71de3f2 --- /dev/null +++ b/openbox/menu.xml @@ -0,0 +1,6 @@ + + + + diff --git a/openbox/menu.xml.bak b/openbox/menu.xml.bak new file mode 100644 index 0000000..7ed7788 --- /dev/null +++ b/openbox/menu.xml.bak @@ -0,0 +1,394 @@ + + + + + + + + gnome-calculator + + yes + + + + + + gnome-character-map + + yes + + + + + + ark + + yes + + + + + + + + + gvim + + yes + GVim + + + + + + emacs + + yes + Emacs + + + + + + gedit + + yes + + + + + + kate + + yes + + + + + + kwrite + + yes + + + + + + + + + terminator + + + + + gnome-terminal + + yes + + + + + + xfce4-terminal + + yes + + + + + + konsole + + yes + + + + + xterm + + + + + + + firefox + + yes + Firefox + + + + + + chromium + + yes + Chromium + + + + + + konqueror + + yes + + + + + + skype + + yes + + + + + + pidgin + + yes + + + + + + kopete + + yes + + + + + + xchat + + yes + + + + + + + + + ooffice -base + + + + + ooffice -calc + + + + + ooffice -draw + + + + + ooffice -impress + + + + + ooffice -math + + + + + ooffice-printeradmin + + + + + ooffice -writer + + + + + + + + amarok + + yes + + + + + + rhythmbox + + yes + + + + + + k3b + + yes + + + + + + gmplayer + + yes + MPlayer + + + + + + totem + + yes + + + + + + + + + nautilus --no-desktop --browser + + yes + + + + + + Thunar + + yes + + + + + + kfmclient openURL ~ + + yes + + + + + + rox + + yes + ROX-Filer + + + + + + pcmanfm + + yes + + + + + + + + + gimp + + yes + + + + + + gwenview + + yes + + + + + + dia + + yes + + + + + + inkscape + + yes + + + + + + + + + obconf + yes + + + + + gnome-control-center + yes + + + + + kcontrol + yes + + + + + xfce-setting-show + yes + + + + + xdg-open http://localhost:631/ + + no + cups + + + + + + + + + + + + + + + + + + + + + + + + + yes + + + + + diff --git a/openbox/rc.xml b/openbox/rc.xml new file mode 100644 index 0000000..154977c --- /dev/null +++ b/openbox/rc.xml @@ -0,0 +1,816 @@ + + + + + 10 + 20 + + + yes + + no + + yes + + no + + 200 + + no + + + + Smart + +
yes
+ + Primary + + 1 + +
+ + Bear2 + NLIMC + + yes + yes + + Droid Sans + 12 + + Normal + + Normal + + + + Droid Sans + 12 + + Normal + + Normal + + + + Droid Sans + 10 + + Normal + + Normal + + + + Droid Sans + 10 + + Normal + + Normal + + + + Droid Sans + 10 + + Normal + + Normal + + + + Droid Sans + 10 + + Normal + + Normal + + + + + + 2 + 1 + + + + 875 + + + + yes + Nonpixel + + Center + + + + 10 + + 10 + + + + + + 0 + 0 + 0 + 0 + + + TopLeft + + 0 + 0 + no + Above + + Vertical + + no + 300 + + 300 + + Middle + + + + C-g + + + + left + no + + + + + right + no + + + + + up + no + + + + + down + no + + + + + left + no + + + + + right + no + + + + + up + no + + + + + down + no + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + + + + + + + + + + + + + client-menu + + + + + + + + + + + + + + + + + + + + + + + + yes + yes + + + + + + + + + + + right + + + + + left + + + + + up + + + + + down + + + + + + + true + GMRun + + gmrun + + + + + + true + XKill + + xkill + + + + + + + true + Screenshot + + screengrab + + + + + + + + 1 + + 500 + + 400 + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + + + + + + no + + + + + + + + + + + yes + + + + + + + + + + + + + + + + + + + + + + + client-menu + + + + + + + top + + + + + + + left + + + + + + + right + + + + + + + bottom + + + + + + + client-menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + client-menu + + + + + + + client-menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + vertical + + + + + horizontal + + + + + + + + + + + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + + + + + + + + + client-list-combined-menu + + + + + root-menu + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + menu.xml + 200 + + no + + 100 + + 400 + + yes + + yes + + + + + + + center + center + + + + + yes + + +
diff --git a/sets/openbox-de b/sets/openbox-de new file mode 100644 index 0000000..e26021f --- /dev/null +++ b/sets/openbox-de @@ -0,0 +1,20 @@ +app-arch/engrampa +app-text/atril +dev-python/pygobject +lxde-base/lxappearance-obconf +mate-base/caja +mate-extra/mate-system-monitor +media-gfx/eom +media-gfx/feh +media-sound/volumeicon +x11-apps/setxkbmap +x11-apps/xkill +x11-misc/dunst +x11-misc/fbpanel +x11-misc/gmrun +x11-misc/obconf +x11-misc/obmenu +x11-misc/obmenu-generator +x11-misc/screengrab +x11-misc/slock +x11-misc/xxkb