master
Daniel Napora 2020-02-04 22:22:54 +01:00
parent 4c550069ee
commit 33913a0288
76 changed files with 2030 additions and 2356 deletions

View File

@ -201,24 +201,22 @@ arc-solid-gtk-theme
arc-icon-theme
manjaro-grub-theme-brown
manjaro-openbox-maia
wallpapers-2018
#wallpapers-2018
matcha-gtk-theme
papirus-maia-icon-theme
xcursor-breeze
xcursor-chicago95-git
chicago95-gtk-theme-git
chicago95-icon-theme-git
elementary-xfce-icons
gtk-theme-elementary
#---------=> fonts packages
manjaro-openbox-fonts
ttf-dejavu
ttf-font-awesome
ttf-font-logos
#ttf-font-awesome
#ttf-font-logos
ttf-icomoon-icons
ttf-material-icons
ttf-polybar-icons
ttf-roboto
#ttf-material-icons
#ttf-polybar-icons
#ttf-roboto
noto-fonts
#---------=> network
@ -286,7 +284,7 @@ lx-colors-themes
#numix-square-icon-theme
#numix-circle-icon-theme
oblogout-manjaro
dmenu-extended-git
#dmenu-extended-git
#hexchat
obkey
bash-completion

View File

@ -1,67 +0,0 @@
{
"alias_applications": true,
"alias_display_format": "{name}",
"exclude_items": [],
"filebrowser": "exo-open",
"fileopener": "exo-open",
"filter_binaries": false,
"follow_symlinks": false,
"frequently_used": 0,
"global_ignore_folders": [],
"ignore_folders": [],
"include_applications": true,
"include_binaries": false,
"include_hidden_files": false,
"include_hidden_folders": false,
"include_items": [],
"indicator_alias": "",
"indicator_edit": "*",
"indicator_submenu": "->",
"menu": "rofi",
"menu_arguments": [
"-dmenu",
"-i"
],
"password_helper": [
"yad",
"--password",
"--title={prompt}"
],
"path_aliasFile": "",
"path_shellCommand": "~/.dmenuEextended_shellCommand.sh",
"prompt": "Uruchom:",
"scan_hidden_folders": false,
"terminal": "terminator",
"valid_extensions": [
"py",
"svg",
"pdf",
"txt",
"png",
"jpg",
"gif",
"php",
"tex",
"odf",
"ods",
"avi",
"mpg",
"mp3",
"lyx",
"bib",
"iso",
"ps",
"zip",
"xcf",
"doc",
"docxxls",
"xlsx",
"md",
"html",
"sublime-project"
],
"watch_folders": [
"~/"
],
"webbrowser": "exo-open --launch WebBrowser"
}

View File

@ -1,21 +0,0 @@
{
"default": "Google",
"providers": [
{
"title": "Google",
"url": "https://www.google.com/search?q={searchterm}"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/Special:Search?search={searchterm}"
},
{
"title": "Google images",
"url": "https://www.google.com/images?q={searchterm}"
},
{
"title": "Github",
"url": "https://github.com/search?q={searchterm}"
}
]
}

View File

@ -1,3 +0,0 @@
import os
import glob
__all__ = [ os.path.basename(f)[:-3] for f in glob.glob(os.path.dirname(__file__)+"/*.py")]

View File

@ -1,107 +0,0 @@
import dmenu_extended
import sys
file_prefs = dmenu_extended.path_prefs + '/internetSearch.json'
class extension(dmenu_extended.dmenu):
title = 'Internet search: '
is_submenu = True
def create_default_providers(self):
default = {
'providers': [
{
'title': 'Google',
'url': 'https://www.google.com/search?q={searchterm}'
},
{
'title': 'Wikipedia',
'url': 'https://en.wikipedia.org/wiki/Special:Search?search={searchterm}'
},
{
'title': 'Google images',
'url': 'https://www.google.com/images?q={searchterm}'
},
{
'title': 'Github',
'url': 'https://github.com/search?q={searchterm}'
}
],
'default': 'Google'
}
self.save_json(file_prefs, default)
def load_providers(self):
providers = self.load_json(file_prefs)
if providers == False:
self.create_default_providers()
providers = self.load_json(file_prefs)
uptodate = False
for provider in providers['providers']:
if provider['url'].find('{searchterm}') != -1:
uptodate = True
break
if not uptodate:
print('Search providers list is out-of-date, replacing (old list saved)')
self.save_json(file_prefs[:-5]+'_old.json', providers)
self.create_default_providers()
return self.load_providers()
return providers
def conduct_search(self, searchTerm, providerName=False):
default = self.providers['default']
primary = False
fallback = False
for provider in self.providers['providers']:
if provider['title'] == default:
# fallback = provider['url'].replace("%keywords%", searchTerm)
fallback = provider['url'].format(searchterm=searchTerm)
elif provider['title'] == providerName:
# primary = provider['url'].replace("%keywords%", searchTerm)
primary = provider['url'].format(searchterm=searchTerm)
if primary:
self.open_url(primary)
else:
self.open_url(fallback)
def run(self, inputText):
self.providers = self.load_providers()
if inputText != '':
self.conduct_search(inputText)
else:
items = []
for provider in self.providers['providers']:
items.append(provider['title'])
item_editPrefs = self.prefs['indicator_edit'] + ' Edit search providers'
items.append(item_editPrefs)
provider = self.menu(items, prompt='Select provider:')
if provider == item_editPrefs:
self.open_file(file_prefs)
elif provider == '':
sys.exit()
else:
if provider not in items:
self.conduct_search(provider)
else:
search = self.menu('', prompt='Enter search')
if search == '':
sys.exit()
else:
self.conduct_search(search, provider)

View File

@ -1,269 +0,0 @@
# -*- coding: utf8 -*-
import dmenu_extended
import os
class extension(dmenu_extended.dmenu):
title = 'System package management'
is_submenu = True
detected_packageManager = False
def __init__(self):
self.load_preferences()
self.cache_packages = dmenu_extended.path_cache + '/packages.txt'
# Determine package manager
if os.path.exists('/usr/bin/apt-get'):
# We are Debian based
self.command_installPackage = 'sudo apt-get install '
self.command_removePackage = 'sudo apt-get remove '
self.command_listInstalled = ['dpkg', '-l']
self.command_listAvailable = ['apt-cache', 'search', '']
self.command_systemUpdate = 'sudo apt-get update && sudo apt-get upgrade'
self.detected_packageManager = 'apt-get'
elif os.path.exists('/usr/bin/yum'):
# We are Red Hat based
self.command_installPackage = 'sudo yum install '
self.command_removePackage = 'sudo yum remove '
self.command_listInstalled = 'yum list installed'
self.command_listAvailable = ["yum", "search", ""]
self.command_systemUpdate = 'sudo yum update'
self.detected_packageManager = 'yum'
elif os.path.exists('/usr/bin/dnf'):
self.command_installPackage = 'sudo dnf install '
self.command_removePackage = 'sudo dnf remove '
self.command_listInstalled = 'dnf list installed'
self.command_listAvailable = ["dnf", "search", ""]
self.command_systemUpdate = 'sudo dnf update'
self.detected_packageManager = 'dnf'
elif os.path.exists('/usr/bin/pacman'):
# We are Arch based
self.command_installPackage = 'sudo pacman -S '
self.command_removePackage = 'sudo pacman -R '
self.command_listInstalled = 'pacman -Q'
self.command_listAvailable = 'pacman -Ss'
self.command_systemUpdate = 'sudo pacman -Syu'
self.detected_packageManager = 'pacman'
elif os.path.exists('/usr/bin/emerge'):
# We are Gentoo based
self.command_installPackage = 'sudo emerge '
self.command_removePackage = 'sudo emerge --unmerge '
self.command_listInstalled = 'cd /var/db/pkg/ && ls -d */* | sed \'s/\-[0-9].*$//\' > ' + dmenu_extended.path_cache + '/tmp.txt'
self.command_listAvailable = 'emerge --search "" | grep "* " | cut -c 4- | sed "s/\[ Masked \]//g" | sed -n \'/^app-accessibility/,$p\' > ' + dmenu_extended.path_cache + '/tmp.txt'
self.command_systemUpdate = 'sudo emerge --sync && sudo emerge -uDv @world'
self.detected_packageManager = 'portage'
def install_package(self):
packages = self.cache_open(self.cache_packages)
if packages == False:
self.menu('No package database exists. Press enter to build cache')
self.build_package_cache()
packages = self.cache_open(self.cache_packages)
package = self.menu(packages, prompt="Install:")
if len(package) > 0:
self.open_terminal(self.command_installPackage + package.split(' ')[0], True)
self.rebuild_notice()
def remove_package(self):
self.message_open('Collecting list of installed packages')
if self.detected_packageManager == 'apt-get':
packages = self.installedPackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.installedPackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.installedPackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.installedPackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.u_installedPackages_portage()
self.message_close()
package = self.select(packages, prompt="Uninstall:")
if package is not -1:
self.open_terminal(self.command_removePackage + package, True)
self.rebuild_notice()
def update_package(self):
self.message_open('Collecting list of installed packages')
if self.detected_packageManager == 'apt-get':
packages = self.installedPackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.installedPackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.installedPackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.installedPackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.installedPackages_portage()
self.message_close()
package = self.select(packages, prompt="Update:")
if package is not -1:
self.open_terminal(self.command_installPackage + package, True)
def build_package_cache(self, message=True):
if message:
self.message_open('Building package cache')
if self.detected_packageManager == 'apt-get':
packages = self.availablePackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.availablePackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.availablePackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.availablePackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.availablePackages_portage()
self.cache_save(packages, self.cache_packages)
if message:
self.message_close()
self.menu("Package cache built")
def update_system(self):
self.open_terminal(self.command_systemUpdate, True)
def installedPackages_aptget(self):
packages = self.command_output(self.command_listInstalled)
out = []
for package in packages:
tmp = package.split()
if len(tmp) > 6:
out.append(tmp[1])
out.sort()
return list(set(out))
def installedPackages_yum(self):
packages = self.command_output(self.command_listInstalled)
packages.sort()
return list(set(packages))
def installedPackages_dnf(self):
packages = self.command_output(self.command_listInstalled)
packages.sort()
return list(set(packages))
def installedPackages_pacman(self):
packages = self.command_output(self.command_listInstalled)
out = []
for package in packages:
if len(package) > 0 and package[0] != " ":
out.append(package.split(' ')[0])
out.sort()
return list(set(out))
def installedPackages_portage(self):
os.system(self.command_listInstalled)
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp.txt')
return packages
def u_installedPackages_portage(self):
os.system('cd /var/db/pkg/ && ls -d */* > ' + dmenu_extended.path_cache + '/tmp.txt')
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp.txt')
return packages
def availablePackages_aptget(self):
packages = self.command_output(self.command_listAvailable)
packages.sort()
return packages
def availablePackages_yum(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
tmp = package.split( ' : ' )
if len(tmp) > 1:
if tmp[0][0] == " ":
last += " " + tmp[1]
else:
out.append(last)
last = tmp[0].split('.')[0] + ' - ' + tmp[1]
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_dnf(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
tmp = package.split( ' : ' )
if len(tmp) > 1:
if tmp[0][0] == " ":
last += " " + tmp[1]
else:
out.append(last)
last = tmp[0].split('.')[0] + ' - ' + tmp[1]
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_pacman(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
if package != "":
if package[0:3] == " ":
last += " - " + package[4:]
else:
out.append(last)
last = package
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_portage(self):
os.system(self.command_listAvailable)
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp*')
return packages
def rebuild_notice(self):
# gnome-termainal forks from the calling process so this message shows
# before the action has completed.
if self.prefs['terminal'] != 'gnome-terminal':
rebuild = self.menu(["Cache may be out-of-date, rebuild at your convenience.", "* Rebuild cache now"])
if rebuild == "* Rebuild cache now":
self.cache_regenerate()
def run(self, inputText):
if self.detected_packageManager == False:
self.menu(["Your system package manager could not be determined"])
self.sys.exit()
else:
print('Detected system package manager as ' + str(self.detected_packageManager))
items = [self.prefs['indicator_submenu'] + ' Install a new package',
self.prefs['indicator_submenu'] + ' Uninstall a package',
self.prefs['indicator_submenu'] + ' Update a package',
'Rebuild the package cache',
'Perform system upgrade']
selectedIndex = self.select(items, prompt='Action:', numeric=True)
if selectedIndex != -1:
if selectedIndex == 0:
self.install_package()
elif selectedIndex == 1:
self.remove_package()
elif selectedIndex == 2:
self.update_package()
elif selectedIndex == 3:
self.build_package_cache()
elif selectedIndex == 4:
self.update_system()

View File

@ -635,7 +635,7 @@ ascii_distro="auto"
# Example:
# ascii_colors=(distro) - Ascii is colored based on Distro colors.
# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
ascii_colors=(distro)
ascii_colors=(2 7)
# Bold ascii logo
# Whether or not to bold the ascii logo.

View File

@ -2,14 +2,15 @@
##### OPENBOX MINIMAL/EXTRA PROFILE
#---------=> media player
>extra deadbeef
deadbeef
>extra smplayer
>extra smplayer-skins
>extra smplayer-themes
>extra smtube
audacious
#audacious
mpv
youtube-dl
streamlink
#---------=> media controls/codecs/plugins
ffmpeg
@ -137,7 +138,7 @@ pavucontrol
playerctl
pulseaudio
pulseaudio-alsa
volumeicon
#volumeicon
xfce4-volumed-pulse
#---------=> CLI internet apps
@ -150,13 +151,13 @@ mc
#manjaro-ranger-settings
#---------=> GUI file manager
pcmanfm
pcmanfm-gtk3
#---------=> disk utilities
clonezilla
#clonezilla
gparted
testdisk
timeshift
#testdisk
#timeshift
#---------=> basic utilities
catimg
@ -172,9 +173,11 @@ mesa-demos
neofetch
pastebinit
ps_mem
python-xdg
tree
upower
xterm
#xterm
jq
#---------=> network utilities
arp-scan
@ -217,22 +220,21 @@ xcursor-breeze
###xcursor-chicago95-git
###chicago95-gtk-theme-git
###chicago95-icon-theme-git
elementary-xfce-icons
gtk-theme-elementary
#---------=> fonts packages
manjaro-openbox-fonts
ttf-dejavu
###ttf-font-awesome
###ttf-font-logos
ttf-icomoon-icons
ttf-material-icons
###ttf-polybar-icons
ttf-roboto
noto-fonts
#---------=> network
network-manager-applet
networkmanager
networkmanager-dmenu
#networkmanager-dmenu
networkmanager-openvpn
openresolv
modem-manager-gui
@ -262,6 +264,7 @@ obconf
obmenu-generator
obbrowser
openbox
pyradio
rofi
scrot
###skippy-xd
@ -283,7 +286,7 @@ mabox-release
mabox-keyring
mabox-pipemenus
mabox-utilities
mabox-artwork
mabox-wallpapers-2020
mb-jgtools
cornora
@ -296,7 +299,7 @@ lx-colors-themes
numix-icon-theme
numix-square-icon-theme
numix-circle-icon-theme
dmenu-extended-git
#dmenu-extended-git
#hexchat
obkey
bash-completion

View File

@ -1,20 +0,0 @@
[gtkui]
column_widths=10,275,175,10,175,175,10,100,39,10,275,275,275,10,275
player_x=176
player_y=90
[gtkui-layout]
item_count=0
[skins]
autoscroll_songname=FALSE
equalizer_visible=TRUE
equalizer_x=101
equalizer_y=278
player_x=101
player_y=162
playlist_visible=TRUE
playlist_x=101
playlist_y=394
skin=/usr/share/audacious/Skins/Refugee

View File

@ -1,254 +0,0 @@
[Presets]
Preset0=Classical
Preset1=Club
Preset2=Dance
Preset3=Flat
Preset4=Live
Preset5=Laptop Speakers/Headphone
Preset6=Rock
Preset7=Pop
Preset8=Full Bass and Treble
Preset9=Full Bass
Preset10=Full Treble
Preset11=Soft
Preset12=Party
Preset13=Ska
Preset14=Soft Rock
Preset15=Large Hall
Preset16=Reggae
Preset17=Techno
[Classical]
Preamp=0.375
Band0=0.375
Band1=0.375
Band2=0.375
Band3=0.375
Band4=0.375
Band5=0.375
Band6=-4.5
Band7=-4.5
Band8=-4.5
Band9=-6
[Club]
Preamp=0.375
Band0=0.375
Band1=0.375
Band2=2.25
Band3=3.75
Band4=3.75
Band5=3.75
Band6=2.25
Band7=0.375
Band8=0.375
Band9=0.375
[Dance]
Preamp=0.375
Band0=6
Band1=4.5
Band2=1.5
Band3=0
Band4=0
Band5=-3.75
Band6=-4.5
Band7=-4.5
Band8=0
Band9=0
[Flat]
Preamp=0.375
Band0=0.375
Band1=0.375
Band2=0.375
Band3=0.375
Band4=0.375
Band5=0.375
Band6=0.375
Band7=0.375
Band8=0.375
Band9=0.375
[Live]
Preamp=0.375
Band0=-3
Band1=0.375
Band2=2.625
Band3=3.375
Band4=3.75
Band5=3.75
Band6=2.625
Band7=1.875
Band8=1.875
Band9=1.5
[Laptop Speakers/Headphone]
Preamp=0.375
Band0=3
Band1=6.75
Band2=3.375
Band3=-2.25
Band4=-1.5
Band5=1.125
Band6=3
Band7=6
Band8=7.875
Band9=9
[Rock]
Preamp=0.375
Band0=4.875
Band1=3
Band2=-3.375
Band3=-4.875
Band4=-2.25
Band5=2.625
Band6=5.625
Band7=6.75
Band8=6.75
Band9=6.75
[Pop]
Preamp=0.375
Band0=-1.125
Band1=3
Band2=4.5
Band3=4.875
Band4=3.375
Band5=-0.75
Band6=-1.5
Band7=-1.5
Band8=-1.125
Band9=-1.125
[Full Bass and Treble]
Preamp=0.375
Band0=4.5
Band1=3.75
Band2=0.375
Band3=-4.5
Band4=-3
Band5=1.125
Band6=5.25
Band7=6.75
Band8=7.5
Band9=7.5
[Full Bass]
Preamp=0.375
Band0=6
Band1=6
Band2=6
Band3=3.75
Band4=1.125
Band5=-2.625
Band6=-5.25
Band7=-6.375
Band8=-6.75
Band9=-6.75
[Full Treble]
Preamp=0.375
Band0=-6
Band1=-6
Band2=-6
Band3=-2.625
Band4=1.875
Band5=6.75
Band6=9.75
Band7=9.75
Band8=9.75
Band9=10.5
[Soft]
Preamp=0.375
Band0=3
Band1=1.125
Band2=-0.75
Band3=-1.5
Band4=-0.75
Band5=2.625
Band6=5.25
Band7=6
Band8=6.75
Band9=7.5
[Party]
Preamp=0.375
Band0=4.5
Band1=4.5
Band2=0.375
Band3=0.375
Band4=0.375
Band5=0.375
Band6=0.375
Band7=0.375
Band8=4.5
Band9=4.5
[Ska]
Preamp=0.375
Band0=-1.5
Band1=-3
Band2=-2.625
Band3=-0.375
Band4=2.625
Band5=3.75
Band6=5.625
Band7=6
Band8=6.75
Band9=6
[Soft Rock]
Preamp=0.375
Band0=2.625
Band1=2.625
Band2=1.5
Band3=-0.375
Band4=-2.625
Band5=-3.375
Band6=-2.25
Band7=-0.375
Band8=1.875
Band9=5.625
[Large Hall]
Preamp=0.375
Band0=6.375
Band1=6.375
Band2=3.75
Band3=3.75
Band4=0.375
Band5=-3
Band6=-3
Band7=-3
Band8=0.375
Band9=0.375
[Reggae]
Preamp=0.375
Band0=0.375
Band1=0.375
Band2=-0.375
Band3=-3.75
Band4=0.375
Band5=4.125
Band6=4.125
Band7=0.375
Band8=0.375
Band9=0.375
[Techno]
Preamp=0.375
Band0=4.875
Band1=3.75
Band2=0.375
Band3=-3.375
Band4=-3
Band5=0.375
Band6=4.875
Band7=6
Band8=6
Band9=5.625

View File

@ -85,24 +85,29 @@ TEXT
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
${color2}${hr 1}${voffset -4}
${color2}menedżer plików ${alignr}${color}super+f
${color2}menu ${alignr}${color}super / super+spacja
${color2}uruchom... ${alignr}${color}super+m / alt+F2
${color2}przeglądarka www ${alignr}${color}super+w
${color2}terminal ${alignr}${color}super+t
${color2}kontrola głośności ${alignr}${color}super+v
${color2}menu ${alignr}${color}super / super+spacja
${color2}uruchom... ${alignr}${color}super+m / alt+F2
${color2}zrzuty ekranu... ${alignr}${color}PrtScr
${color2}wł/wył Compton ${alignr}${color}super+c
${color2}blokuj ekran ${alignr}${color}super+l
${color2}xkill ${alignr}${color}super+k
${color2}wyjście ${alignr}${color}super+x
${color}PANELE${voffset -6}
${color2}${hr 1}${voffset -4}
${color2}miejsca (lewy) ${alignr} ${color}ctrl+TAB
${color2}ustawienia (prawy) ${alignr} ${color}super+TAB
${color2}pokaż/ukryj DOK (Gkrellm) ${alignr} ${color}super+alt+d
${color}OKNA${voffset -6}
${color2}${hr 1}${voffset -4}
${color2}zamknij ${alignr} ${color}alt+F4
${color2}minimalizuj ${alignr} ${color}alt+F5
${color2}maksymalizacja ${alignr} ${color}alt+F6
${color2}obniż ${alignr} ${color}alt+esc
${color2}pokaż pulpit ${alignr} ${color}super+d
${color2}wł/wył obramowanie ${alignr} ${color}super+b
${color2}wł/wył pełny ekran ${alignr} ${color}F11
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
${color2}rozmieszczanie okien:
${color2} - połowa ekranu ${alignr} ${color}super+strzałki

View File

@ -1,67 +0,0 @@
{
"alias_applications": true,
"alias_display_format": "{name}",
"exclude_items": [],
"filebrowser": "exo-open",
"fileopener": "exo-open",
"filter_binaries": false,
"follow_symlinks": false,
"frequently_used": 0,
"global_ignore_folders": [],
"ignore_folders": [],
"include_applications": true,
"include_binaries": false,
"include_hidden_files": false,
"include_hidden_folders": false,
"include_items": [],
"indicator_alias": "",
"indicator_edit": "*",
"indicator_submenu": "->",
"menu": "rofi",
"menu_arguments": [
"-dmenu",
"-i"
],
"password_helper": [
"yad",
"--password",
"--title={prompt}"
],
"path_aliasFile": "",
"path_shellCommand": "~/.dmenuEextended_shellCommand.sh",
"prompt": "Uruchom:",
"scan_hidden_folders": false,
"terminal": "terminator",
"valid_extensions": [
"py",
"svg",
"pdf",
"txt",
"png",
"jpg",
"gif",
"php",
"tex",
"odf",
"ods",
"avi",
"mpg",
"mp3",
"lyx",
"bib",
"iso",
"ps",
"zip",
"xcf",
"doc",
"docxxls",
"xlsx",
"md",
"html",
"sublime-project"
],
"watch_folders": [
"~/"
],
"webbrowser": "exo-open --launch WebBrowser"
}

View File

@ -1,21 +0,0 @@
{
"default": "Google",
"providers": [
{
"title": "Google",
"url": "https://www.google.com/search?q={searchterm}"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/Special:Search?search={searchterm}"
},
{
"title": "Google images",
"url": "https://www.google.com/images?q={searchterm}"
},
{
"title": "Github",
"url": "https://github.com/search?q={searchterm}"
}
]
}

View File

@ -1,3 +0,0 @@
import os
import glob
__all__ = [ os.path.basename(f)[:-3] for f in glob.glob(os.path.dirname(__file__)+"/*.py")]

View File

@ -1,107 +0,0 @@
import dmenu_extended
import sys
file_prefs = dmenu_extended.path_prefs + '/internetSearch.json'
class extension(dmenu_extended.dmenu):
title = 'Internet search: '
is_submenu = True
def create_default_providers(self):
default = {
'providers': [
{
'title': 'Google',
'url': 'https://www.google.com/search?q={searchterm}'
},
{
'title': 'Wikipedia',
'url': 'https://en.wikipedia.org/wiki/Special:Search?search={searchterm}'
},
{
'title': 'Google images',
'url': 'https://www.google.com/images?q={searchterm}'
},
{
'title': 'Github',
'url': 'https://github.com/search?q={searchterm}'
}
],
'default': 'Google'
}
self.save_json(file_prefs, default)
def load_providers(self):
providers = self.load_json(file_prefs)
if providers == False:
self.create_default_providers()
providers = self.load_json(file_prefs)
uptodate = False
for provider in providers['providers']:
if provider['url'].find('{searchterm}') != -1:
uptodate = True
break
if not uptodate:
print('Search providers list is out-of-date, replacing (old list saved)')
self.save_json(file_prefs[:-5]+'_old.json', providers)
self.create_default_providers()
return self.load_providers()
return providers
def conduct_search(self, searchTerm, providerName=False):
default = self.providers['default']
primary = False
fallback = False
for provider in self.providers['providers']:
if provider['title'] == default:
# fallback = provider['url'].replace("%keywords%", searchTerm)
fallback = provider['url'].format(searchterm=searchTerm)
elif provider['title'] == providerName:
# primary = provider['url'].replace("%keywords%", searchTerm)
primary = provider['url'].format(searchterm=searchTerm)
if primary:
self.open_url(primary)
else:
self.open_url(fallback)
def run(self, inputText):
self.providers = self.load_providers()
if inputText != '':
self.conduct_search(inputText)
else:
items = []
for provider in self.providers['providers']:
items.append(provider['title'])
item_editPrefs = self.prefs['indicator_edit'] + ' Edit search providers'
items.append(item_editPrefs)
provider = self.menu(items, prompt='Select provider:')
if provider == item_editPrefs:
self.open_file(file_prefs)
elif provider == '':
sys.exit()
else:
if provider not in items:
self.conduct_search(provider)
else:
search = self.menu('', prompt='Enter search')
if search == '':
sys.exit()
else:
self.conduct_search(search, provider)

View File

@ -1,269 +0,0 @@
# -*- coding: utf8 -*-
import dmenu_extended
import os
class extension(dmenu_extended.dmenu):
title = 'System package management'
is_submenu = True
detected_packageManager = False
def __init__(self):
self.load_preferences()
self.cache_packages = dmenu_extended.path_cache + '/packages.txt'
# Determine package manager
if os.path.exists('/usr/bin/apt-get'):
# We are Debian based
self.command_installPackage = 'sudo apt-get install '
self.command_removePackage = 'sudo apt-get remove '
self.command_listInstalled = ['dpkg', '-l']
self.command_listAvailable = ['apt-cache', 'search', '']
self.command_systemUpdate = 'sudo apt-get update && sudo apt-get upgrade'
self.detected_packageManager = 'apt-get'
elif os.path.exists('/usr/bin/yum'):
# We are Red Hat based
self.command_installPackage = 'sudo yum install '
self.command_removePackage = 'sudo yum remove '
self.command_listInstalled = 'yum list installed'
self.command_listAvailable = ["yum", "search", ""]
self.command_systemUpdate = 'sudo yum update'
self.detected_packageManager = 'yum'
elif os.path.exists('/usr/bin/dnf'):
self.command_installPackage = 'sudo dnf install '
self.command_removePackage = 'sudo dnf remove '
self.command_listInstalled = 'dnf list installed'
self.command_listAvailable = ["dnf", "search", ""]
self.command_systemUpdate = 'sudo dnf update'
self.detected_packageManager = 'dnf'
elif os.path.exists('/usr/bin/pacman'):
# We are Arch based
self.command_installPackage = 'sudo pacman -S '
self.command_removePackage = 'sudo pacman -R '
self.command_listInstalled = 'pacman -Q'
self.command_listAvailable = 'pacman -Ss'
self.command_systemUpdate = 'sudo pacman -Syu'
self.detected_packageManager = 'pacman'
elif os.path.exists('/usr/bin/emerge'):
# We are Gentoo based
self.command_installPackage = 'sudo emerge '
self.command_removePackage = 'sudo emerge --unmerge '
self.command_listInstalled = 'cd /var/db/pkg/ && ls -d */* | sed \'s/\-[0-9].*$//\' > ' + dmenu_extended.path_cache + '/tmp.txt'
self.command_listAvailable = 'emerge --search "" | grep "* " | cut -c 4- | sed "s/\[ Masked \]//g" | sed -n \'/^app-accessibility/,$p\' > ' + dmenu_extended.path_cache + '/tmp.txt'
self.command_systemUpdate = 'sudo emerge --sync && sudo emerge -uDv @world'
self.detected_packageManager = 'portage'
def install_package(self):
packages = self.cache_open(self.cache_packages)
if packages == False:
self.menu('No package database exists. Press enter to build cache')
self.build_package_cache()
packages = self.cache_open(self.cache_packages)
package = self.menu(packages, prompt="Install:")
if len(package) > 0:
self.open_terminal(self.command_installPackage + package.split(' ')[0], True)
self.rebuild_notice()
def remove_package(self):
self.message_open('Collecting list of installed packages')
if self.detected_packageManager == 'apt-get':
packages = self.installedPackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.installedPackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.installedPackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.installedPackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.u_installedPackages_portage()
self.message_close()
package = self.select(packages, prompt="Uninstall:")
if package is not -1:
self.open_terminal(self.command_removePackage + package, True)
self.rebuild_notice()
def update_package(self):
self.message_open('Collecting list of installed packages')
if self.detected_packageManager == 'apt-get':
packages = self.installedPackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.installedPackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.installedPackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.installedPackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.installedPackages_portage()
self.message_close()
package = self.select(packages, prompt="Update:")
if package is not -1:
self.open_terminal(self.command_installPackage + package, True)
def build_package_cache(self, message=True):
if message:
self.message_open('Building package cache')
if self.detected_packageManager == 'apt-get':
packages = self.availablePackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.availablePackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.availablePackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.availablePackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.availablePackages_portage()
self.cache_save(packages, self.cache_packages)
if message:
self.message_close()
self.menu("Package cache built")
def update_system(self):
self.open_terminal(self.command_systemUpdate, True)
def installedPackages_aptget(self):
packages = self.command_output(self.command_listInstalled)
out = []
for package in packages:
tmp = package.split()
if len(tmp) > 6:
out.append(tmp[1])
out.sort()
return list(set(out))
def installedPackages_yum(self):
packages = self.command_output(self.command_listInstalled)
packages.sort()
return list(set(packages))
def installedPackages_dnf(self):
packages = self.command_output(self.command_listInstalled)
packages.sort()
return list(set(packages))
def installedPackages_pacman(self):
packages = self.command_output(self.command_listInstalled)
out = []
for package in packages:
if len(package) > 0 and package[0] != " ":
out.append(package.split(' ')[0])
out.sort()
return list(set(out))
def installedPackages_portage(self):
os.system(self.command_listInstalled)
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp.txt')
return packages
def u_installedPackages_portage(self):
os.system('cd /var/db/pkg/ && ls -d */* > ' + dmenu_extended.path_cache + '/tmp.txt')
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp.txt')
return packages
def availablePackages_aptget(self):
packages = self.command_output(self.command_listAvailable)
packages.sort()
return packages
def availablePackages_yum(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
tmp = package.split( ' : ' )
if len(tmp) > 1:
if tmp[0][0] == " ":
last += " " + tmp[1]
else:
out.append(last)
last = tmp[0].split('.')[0] + ' - ' + tmp[1]
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_dnf(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
tmp = package.split( ' : ' )
if len(tmp) > 1:
if tmp[0][0] == " ":
last += " " + tmp[1]
else:
out.append(last)
last = tmp[0].split('.')[0] + ' - ' + tmp[1]
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_pacman(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
if package != "":
if package[0:3] == " ":
last += " - " + package[4:]
else:
out.append(last)
last = package
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_portage(self):
os.system(self.command_listAvailable)
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp*')
return packages
def rebuild_notice(self):
# gnome-termainal forks from the calling process so this message shows
# before the action has completed.
if self.prefs['terminal'] != 'gnome-terminal':
rebuild = self.menu(["Cache may be out-of-date, rebuild at your convenience.", "* Rebuild cache now"])
if rebuild == "* Rebuild cache now":
self.cache_regenerate()
def run(self, inputText):
if self.detected_packageManager == False:
self.menu(["Your system package manager could not be determined"])
self.sys.exit()
else:
print('Detected system package manager as ' + str(self.detected_packageManager))
items = [self.prefs['indicator_submenu'] + ' Install a new package',
self.prefs['indicator_submenu'] + ' Uninstall a package',
self.prefs['indicator_submenu'] + ' Update a package',
'Rebuild the package cache',
'Perform system upgrade']
selectedIndex = self.select(items, prompt='Action:', numeric=True)
if selectedIndex != -1:
if selectedIndex == 0:
self.install_package()
elif selectedIndex == 1:
self.remove_package()
elif selectedIndex == 2:
self.update_package()
elif selectedIndex == 3:
self.build_package_cache()
elif selectedIndex == 4:
self.update_system()

View File

@ -0,0 +1,2 @@
Copy files from /usr/share/geany/filedefs to this directory to overwrite them. To use the defaults, just delete the file in this directory.
For more information read the documentation (in /usr/share/doc/geany/html/index.html or visit https://www.geany.org/).

View File

@ -20,7 +20,7 @@ autocomplete_doc_words=false
completion_drops_rest_of_word=false
autocompletion_max_entries=30
autocompletion_update_freq=250
color_scheme=
color_scheme=bespin.conf
scroll_lines_around_cursor=0
mru_length=10
disk_check_timeout=30
@ -75,9 +75,9 @@ use_native_windows_dialogs=false
show_indent_guide=false
show_white_space=false
show_line_endings=false
show_markers_margin=true
show_markers_margin=false
show_linenumber_margin=true
long_line_enabled=true
long_line_enabled=false
long_line_type=0
long_line_column=72
long_line_color=#C2EBC2
@ -107,7 +107,7 @@ pref_editor_replace_tabs=false
pref_editor_trail_space=false
pref_toolbar_show=true
pref_toolbar_append_to_menu=false
pref_toolbar_use_gtk_default_style=true
pref_toolbar_use_gtk_default_style=false
pref_toolbar_use_gtk_default_icon=true
pref_toolbar_icon_style=0
pref_toolbar_icon_size=0
@ -128,7 +128,7 @@ scribble_text=To jest brudnopis. Możesz wpisać tu cokolwiek chcesz.
scribble_pos=53
treeview_position=156
msgwindow_position=505
geometry=497;455;655;577;0;
geometry=1;38;798;839;0;
custom_date_format=
[build-menu]
@ -216,6 +216,6 @@ session_file=
project_file_path=
[files]
recent_files=
recent_files=/home/napcok/.config/openbox/rc.xml;/home/napcok/.config/geany/keybindings.conf;
recent_projects=
current_page=-1

View File

@ -0,0 +1,7 @@
[Bindings]
popup_gototagdefinition=
edit_transposeline=<Control>t
edit_movelineup=
edit_movelinedown=
move_tableft=<Alt>Page_Up
move_tabright=<Alt>Page_Down

View File

@ -0,0 +1,2 @@
There are several template files in this directory. For these templates you can use wildcards.
For more information read the documentation (in /usr/share/doc/geany/html/index.html or visit https://www.geany.org/).

View File

@ -1,12 +1 @@
^sep()
Miejsca,^pipe(jgmenu_run ob --cmd='obbrowser $HOME' --tag='Places'),drive-harddisk
^sep()
Kompozytor,^pipe(jgmenu_run ob --cmd='mabox-compositor' --tag='Kompo'),compton
^sep()
Zablokuj ekran,betterlockscreen -l dim -t "Wpisz hasło aby odblokować...",system-lock-screen
Wyjście,^checkout(exit),system-shutdown
^tag(exit)
Wyloguj,openbox --exit,system-log-out
Uśpij,systemctl -i suspend,system-suspend
Rebootuj,systemctl -i reboot,system-reboot
Wyłącz,systemctl -i poweroff,system-shutdown

Can't render this file because it has a wrong number of fields in line 2.

View File

@ -1,10 +1,10 @@
# jgmenurc
stay_alive = 1
stay_alive = 0
#hide_on_startup = 0
csv_cmd = pmenu
tint2_look = 1
at_pointer = 0
position_mode = ipc
terminal_exec = terminator
terminal_args = -e
#monitor = 0
@ -18,7 +18,7 @@ menu_width = 220
#menu_height_min = 0
#menu_height_max = 0
#menu_height_mode = static
menu_padding_top = 63
menu_padding_top = 25
menu_padding_right = 2
menu_padding_bottom = 5
menu_padding_left = 2

View File

@ -1,10 +1,43 @@
@icon,,5,10,48,48,0,left,top,,,/usr/share/icons/hicolor/48x48/apps/mbcc.png
@rect,,58,14,156,20,3,left,top,#aaaaaa 15,#000000 0,content
@search,,58,14,156,20,3,left,top,#aaaaaa 90,#222222 3,Szukaj...
@text,,6,6,150,20,0,left,top,auto,#000000,<span size="large"></span>
@search,,24,6,150,20,2,left,top,auto,#000000 0,<i>Pisz aby wyszukać</i>
Terminal,exo-open --launch TerminalEmulator,utilities-terminal
Przeglądarka WWW,exo-open --launch WebBrowser,firefox
Menedżer plików,exo-open --launch FileManager,system-file-manager
^sep()
Aplikacje,^checkout(lx-apps),applications-other
^sep()
Zrzut ekranu,mb-jgtools screenshot,emblem-photos
^sep()
Ustawienia,^checkout(ustawienia),applications-utilities
^sep()
Zablokuj ekran,blurlock,system-lock-screen
Wyjście,mb-jgtools mblogout,system-shutdown
^tag(ustawienia)
Centrum Sterowania Mabox,mbcc,mbcc
Mabox Styler,mbstyler,/usr/share/icons/mbs_trans_32.png
^sep(Pulpit)
Wystrój i ikony,lxappearance,preferences-desktop-theme
Tapeta,nitrogen,nitrogen
Powiadomienia,xfce4-notifyd-config,xfce4-notifyd
Zarządzaj Conky,^pipe(jgmenu_run ob --cmd=mabox-conky-pipemenu),desktop-effects
Zarządzaj panelami tint2,^pipe(jgmenu_run ob --cmd=mabox-tint2-pipemenu),tint2conf
Kompozytor,^pipe(jgmenu_run ob --cmd=mabox-compositor),compton
^sep(Ustawienia)
Preferowane aplikacje,exo-preferred-applications,preferences-desktop-default-applications
Menedżer logowania,pkexec lightdm-settings,lightdm-settings
Ustawienia zasilania,xfce4-power-manager-settings,xfce4-power-manager-settings
^sep(Openbox)
Autostart,geany ~/.config/openbox/autostart,geany
RC - plik konfiguracyjny,geany ~/.config/openbox/rc.xml,geany
Rekonfiguruj Openbox,openbox --reconfigure,openbox
^sep(Motywy Maboxa)
Zarządzaj motywami,mb-obthemes,preferences-desktop-theme
^tag(lx-apps)

Can't render this file because it contains an unexpected character in line 1 and column 54.

View File

@ -0,0 +1,5 @@
# Format:
# Etykieta,komenda
# Przykład:
#^sep(Moje)
#Odtwarzacz VLC,vlc
1 # Format:
2 # Etykieta,komenda
3 # Przykład:
4 #^sep(Moje)
5 #Odtwarzacz VLC,vlc

View File

@ -0,0 +1,5 @@
# Format:
# Etykieta,komenda
# Przykład:
#^sep(Moje)
#Odtwarzacz VLC,vlc
1 # Format:
2 # Etykieta,komenda
3 # Przykład:
4 #^sep(Moje)
5 #Odtwarzacz VLC,vlc

View File

@ -1,15 +0,0 @@
[language_package]
notify_count_aspell-en=2
notify_count_aspell-pl=2
notify_count_hunspell-en=2
notify_count_hunspell-pl=2
notify_count_hyphen-en=2
notify_count_hyphen-pl=2
notify_count_poppler-data=2
notify_count_qt5-translations=2
notify_count_vim-spell-en=2
notify_count_vim-spell-pl=2
[new_kernel]
notify_count_linux48=2
notify_count_linux49=2

View File

@ -1,14 +0,0 @@
[mainwindow]
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\x2R\0\0\0\x81\0\0\x4\xab\0\0\x2Q\0\0\x2S\0\0\0\x99\0\0\x4\xaa\0\0\x2P\0\0\0\0\0\0\0\0\x5\0)
maximized=false
pos=@Point(594 129)
savestate=@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\0\0\0\x2X\0\0\x1\xb8\0\0\0\x4\0\0\0\x4\0\0\0\b\0\0\0\b\xfc\0\0\0\0)
size=@Size(600 440)
[notifications]
checkLanguagePackages=true
checkNewKernel=true
checkNewKernelLts=true
checkNewKernelRecommended=false
checkUnsupportedKernel=true
checkUnsupportedKernelRunning=false

View File

@ -635,7 +635,7 @@ ascii_distro="auto"
# Example:
# ascii_colors=(distro) - Ascii is colored based on Distro colors.
# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors.
ascii_colors=(distro)
ascii_colors=(2 7)
# Bold ascii logo
# Whether or not to bold the ascii logo.

View File

@ -31,7 +31,7 @@ xcape -e 'Super_L=Super_L|space'
(sleep 1s && mb-tint2-session) &
## Startup
(sleep 1s && volumeicon) &
#(sleep 1s && volumeicon) &
(sleep 1s && xfce4-volumed-pulse) &
(sleep 1s && clipit) &
(sleep 1s && gkrellm -w) &
@ -59,4 +59,4 @@ xcape -e 'Super_L=Super_L|space'
betterlockscreen_setup &
## Hot Corners
cornora -tl "mb-jgtools places" -tr "mb-jgtools right" -br "mb-jgtools mblogout" -iof
#cornora -tl "mb-jgtools places" -tr "mb-jgtools right" -br "mb-jgtools mblogout" -iof

View File

@ -116,11 +116,13 @@
by other applications, or saved in your session
use obconf if you want to change these without having to log out
and back in -->
<number>2</number>
<number>4</number>
<firstdesk>1</firstdesk>
<names>
<name>1</name>
<name>2</name>
<name>3</name>
<name>4</name>
</names>
<popupTime>875</popupTime>
<!-- The number of milliseconds to show the popup for when switching
@ -327,7 +329,7 @@
<command>pavucontrol</command>
</action>
</keybind>
<keybind key="W-m">
<keybind key="W-Tab">
<action name="Execute">
<command>mb-jgtools right</command>
</action>
@ -339,7 +341,7 @@
</keybind>
<keybind key="Print">
<action name="Execute">
<command>mb-scrot</command>
<command>mb-jgtools screenshot</command>
</action>
</keybind>
<keybind key="A-Print">
@ -387,7 +389,7 @@
<command>openbox --reconfigure</command>
</action>
</keybind>
<keybind key="W-Tab">
<keybind key="C-Tab">
<action name="Execute">
<command>mb-jgtools places</command>
</action>
@ -925,9 +927,12 @@
</action>
</mousebind>
<mousebind action="Press" button="Right">
<action name="ShowMenu">
<menu>root-menu</menu>
<action name="Execute">
<command>mb-jgtools main</command>
</action>
<!--<action name="ShowMenu">
<menu>root-menu</menu>
</action> -->
</mousebind>
</context>
<context name="MoveResize">
@ -981,6 +986,9 @@
<!-- show the manage desktops section in the client-list-(combined-)menu -->
</menu>
<applications>
<application class="*">
<focus>yes</focus>
</application>
<!--
# this is an example with comments through out. use these to make your
# own rules, but without the comments of course.

View File

@ -0,0 +1,95 @@
# PyRadio Configuration File
# Player selection
# This is the equivalent to the -u , --use-player command line parameter
# Specify the player to use with PyRadio, or the player detection order
# Example:
# player = vlc
# or
# player = vlc,mpv, mplayer
# Default value: mpv,mplayer,vlc
player = mpv,mplayer,vlc
# Default playlist
# This is the playlist to open if none is specified
# You can scecify full path to CSV file, or if the playlist is in the
# config directory, playlist name (filename without extension) or
# playlist number (as reported by -ls command line option)
# Default value: stations
default_playlist = stations
# Default station
# This is the equivalent to the -p , --play command line parameter
# The station number within the default playlist to play
# Value is 1..number of stations, "-1" or "False" means no auto play
# "0" or "Random" means play a random station
# Default value: False
default_station = False
# Default encoding
# This is the encoding used by default when reading data provided by
# a station (such as song title, etc.) If reading said data ends up
# in an error, 'utf-8' will be used instead.
#
# A valid encoding list can be found at:
# https://docs.python.org/2.7/library/codecs.html#standard-encodings
# replacing 2.7 with specific version:
# 3.0 up to current python version.
#
# Default value: utf-8
default_encoding = utf-8
# Connection timeout
# PyRadio will wait for this number of seconds to get a station/server
# message indicating that playback has actually started.
# If this does not happen (within this number of seconds after the
# connection is initiated), PyRadio will consider the station
# unreachable, and display the "Failed to connect to: [station]"
# message.
#
# Valid values: 5 - 60
# Default value: 10
connection_timeout = 10
# Default theme
# Hardcooded themes:
# dark (default) (8 colors)
# light (8 colors)
# dark_16_colors (16 colors dark theme alternative)
# light_16_colors (16 colors light theme alternative)
# black_on_white (bow) (256 colors)
# white_on_black (wob) (256 colors)
# Default value = 'dark'
theme = white_on_black
# Transparency setting
# If False, theme colors will be used.
# If True and a compositor is running, the stations' window
# background will be transparent. If True and a compositor is
# not running, the terminal's background color will be used.
# Valid values: True, true, False, false
# Default value: False
use_transparency = False
# Playlist management
#
# Specify whether you will be asked to confirm
# every station deletion action
# Valid values: True, true, False, false
# Default value: True
confirm_station_deletion = True
# Specify whether you will be asked to confirm
# playlist reloading, when the playlist has not
# been modified within Pyradio
# Valid values: True, true, False, false
# Default value: True
confirm_playlist_reload = True
# Specify whether you will be asked to save a
# modified playlist whenever it needs saving
# Valid values: True, true, False, false
# Default value: False
auto_save_playlist = False

View File

@ -0,0 +1,13 @@
Jedynka - Polkie Radio Program 1,http://stream.polskieradio.pl/program1
Dwójka - Polkie Radio Program 2,http://stream.polskieradio.pl/program2
Trójka - Polskie Radio Program 3,http://stream.polskieradio.pl/program3
Czwórka - Polskie Radio Program 4,http://stream.polskieradio.pl/program4
Radio Katowice,http://stream4.nadaje.com:9212/radiokatowice
Radio WNET,http://media.wnet.fm/wnet.fm
Radio MARYJA,https://radiomaryja.fastcast4u.com/tunein/radiomaryja.pls
Radio eM,http://194.181.177.253:8000/listen.pls
Antyradio - Warszawa,http://ant-waw-01.cdn.eurozet.pl:8602/listen.pls
Antyradio - Katowice,http://ant-kat-01.cdn.eurozet.pl:8604/listen.pls
Złote Przeboje,http://www.radio.pionier.net.pl/stream.pls?radio=radio88
RMF FM,http://217.74.72.4:8000/rmf_fm
1 Jedynka - Polkie Radio Program 1 http://stream.polskieradio.pl/program1
2 Dwójka - Polkie Radio Program 2 http://stream.polskieradio.pl/program2
3 Trójka - Polskie Radio Program 3 http://stream.polskieradio.pl/program3
4 Czwórka - Polskie Radio Program 4 http://stream.polskieradio.pl/program4
5 Radio Katowice http://stream4.nadaje.com:9212/radiokatowice
6 Radio WNET http://media.wnet.fm/wnet.fm
7 Radio MARYJA https://radiomaryja.fastcast4u.com/tunein/radiomaryja.pls
8 Radio eM http://194.181.177.253:8000/listen.pls
9 Antyradio - Warszawa http://ant-waw-01.cdn.eurozet.pl:8602/listen.pls
10 Antyradio - Katowice http://ant-kat-01.cdn.eurozet.pl:8604/listen.pls
11 Złote Przeboje http://www.radio.pionier.net.pl/stream.pls?radio=radio88
12 RMF FM http://217.74.72.4:8000/rmf_fm

View File

@ -0,0 +1,2 @@
player=mpv --cache 2048
player-no-close

View File

@ -1,266 +0,0 @@
#---- Generated by tint2conf a0e2 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Panel
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 40
border_color = #828282 0
background_color_hover = #000000 40
border_color_hover = #828282 0
background_color_pressed = #000000 40
border_color_pressed = #828282 0
# Background 2: Aktywne
rounded = 1
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #d8d8d8 30
border_color = #d8d8d8 30
background_color_hover = #d8d8d8 30
border_color_hover = #d8d8d8 30
background_color_pressed = #d8d8d8 30
border_color_pressed = #d8d8d8 30
# Background 3: Domyślne zadanie, Zminimalizowane
rounded = 1
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 0
border_color = #000000 0
background_color_hover = #000000 0
border_color_hover = #000000 0
background_color_pressed = #000000 0
border_color_pressed = #000000 0
# Background 4: Pilne
rounded = 1
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #888888 20
border_color = #ed2323 60
background_color_hover = #888888 20
border_color_hover = #ed2323 60
background_color_pressed = #888888 20
border_color_pressed = #ed2323 60
# Background 5: Nieaktywne zadanie
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 0
border_color = #000000 0
background_color_hover = #000000 0
border_color_hover = #000000 0
background_color_pressed = #000000 0
border_color_pressed = #000000 0
# Background 6: Aktywne zadanie
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #d8d8d8 8
border_color = #d8d8d8 0
background_color_hover = #d8d8d8 8
border_color_hover = #d8d8d8 0
background_color_pressed = #d8d8d8 8
border_color_pressed = #d8d8d8 0
# Background 7: Podpowiedzi
rounded = 3
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #222222 90
border_color = #222222 90
background_color_hover = #222222 90
border_color_hover = #222222 90
background_color_pressed = #222222 90
border_color_pressed = #222222 90
# Background 8:
rounded = 1
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #888888 20
border_color = #888888 20
background_color_hover = #888888 20
border_color_hover = #888888 20
background_color_pressed = #888888 20
border_color_pressed = #888888 20
#-------------------------------------
# Panel
panel_items = LTSC
panel_size = 100% 30
panel_margin = 0 0
panel_padding = 0 0 0
panel_background_id = 1
wm_menu = 1
panel_dock = 0
panel_position = bottom center horizontal
panel_layer = bottom
panel_monitor = all
panel_shrink = 0
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 1.5
autohide_height = 6
strut_policy = follow_size
panel_window_name = tint2
disable_transparency = 0
mouse_effects = 0
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 0
scale_relative_to_dpi = 0
scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = multi_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 6 0 6
taskbar_background_id = 5
taskbar_active_background_id = 6
taskbar_name = 0
taskbar_hide_inactive_tasks = 0
taskbar_hide_different_monitor = 0
taskbar_hide_different_desktop = 0
taskbar_always_show_all_desktop_tasks = 0
taskbar_name_padding = 0 0
taskbar_name_background_id = 0
taskbar_name_active_background_id = 0
taskbar_name_font = Sans 9
taskbar_name_font_color = #828282 100
taskbar_name_active_font_color = #828282 100
taskbar_distribute_size = 0
taskbar_sort_order = none
task_align = left
#-------------------------------------
# Task
task_text = 0
task_icon = 1
task_centered = 1
urgent_nb_of_blink = 20
task_maximum_size = 40 40
task_padding = 2 2 2
task_font = Sans 06_55 6
task_tooltip = 1
task_thumbnail = 0
task_thumbnail_size = 210
task_font_color = #828282 60
task_active_font_color = #828282 100
task_urgent_font_color = #ffffff 100
task_iconified_font_color = #d8d8d8 60
task_icon_asb = 80 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 80 0 0
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 4
task_iconified_background_id = 3
mouse_left = toggle_iconify
mouse_middle = none
mouse_right = toggle
mouse_scroll_up = toggle
mouse_scroll_down = iconify
#-------------------------------------
# System tray (notification area)
systray_padding = 4 2 3
systray_background_id = 0
systray_sort = right2left
systray_icon_size = 0
systray_icon_asb = 100 0 0
systray_monitor = primary
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 8 4 4
launcher_background_id = 0
launcher_icon_background_id = -1
launcher_icon_size = 0
launcher_icon_asb = 100 0 0
launcher_icon_theme_override = 0
startup_notifications = 0
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
launcher_item_app = /usr/share/applications/exo-web-browser.desktop
launcher_item_app = /usr/share/applications/mbcc.desktop
#-------------------------------------
# Clock
time1_format = %H:%M
time2_format =
time1_font = Sans bold 11
time1_timezone =
time2_timezone =
clock_font_color = #b5b5b5 100
clock_padding = 12 4
clock_background_id = 0
clock_tooltip =
clock_tooltip_timezone =
clock_lclick_command = gsimplecal
clock_rclick_command = gsimplecal
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
#-------------------------------------
# Battery
battery_tooltip = 1
battery_low_status = 20
battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
battery_full_cmd =
bat1_font = Monospace 8
bat2_font = Monospace 8
battery_font_color = #b5b5b5 100
bat1_format =
bat2_format =
battery_padding = 2 0
battery_background_id = 0
battery_hide = 96
battery_lclick_command =
battery_rclick_command =
battery_mclick_command =
battery_uwheel_command =
battery_dwheel_command =
ac_connected_cmd =
ac_disconnected_cmd =
#-------------------------------------
# Tooltip
tooltip_show_timeout = 0
tooltip_hide_timeout = 0
tooltip_padding = 2 2
tooltip_background_id = 7
tooltip_font_color = #d8d8d8 100
tooltip_font = Sans normal 9.0

View File

@ -1,266 +0,0 @@
#---- Generated by tint2conf 65f9 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Panel
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 40
border_color = #828282 0
background_color_hover = #000000 40
border_color_hover = #828282 0
background_color_pressed = #000000 40
border_color_pressed = #828282 0
# Background 2: Aktywne
rounded = 1
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #d8d8d8 30
border_color = #d8d8d8 30
background_color_hover = #d8d8d8 30
border_color_hover = #d8d8d8 30
background_color_pressed = #d8d8d8 30
border_color_pressed = #d8d8d8 30
# Background 3: Domyślne zadanie, Zminimalizowane
rounded = 1
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 0
border_color = #000000 0
background_color_hover = #000000 0
border_color_hover = #000000 0
background_color_pressed = #000000 0
border_color_pressed = #000000 0
# Background 4: Pilne
rounded = 1
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #888888 20
border_color = #ed2323 60
background_color_hover = #888888 20
border_color_hover = #ed2323 60
background_color_pressed = #888888 20
border_color_pressed = #ed2323 60
# Background 5: Nieaktywne zadanie
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 0
border_color = #000000 0
background_color_hover = #000000 0
border_color_hover = #000000 0
background_color_pressed = #000000 0
border_color_pressed = #000000 0
# Background 6: Aktywne zadanie
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #d8d8d8 8
border_color = #d8d8d8 0
background_color_hover = #d8d8d8 8
border_color_hover = #d8d8d8 0
background_color_pressed = #d8d8d8 8
border_color_pressed = #d8d8d8 0
# Background 7: Podpowiedzi
rounded = 3
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #222222 90
border_color = #222222 90
background_color_hover = #222222 90
border_color_hover = #222222 90
background_color_pressed = #222222 90
border_color_pressed = #222222 90
# Background 8:
rounded = 1
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #888888 20
border_color = #888888 20
background_color_hover = #888888 20
border_color_hover = #888888 20
background_color_pressed = #888888 20
border_color_pressed = #888888 20
#-------------------------------------
# Panel
panel_items = LTSC
panel_size = 100% 30
panel_margin = 0 0
panel_padding = 0 0 0
panel_background_id = 1
wm_menu = 1
panel_dock = 0
panel_position = top center horizontal
panel_layer = bottom
panel_monitor = all
panel_shrink = 0
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 1.5
autohide_height = 6
strut_policy = follow_size
panel_window_name = tint2
disable_transparency = 0
mouse_effects = 0
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 0
scale_relative_to_dpi = 0
scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = multi_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 6 0 6
taskbar_background_id = 5
taskbar_active_background_id = 6
taskbar_name = 0
taskbar_hide_inactive_tasks = 0
taskbar_hide_different_monitor = 0
taskbar_hide_different_desktop = 0
taskbar_always_show_all_desktop_tasks = 0
taskbar_name_padding = 0 0
taskbar_name_background_id = 0
taskbar_name_active_background_id = 0
taskbar_name_font = Sans 9
taskbar_name_font_color = #828282 100
taskbar_name_active_font_color = #828282 100
taskbar_distribute_size = 0
taskbar_sort_order = none
task_align = left
#-------------------------------------
# Task
task_text = 0
task_icon = 1
task_centered = 1
urgent_nb_of_blink = 20
task_maximum_size = 40 40
task_padding = 2 2 2
task_font = Sans 06_55 6
task_tooltip = 1
task_thumbnail = 0
task_thumbnail_size = 210
task_font_color = #828282 60
task_active_font_color = #828282 100
task_urgent_font_color = #ffffff 100
task_iconified_font_color = #d8d8d8 60
task_icon_asb = 80 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 80 0 0
task_background_id = 3
task_active_background_id = 2
task_urgent_background_id = 4
task_iconified_background_id = 3
mouse_left = toggle_iconify
mouse_middle = none
mouse_right = toggle
mouse_scroll_up = toggle
mouse_scroll_down = iconify
#-------------------------------------
# System tray (notification area)
systray_padding = 4 2 3
systray_background_id = 0
systray_sort = right2left
systray_icon_size = 24
systray_icon_asb = 100 0 0
systray_monitor = primary
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 8 4 4
launcher_background_id = 0
launcher_icon_background_id = -1
launcher_icon_size = 0
launcher_icon_asb = 100 0 0
launcher_icon_theme_override = 0
startup_notifications = 0
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
launcher_item_app = /usr/share/applications/exo-web-browser.desktop
launcher_item_app = /usr/share/applications/mbcc.desktop
#-------------------------------------
# Clock
time1_format = %H:%M
time2_format =
time1_font = Sans bold 11
time1_timezone =
time2_timezone =
clock_font_color = #b5b5b5 100
clock_padding = 12 4
clock_background_id = 0
clock_tooltip =
clock_tooltip_timezone =
clock_lclick_command = gsimplecal
clock_rclick_command = gsimplecal
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
#-------------------------------------
# Battery
battery_tooltip = 1
battery_low_status = 20
battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
battery_full_cmd =
bat1_font = Monospace 8
bat2_font = Monospace 8
battery_font_color = #b5b5b5 100
bat1_format =
bat2_format =
battery_padding = 2 0
battery_background_id = 0
battery_hide = 96
battery_lclick_command =
battery_rclick_command =
battery_mclick_command =
battery_uwheel_command =
battery_dwheel_command =
ac_connected_cmd =
ac_disconnected_cmd =
#-------------------------------------
# Tooltip
tooltip_show_timeout = 0
tooltip_hide_timeout = 0
tooltip_padding = 2 2
tooltip_background_id = 7
tooltip_font_color = #d8d8d8 100
tooltip_font = Sans normal 9.0

View File

@ -1,4 +1,4 @@
#---- Generated by tint2conf 00ad ----
#---- Generated by tint2conf 55df ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
@ -85,13 +85,14 @@ border_color_pressed = #ffffff 9
#-------------------------------------
# Panel
panel_items = LTSC
panel_items = PLTSC
panel_size = 100% 30
panel_margin = 0 0
panel_padding = 5 2 10
panel_background_id = 1
wm_menu = 1
panel_dock = 0
panel_pivot_struts = 0
panel_position = top center horizontal
panel_layer = top
panel_monitor = all
@ -143,7 +144,7 @@ task_font = Open Sans 10
task_tooltip = 1
task_thumbnail = 0
task_thumbnail_size = 210
task_font_color = #31303b 100
task_font_color = #dadade 100
task_active_font_color = #f0eeee 100
task_urgent_font_color = #ffffff 100
task_iconified_font_color = #342a2a 100
@ -151,7 +152,6 @@ task_icon_asb = 100 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 70
task_iconified_icon_asb = 100 0 -40
task_background_id = 4
task_active_background_id = 5
task_urgent_background_id = 5
task_iconified_background_id = 4
@ -178,10 +178,10 @@ launcher_background_id = 0
launcher_icon_background_id = 0
launcher_icon_size = 32
launcher_icon_asb = 100 0 0
launcher_icon_theme = elementary-xfce
launcher_icon_theme_override = 0
startup_notifications = 0
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
@ -200,8 +200,8 @@ clock_padding = 0 0
clock_background_id = 0
clock_tooltip = %A %d %B %Y
clock_tooltip_timezone =
clock_lclick_command = gsimplecal
clock_rclick_command = time-admin
clock_lclick_command =
clock_rclick_command =
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
@ -228,6 +228,22 @@ battery_dwheel_command =
ac_connected_cmd =
ac_disconnected_cmd =
#-------------------------------------
# Button 1
button = new
button_icon = distributor-logo-mabox
button_text =
button_lclick_command = jgmenu_run
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 0 0
button_background_id = -1
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Tooltip
tooltip_show_timeout = 0.5

View File

@ -0,0 +1,269 @@
#---- Generated by tint2conf bcac ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Panel
rounded = 0
border_width = 5
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 0
border_color = #269b29 0
background_color_hover = #000000 60
border_color_hover = #000000 60
background_color_pressed = #000000 60
border_color_pressed = #000000 60
# Background 2: Domyślne zadanie
rounded = 0
border_width = 3
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #111111 78
border_color = #585858 68
background_color_hover = #2f2f2f 100
border_color_hover = #222222 68
background_color_pressed = #f1f1f1 40
border_color_pressed = #ffffff 68
# Background 3: Programy
rounded = 1
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #787373 0
border_color = #9a9a9a 100
background_color_hover = #2f2f2f 0
border_color_hover = #222222 0
background_color_pressed = #f1f1f1 0
border_color_pressed = #ffffff 0
# Background 4: Aktywne
rounded = 1
border_width = 2
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #4e4e4e 100
border_color = #ece5e5 60
background_color_hover = #000000 60
border_color_hover = #f2e4e4 60
background_color_pressed = #000000 60
border_color_pressed = #e9e4e4 60
# Background 5: Podpowiedzi
rounded = 6
border_width = 2
border_sides = B
border_content_tint_weight = 2
background_content_tint_weight = 2
background_color = #383838 69
border_color = #ffffff 58
background_color_hover = #000000 60
border_color_hover = #f2e4e4 60
background_color_pressed = #000000 60
border_color_pressed = #e9e4e4 60
# Background 6: Nazwa aktywnego pulpitu
rounded = 1
border_width = 1
border_sides = TBLR
border_content_tint_weight = 2
background_content_tint_weight = 0
background_color = #787373 100
border_color = #ffffff 100
background_color_hover = #000000 60
border_color_hover = #f2e4e4 60
background_color_pressed = #000000 60
border_color_pressed = #e9e4e4 60
# Background 7: Nazwa nieaktywnego pulpitu, Zasobnik systemowy, Zegar
rounded = 4
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #111111 50
border_color = #232323 60
background_color_hover = #2f2f2f 0
border_color_hover = #222222 0
background_color_pressed = #f1f1f1 0
border_color_pressed = #ffffff 0
#-------------------------------------
# Panel
panel_items = LP
panel_size = 100% 96
panel_margin = 0 0
panel_padding = 0 1 4
panel_background_id = 1
wm_menu = 0
panel_dock = 0
panel_pivot_struts = 0
panel_position = bottom center horizontal
panel_layer = normal
panel_monitor = all
panel_shrink = 1
autohide = 1
autohide_show_timeout = 0.3
autohide_hide_timeout = 2
autohide_height = 5
strut_policy = minimum
panel_window_name = tint2
disable_transparency = 0
mouse_effects = 1
font_shadow = 1
mouse_hover_icon_asb = 100 0 20
mouse_pressed_icon_asb = 100 1 0
scale_relative_to_dpi = 0
scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = multi_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 2 0 4
taskbar_background_id = 0
taskbar_active_background_id = 0
taskbar_name = 1
taskbar_hide_inactive_tasks = 0
taskbar_hide_different_monitor = 0
taskbar_hide_different_desktop = 0
taskbar_always_show_all_desktop_tasks = 0
taskbar_name_padding = 10 0
taskbar_name_background_id = 7
taskbar_name_active_background_id = 6
taskbar_name_font = Noto Sans 8
taskbar_name_font_color = #bdbdbd 100
taskbar_name_active_font_color = #ffffff 100
taskbar_distribute_size = 1
taskbar_sort_order = none
task_align = left
#-------------------------------------
# Task
task_text = 1
task_icon = 1
task_centered = 0
urgent_nb_of_blink = 8
task_maximum_size = 140 24
task_padding = 1 0 5
task_font = Sans 9
task_tooltip = 1
task_thumbnail = 1
task_thumbnail_size = 210
task_font_color = #f3f3f5 60
task_active_font_color = #ffffff 80
task_urgent_font_color = #ffffff 80
task_icon_asb = 70 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_background_id = 2
task_active_background_id = 4
task_urgent_background_id = 0
mouse_left = toggle_iconify
mouse_middle = none
mouse_right = close
mouse_scroll_up = iconify
mouse_scroll_down = toggle_iconify
#-------------------------------------
# System tray (notification area)
systray_padding = 8 0 0
systray_background_id = 7
systray_sort = ascending
systray_icon_size = 20
systray_icon_asb = 100 0 0
systray_monitor = 1
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 8 8 8
launcher_background_id = 3
launcher_icon_background_id = 0
launcher_icon_size = 64
launcher_icon_asb = 100 0 0
launcher_icon_theme = Vertex-Maia
launcher_icon_theme_override = 1
startup_notifications = 0
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
launcher_item_app = /usr/share/applications/exo-web-browser.desktop
#-------------------------------------
# Clock
time1_format = %H:%M
time2_format = %A %d %B
time1_font = sans 8
time1_timezone =
time2_timezone =
time2_font = sans 6
clock_font_color = #ffffff 60
clock_padding = 8 0
clock_background_id = 7
clock_tooltip = Dzisiaj jest %A, %e dzień %B
clock_tooltip_timezone =
clock_lclick_command =
clock_rclick_command = gsimplecal
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
#-------------------------------------
# Battery
battery_tooltip = 1
battery_low_status = 10
battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
battery_full_cmd =
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #ffffff 60
bat1_format =
bat2_format =
battery_padding = 1 0
battery_background_id = 0
battery_hide = 98
battery_lclick_command =
battery_rclick_command =
battery_mclick_command =
battery_uwheel_command =
battery_dwheel_command =
ac_connected_cmd =
ac_disconnected_cmd =
#-------------------------------------
# Button 1
button = new
button_text = 
button_tooltip = Edytuj ten dok
button_lclick_command = tint2conf $HOME/.config/tint2/dock.tint2rc
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font = Noto Sans 24
button_font_color = #30b746 100
button_padding = 0 0
button_background_id = 0
button_centered = 1
button_max_icon_size = 0
#-------------------------------------
# Tooltip
tooltip_show_timeout = 0.3
tooltip_hide_timeout = 0.3
tooltip_padding = 10 10
tooltip_background_id = 5
tooltip_font_color = #f9f9f9 100
tooltip_font = Sans Bold 10

View File

@ -0,0 +1,353 @@
#---- Generated by tint2conf 1e92 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
# Gradient 1
gradient = vertical
start_color = #393939 100
end_color = #131313 100
color_stop = 50.000000 #4a4a4a 100
# Gradient 2
gradient = horizontal
start_color = #323232 100
end_color = #262626 100
color_stop = 4.000000 #47c247 100
color_stop = 4.000000 #47c247 100
color_stop = 4.000000 #47c247 100
color_stop = 4.000000 #47c247 100
color_stop = 4.000000 #47c247 100
color_stop = 6.000000 #47c247 100
color_stop = 6.000000 #47c247 100
# Gradient 3
gradient = vertical
start_color = #161616 100
end_color = #464646 100
# Gradient 4
gradient = vertical
start_color = #b34235 100
end_color = #8f342a 100
# Gradient 5
gradient = vertical
start_color = #232323 100
end_color = #171717 100
#-------------------------------------
# Backgrounds
# Background 1: Zminimalizowane
rounded = 4
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #363636 100
border_color = #404040 100
gradient_id = 1
background_color_hover = #363636 100
border_color_hover = #0f0f0f 100
background_color_pressed = #363636 100
border_color_pressed = #0f0f0f 100
# Background 2:
rounded = 3
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #161616 100
border_color = #161616 100
gradient_id = 1
background_color_hover = #161616 100
border_color_hover = #161616 100
background_color_pressed = #161616 100
border_color_pressed = #161616 100
# Background 3:
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #292929 100
border_color = #161616 100
gradient_id = 2
background_color_hover = #292929 100
border_color_hover = #161616 100
background_color_pressed = #292929 100
border_color_pressed = #161616 100
# Background 4: Aktywne, Domyślne zadanie, Nazwa aktywnego pulpitu, Nazwa nieaktywnego pulpitu
rounded = 4
border_width = 0
border_sides = TBLR
border_content_tint_weight = 20
background_content_tint_weight = 0
background_color = #464646 100
border_color = #0f0f0f 100
gradient_id = 3
background_color_hover = #464646 100
border_color_hover = #0f0f0f 100
background_color_pressed = #464646 100
border_color_pressed = #0f0f0f 100
# Background 5: Pilne
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #a54d4d 100
border_color = #ffde00 100
gradient_id = 4
background_color_hover = #a54d4d 100
border_color_hover = #ffde00 100
background_color_pressed = #a54d4d 100
border_color_pressed = #ffde00 100
# Background 6: Podpowiedzi
rounded = 4
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #e7e7f0 40
border_color = #161616 40
background_color_hover = #e7e7f0 40
border_color_hover = #161616 40
background_color_pressed = #e7e7f0 40
border_color_pressed = #161616 40
# Background 7: Aktywne zadanie, Bateria, Nieaktywne zadanie, Panel, Zasobnik systemowy, Zegar
rounded = 4
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #161616 100
border_color = #161616 100
gradient_id = 1
background_color_hover = #161616 100
border_color_hover = #161616 100
background_color_pressed = #161616 100
border_color_pressed = #161616 100
#-------------------------------------
# Panel
panel_items = PLT:S:B:CP
panel_size = 96% 40
panel_margin = 0 0
panel_padding = 2 2 2
panel_background_id = 7
wm_menu = 1
panel_dock = 0
panel_pivot_struts = 0
panel_position = bottom center horizontal
panel_layer = top
panel_monitor = all
panel_shrink = 0
autohide = 0
autohide_show_timeout = 0.7
autohide_hide_timeout = 1.5
autohide_height = 2
strut_policy = follow_size
panel_window_name = tint2
disable_transparency = 0
mouse_effects = 0
font_shadow = 0
mouse_hover_icon_asb = 100 0 10
mouse_pressed_icon_asb = 100 0 0
scale_relative_to_dpi = 0
scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = multi_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 2 2 2
taskbar_background_id = 7
taskbar_active_background_id = 7
taskbar_name = 1
taskbar_hide_inactive_tasks = 0
taskbar_hide_different_monitor = 0
taskbar_hide_different_desktop = 0
taskbar_always_show_all_desktop_tasks = 0
taskbar_name_padding = 8 0
taskbar_name_background_id = 4
taskbar_name_active_background_id = 4
taskbar_name_font = Ubuntu 10
taskbar_name_font_color = #a1a1a1 25
taskbar_name_active_font_color = #f3f3ff 100
taskbar_distribute_size = 1
taskbar_sort_order = none
task_align = left
#-------------------------------------
# Task
task_text = 1
task_icon = 1
task_centered = 1
urgent_nb_of_blink = 10
task_maximum_size = 160 24
task_padding = 4 0 4
task_font = Sans 9
task_tooltip = 1
task_thumbnail = 1
task_thumbnail_size = 210
task_font_color = #bbbbbb 100
task_active_font_color = #f3f3ff 100
task_urgent_font_color = #f3f3ff 100
task_iconified_font_color = #cccccc 100
task_icon_asb = 100 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 70
task_iconified_icon_asb = 100 0 -40
task_background_id = 4
task_active_background_id = 4
task_urgent_background_id = 5
task_iconified_background_id = 1
mouse_left = toggle_iconify
mouse_middle = none
mouse_right = close
mouse_scroll_up = toggle
mouse_scroll_down = iconify
#-------------------------------------
# System tray (notification area)
systray_padding = 0 0 4
systray_background_id = 7
systray_sort = ascending
systray_icon_size = 22
systray_icon_asb = 100 0 0
systray_monitor = primary
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 0 0 2
launcher_background_id = 0
launcher_icon_background_id = 0
launcher_icon_size = 32
launcher_icon_asb = 100 0 0
launcher_icon_theme = elementary-xfce
launcher_icon_theme_override = 0
startup_notifications = 0
launcher_tooltip = 0
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
launcher_item_app = /usr/share/applications/exo-web-browser.desktop
#-------------------------------------
# Clock
time1_format = %a %e %b %k:%M
time2_format =
time1_font = Roboto Mono Regular 10
time1_timezone =
time2_timezone =
time2_font =
clock_font_color = #f3f3ff 100
clock_padding = 2 0
clock_background_id = 7
clock_tooltip =
clock_tooltip_timezone =
clock_lclick_command =
clock_rclick_command = yad --calendar --text ""
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
#-------------------------------------
# Battery
battery_tooltip = 1
battery_low_status = 7
battery_low_cmd = notify-send "battery low"
battery_full_cmd =
bat1_font = Roboto Mono Regular 10
bat2_font = sans 0
battery_font_color = #f3f3ff 100
bat1_format =
bat2_format =
battery_padding = 1 0
battery_background_id = 7
battery_hide = 101
battery_lclick_command =
battery_rclick_command =
battery_mclick_command =
battery_uwheel_command =
battery_dwheel_command =
ac_connected_cmd = notify-send "AC Connected"
ac_disconnected_cmd = notify-send "AC Disconected"
#-------------------------------------
# Separator 1
separator = new
separator_background_id = 0
separator_color = #777777 85
separator_style = empty
separator_size = 0
separator_padding = 4 0
#-------------------------------------
# Separator 2
separator = new
separator_background_id = 0
separator_color = #777777 85
separator_style = empty
separator_size = 0
separator_padding = 4 0
#-------------------------------------
# Separator 3
separator = new
separator_background_id = 0
separator_color = #777777 85
separator_style = empty
separator_size = 0
separator_padding = 4 0
#-------------------------------------
# Button 1
button = new
button_icon = distributor-logo-mabox
button_text =
button_lclick_command = jgmenu_run
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 0 0
button_background_id = -1
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Button 2
button = new
button_icon = tint2conf
button_text =
button_tooltip = Konfiguruj panel
button_lclick_command = tint2conf $HOME/.config/tint2/gradient.tint2rc
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 0 0
button_background_id = 0
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Tooltip
tooltip_show_timeout = 0.8
tooltip_hide_timeout = 0.3
tooltip_padding = 5 4
tooltip_background_id = 6
tooltip_font_color = #000000 100
tooltip_font = Ubuntu 10

View File

@ -1,4 +1,4 @@
#---- Generated by tint2conf 8fe7 ----
#---- Generated by tint2conf 9cd6 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
@ -72,13 +72,14 @@ border_color_pressed = #000000 100
#-------------------------------------
# Panel
panel_items = L:TSBCP
panel_items = PL:TSBCP
panel_size = 100% 32
panel_margin = 0 0
panel_padding = 4 0 2
panel_background_id = 5
wm_menu = 1
panel_dock = 0
panel_pivot_struts = 0
panel_position = top center horizontal
panel_layer = bottom
panel_monitor = primary
@ -161,7 +162,6 @@ launcher_icon_theme = Numix-Square
launcher_icon_theme_override = 1
startup_notifications = 1
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
@ -221,6 +221,22 @@ separator_padding = 0 0
#-------------------------------------
# Button 1
button = new
button_icon = distributor-logo-mabox
button_text =
button_lclick_command = jgmenu_run
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 0 0
button_background_id = -1
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Button 2
button = new
button_icon = tint2conf
button_text =
button_tooltip = Ustawienia panelu

View File

@ -0,0 +1,285 @@
#---- Generated by tint2conf 0368 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Panel
rounded = 0
border_width = 0
border_sides =
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 0
border_color = #000000 19
background_color_hover = #000000 60
border_color_hover = #000000 60
background_color_pressed = #000000 60
border_color_pressed = #000000 60
# Background 2: Domyślne zadanie
rounded = 0
border_width = 3
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #111111 78
border_color = #585858 68
background_color_hover = #2f2f2f 100
border_color_hover = #222222 68
background_color_pressed = #f1f1f1 40
border_color_pressed = #ffffff 68
# Background 3:
rounded = 1
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #787373 45
border_color = #9a9a9a 100
background_color_hover = #2f2f2f 0
border_color_hover = #222222 0
background_color_pressed = #f1f1f1 0
border_color_pressed = #ffffff 0
# Background 4: Aktywne
rounded = 1
border_width = 2
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #4e4e4e 100
border_color = #ece5e5 60
background_color_hover = #000000 60
border_color_hover = #f2e4e4 60
background_color_pressed = #000000 60
border_color_pressed = #e9e4e4 60
# Background 5: Podpowiedzi
rounded = 0
border_width = 2
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #147122 100
border_color = #fff3f3 100
background_color_hover = #000000 60
border_color_hover = #f2e4e4 60
background_color_pressed = #000000 60
border_color_pressed = #e9e4e4 60
# Background 6: Nazwa aktywnego pulpitu
rounded = 1
border_width = 1
border_sides = TBLR
border_content_tint_weight = 2
background_content_tint_weight = 0
background_color = #787373 100
border_color = #ffffff 100
background_color_hover = #000000 60
border_color_hover = #f2e4e4 60
background_color_pressed = #000000 60
border_color_pressed = #e9e4e4 60
# Background 7: Button, Nazwa nieaktywnego pulpitu, Programy, Zasobnik systemowy, Zegar
rounded = 4
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #111111 50
border_color = #232323 60
background_color_hover = #2f2f2f 0
border_color_hover = #222222 0
background_color_pressed = #f1f1f1 0
border_color_pressed = #ffffff 0
#-------------------------------------
# Panel
panel_items = PLTSCP
panel_size = 98% 34
panel_margin = 4 4
panel_padding = 1 1 4
panel_background_id = 1
wm_menu = 0
panel_dock = 0
panel_pivot_struts = 0
panel_position = top center horizontal
panel_layer = top
panel_monitor = all
panel_shrink = 0
autohide = 0
autohide_show_timeout = 0.3
autohide_hide_timeout = 2
autohide_height = 1
strut_policy = follow_size
panel_window_name = tint2
disable_transparency = 0
mouse_effects = 1
font_shadow = 0
mouse_hover_icon_asb = 99 0 10
mouse_pressed_icon_asb = 100 0 0
scale_relative_to_dpi = 0
scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = multi_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 2 0 4
taskbar_background_id = 0
taskbar_active_background_id = 0
taskbar_name = 1
taskbar_hide_inactive_tasks = 0
taskbar_hide_different_monitor = 0
taskbar_hide_different_desktop = 0
taskbar_always_show_all_desktop_tasks = 0
taskbar_name_padding = 10 0
taskbar_name_background_id = 7
taskbar_name_active_background_id = 6
taskbar_name_font = Noto Sans 8
taskbar_name_font_color = #bdbdbd 100
taskbar_name_active_font_color = #ffffff 100
taskbar_distribute_size = 1
taskbar_sort_order = none
task_align = left
#-------------------------------------
# Task
task_text = 1
task_icon = 1
task_centered = 0
urgent_nb_of_blink = 8
task_maximum_size = 140 24
task_padding = 1 0 5
task_font = Sans 9
task_tooltip = 1
task_thumbnail = 1
task_thumbnail_size = 210
task_font_color = #f3f3f5 60
task_active_font_color = #ffffff 80
task_urgent_font_color = #ffffff 80
task_icon_asb = 70 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_background_id = 2
task_active_background_id = 4
task_urgent_background_id = 0
mouse_left = toggle_iconify
mouse_middle = none
mouse_right = close
mouse_scroll_up = iconify
mouse_scroll_down = toggle_iconify
#-------------------------------------
# System tray (notification area)
systray_padding = 8 0 0
systray_background_id = 7
systray_sort = ascending
systray_icon_size = 20
systray_icon_asb = 100 0 0
systray_monitor = 1
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 8 4 4
launcher_background_id = 7
launcher_icon_background_id = 0
launcher_icon_size = 24
launcher_icon_asb = 100 0 0
launcher_icon_theme = Vertex-Maia
launcher_icon_theme_override = 1
startup_notifications = 0
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
launcher_item_app = /usr/share/applications/exo-web-browser.desktop
launcher_item_app = /usr/share/applications/calamares.desktop
#-------------------------------------
# Clock
time1_format = %H:%M
time2_format = %A %d %B
time1_font = sans 8
time1_timezone =
time2_timezone =
time2_font = sans 6
clock_font_color = #ffffff 60
clock_padding = 8 0
clock_background_id = 7
clock_tooltip = Dzisiaj jest %A, %e dzień %B
clock_tooltip_timezone =
clock_lclick_command =
clock_rclick_command = gsimplecal
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
#-------------------------------------
# Battery
battery_tooltip = 1
battery_low_status = 10
battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
battery_full_cmd =
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #ffffff 60
bat1_format =
bat2_format =
battery_padding = 1 0
battery_background_id = 0
battery_hide = 98
battery_lclick_command =
battery_rclick_command =
battery_mclick_command =
battery_uwheel_command =
battery_dwheel_command =
ac_connected_cmd =
ac_disconnected_cmd =
#-------------------------------------
# Button 1
button = new
button_icon = distributor-logo-mabox
button_text =
button_lclick_command = jgmenu_run
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 0 0
button_background_id = 0
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Button 2
button = new
button_icon = tint2conf
button_text =
button_tooltip = Edytuj ustawienia panelu
button_lclick_command = tint2conf $HOME/.config/tint2/mabox2001.tint2rc
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 8 4
button_background_id = 7
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Tooltip
tooltip_show_timeout = 0.3
tooltip_hide_timeout = 0.3
tooltip_padding = 10 10
tooltip_background_id = 5
tooltip_font_color = #f9f9f9 100
tooltip_font = Sans Bold 10

View File

@ -1,4 +1,4 @@
#---- Generated by tint2conf 2f7a ----
#---- Generated by tint2conf b552 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
@ -25,7 +25,7 @@ border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #d4cfc7 100
border_color = #484848 100
border_color = #484848 29
background_color_hover = #eeeeee 100
border_color_hover = #4a4a4a 100
background_color_pressed = #cccccc 100
@ -111,13 +111,14 @@ border_color_pressed = #cccccc 100
#-------------------------------------
# Panel
panel_items = LTSC
panel_items = PLTFSC
panel_size = 100% 32
panel_margin = 0 0
panel_padding = 4 2 4
panel_background_id = 1
wm_menu = 1
panel_dock = 0
panel_pivot_struts = 0
panel_position = bottom center horizontal
panel_layer = normal
panel_monitor = all
@ -138,7 +139,7 @@ scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = single_desktop
taskbar_mode = multi_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 0 0 2
taskbar_background_id = 0
@ -147,12 +148,12 @@ taskbar_name = 1
taskbar_hide_inactive_tasks = 0
taskbar_hide_different_monitor = 0
taskbar_hide_different_desktop = 0
taskbar_always_show_all_desktop_tasks = 0
taskbar_always_show_all_desktop_tasks = 1
taskbar_name_padding = 6 3
taskbar_name_background_id = 6
taskbar_name_active_background_id = 7
taskbar_name_font = sans bold 9
taskbar_name_font_color = #222222 100
taskbar_name_font_color = #222222 49
taskbar_name_active_font_color = #222222 100
taskbar_distribute_size = 1
taskbar_sort_order = none
@ -199,10 +200,10 @@ launcher_background_id = 0
launcher_icon_background_id = 0
launcher_icon_size = 22
launcher_icon_asb = 100 0 0
launcher_icon_theme = elementary-xfce
launcher_icon_theme_override = 0
startup_notifications = 1
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/pcmanfm.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
@ -250,6 +251,22 @@ battery_dwheel_command =
ac_connected_cmd =
ac_disconnected_cmd =
#-------------------------------------
# Button 1
button = new
button_icon = distributor-logo-mabox
button_text =
button_lclick_command = jgmenu_run
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 0 0
button_background_id = 0
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Tooltip
tooltip_show_timeout = 0.5

View File

@ -1,4 +1,4 @@
#---- Generated by tint2conf 3aef ----
#---- Generated by tint2conf 3800 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
@ -98,13 +98,14 @@ border_color_pressed = #000000 100
#-------------------------------------
# Panel
panel_items = LTSBCP
panel_items = PLTSBCP
panel_size = 80% 30
panel_margin = 0 0
panel_padding = 2 2 0
panel_background_id = 1
wm_menu = 1
panel_dock = 0
panel_pivot_struts = 0
panel_position = top center horizontal
panel_layer = top
panel_monitor = all
@ -190,7 +191,6 @@ launcher_icon_theme = Numix-Square
launcher_icon_theme_override = 1
startup_notifications = 1
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = /usr/share/applications/show_desktop.desktop
launcher_item_app = /usr/share/applications/exo-file-manager.desktop
launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
@ -240,6 +240,22 @@ ac_disconnected_cmd =
#-------------------------------------
# Button 1
button = new
button_icon = distributor-logo-mabox
button_text =
button_lclick_command = jgmenu_run
button_rclick_command =
button_mclick_command =
button_uwheel_command =
button_dwheel_command =
button_font_color = #000000 100
button_padding = 0 0
button_background_id = -1
button_centered = 0
button_max_icon_size = 0
#-------------------------------------
# Button 2
button = new
button_icon = tint2conf
button_text =
button_lclick_command = tint2conf

View File

@ -1 +1 @@
/.config/tint2/mabox2-top.tint2rc
/.config/tint2/mabox2001.tint2rc

View File

@ -0,0 +1,75 @@
2
wday mday month yday year
2 4 1 34 120
[daily]
"2020-02-04" 0 0 0
"2020-02-03" 62254 36431 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
[weekly]
"2020-02-08" 62254 36431 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
[monthly]
"lutego" 62254 36431 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0
"---" 0 0 0

View File

@ -1,6 +1,6 @@
/usr/share/gkrellm2/themes/DreamWorks
/usr/share/gkrellm2/themes/CoplandOS
0
Noto Serif 11
Noto Serif 9
Noto Serif 8
Noto Sans Thin 11
Noto Sans Thin 9
Noto Sans Thin 8
100

View File

@ -1,5 +1,5 @@
### GKrellM user config. Auto written, do not edit (usually) ###
### Version 2.3.9 ###
### Version 2.3.11 ###
enable_hostname 1
hostname_short 0
enable_sysname 1
@ -14,7 +14,7 @@ below 0
track_gtk_theme_name 0
default_track_theme "Default"
save_position 0
chart_width 110
chart_width 120
update_HZ 10
allow_multiple_instances 0
float_factor 1000
@ -33,8 +33,16 @@ clock_cal clock_format %k:%M <span foreground="$A"><small>%S</small></span>
cpu enable 0
cpu smp_mode 0
cpu enabled cpu 1
cpu extra_info cpu 0
cpu chart_config cpu 50 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
cpu launch cpu terminator -T "htop" -e htop
cpu tooltip_comment cpu htop
cpu extra_info cpu 1
cpu chart_config cpu 60 100 1 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
cpu enabled cpu0 0
cpu extra_info cpu0 1
cpu chart_config cpu0 40 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
cpu enabled cpu1 0
cpu extra_info cpu1 1
cpu chart_config cpu1 40 20 0 0 0 0 : 0 0 0 0 500 : 0 0 0 0 500 : 0 0 0 0 500
cpu show_panel_labels 1
cpu omit_nice_mode 0
cpu config_tracking 0
@ -45,20 +53,20 @@ proc launch
proc tooltip_comment
proc sensor_mode 0
proc text_format \w88\a$p\f procs\n\e$u\f users
proc chart_config 50 100 0 0 0 0 : 1 0 0 0 500 : 0 0 0 0 500
proc chart_config 60 100 1 0 0 0 : 1 0 0 0 500 : 0 0 0 0 500
disk assign_method 2
disk device Disk 0 0 0 1 1 0 0 Dysk
disk chart_config Disk 50 10 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
disk device sda 0 0 12 0 1 -1 0 sda
disk device sda1 0 0 12 0 1 1 0 sda1
disk device sr0 0 0 15 0 1 -1 0 sr0
disk device Disk 0 0 0 1 0 0 0 Dysk
disk chart_config Disk 60 10 1 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
disk device sda 0 0 45 0 1 -1 0 sda
disk device sda1 0 0 45 0 1 1 0 sda1
disk device sr0 0 0 96 0 1 -1 0 sr0
disk text_format $T
inet text_format all \t$a\f $l\N$A\f $L
inet update_interval all 1
net enables enp0s3 1 1 0
net chart_config enp0s3 50 70 0 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
net chart_config enp0s3 60 2000000 1 1 0 0 : 0 0 0 0 500 : 0 0 0 0 500
net enables lo 0 1 0
net timer_enabled 1
net timer_enabled 0
net timer_seconds 1
net timer_iface none
net timer_on
@ -68,7 +76,7 @@ net reset_mday 1
net net_enabled_as_default 1
net net_stats_window_height 200
meminfo mem_meter 1 0 0
meminfo swap_meter 1 0
meminfo swap_meter 0 0
meminfo swap_chart 0 1
meminfo mem_launch terminator -e htop
meminfo mem_tooltip htop
@ -82,6 +90,22 @@ fs nfs_check_timeout 16
fs auto_eject 0
fs binary_units 0
fs data_format $t - $f wolne
mail mailbox-local mbox /var/spool/mail/napcok
mail mua
mail notify
mail fetch_command
mail remote_check_timeout 5
mail local_check_timeout 4
mail fetch_check_is_local 0
mail msg_count_mode 0
mail animation_select_mode 3
mail fetch_check_only_mode 0
mail reset_remote_mode 0
mail unseen_is_new 0
mail enable 0 0 0 0
mail animation_continuous 0
mail show_tooltip 1
mail mh_seq_ignore 0
battery enable 0
battery enable_composite 0
battery estimate_time 0
@ -94,4 +118,8 @@ battery alert_units_percent 0
uptime enable 1
uptime launch
uptime tooltip
gkrellmlaunch visible=1 label=Midnight_Commander cmd=terminator -e mc
gkrellmlaunch visible=1 label=Midnight_Commander cmd=terminator -T "Midnight Commander" -e mc
gkrellmlaunch visible=1 label=PyRadio cmd=terminator -T "PyRadio" -x pyradio
gkrellmlaunch visible=1 label=yt-get cmd=yt-get
gkrellmlaunch visible=1 label=TVP_Polonia cmd=streamlink tvpstream.vod.tvp.pl/?channel_id=34776037 best
gkrellmlaunch visible=1 label=TVP_PolandIn cmd=streamlink tvpstream.vod.tvp.pl/?channel_id=39821455 best

View File

@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=compton
GenericName=X compositor
Comment=A X compositor
Categories=Utility;
TryExec=compton
Exec=compton
Icon=compton
# Thanks to quequotion for providing this file!
NoDisplay=true

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=conky
Exec=conky --daemonize --pause=1
StartupNotify=false
Terminal=false
Icon=conky-logomark-violet
Categories=System;Monitor;
NoDisplay=true

View File

@ -0,0 +1,16 @@
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=jgmenu
GenericName=Application Menu
GenericName[ru]=Меню приложений
GenericName[sv]=Program Meny
Comment=Displays menu for launching installed applications
Comment[ru]=Отображает меню для запуска установленных приложений
Comment[sv]=Visar meny för installerade program
Exec=jgmenu_run
Terminal=false
Icon=jgmenu
Categories=System
StartupNotify=false
NoDisplay=true

View File

@ -0,0 +1,97 @@
[Desktop Entry]
Type=Application
Name=Preferred Applications
Name[ar]=التّطبيقات المحبّذة
Name[be]=Пераважныя праграмы
Name[bg]=Предпочитани програми
Name[bn]=পছন্দনীয় অ্যাপ্লিকেশন
Name[ca]=Aplicacions preferides
Name[cs]=Upřednostňované aplikace
Name[da]=Foretrukne programmer
Name[de]=Bevorzugte Anwendungen
Name[el]=Προτιμώμενες εφαρμογές
Name[en_GB]=Preferred Applications
Name[es]=Aplicaciones preferidas
Name[et]=Eelistatud rakendused
Name[eu]=Hobetsitako aplikazioak
Name[fa]=نرم‌افزارهای برگزیده
Name[fi]=Oletussovellukset
Name[fo]=Framumtiknar nýtsluskipanir
Name[fr]=Applications préférées
Name[gl]=Aplicacións preferidas
Name[he]=יישומים מועדפים
Name[hr]=Željeni programi
Name[hu]=Alapértelmezett alkalmazások
Name[id]=Aplikasi Pilihan
Name[is]=Forgangsforrit
Name[it]=Applicazioni preferite
Name[ja]=既定のアプリケーション
Name[kk]=Таңдамалы қолданбалар
Name[ko]=기본 프로그램
Name[lg]=Puloguramu ennondemu
Name[lt]=Pageidaujamos programos
Name[nl]=Voorkeurstoepassingen
Name[pl]=Preferowane programy
Name[pt]=Aplicações preferidas
Name[pt_BR]=Aplicativos Preferidos
Name[ro]=Programe preferate
Name[ru]=Предпочтительные приложения
Name[sk]=Odporúčané aplikácie
Name[sl]=Prednostni programi
Name[sr]=Подразумевани програми
Name[sr@latin]=Podrazumevani programi
Name[sv]=Program
Name[te]=ప్రాధాన్య అనువర్తనాలు
Name[tr]=Tercih Edilen Uygulamalar
Name[tt_RU]=Яратылган кушымталар
Name[ug]=ئامراق پروگراممىلار
Name[uk]=Улюблені програми
Name[vi]=Ứng dụng ưa thích
Name[zh_CN]=优先使用的应用程序
Name[zh_TW]=偏好的應用程式
Comment=Select applications called on click on Web link or e-mail address
Comment[ar]=حدّد التّطبيقات المستدعاة عند النّقر على وصلة وِبّ أو عنوان بريد إلكترونيّ.
Comment[bg]=Изберете приложенията, които да се извикват при клик на Уеб връзка или имейл адрес.
Comment[ca]=Selecciona les aplicacions invocades amb un clic sobre un enllaç web o una adreça de correu electrònic
Comment[cs]=Vyberte aplikaci, která se spustí při kliknutí na webový odkaz nebo e-mail adresu
Comment[da]=Vælg programmer som skal bruges ved klik på weblink eller e-mailadresse
Comment[de]=Anwendung für Weblinks oder E-mail Adressen auswählen
Comment[el]=Επιλογή εφαρμογών που ενεργοποιούνται με την κλήση συνδέσμου του διαδικτύου ή διεύθυνσης ηλεκτρονικού ταχυδρομείου
Comment[es]=Elija las aplicaciones a abrir al pulsar en enlaces web o direcciones de correo
Comment[et]=Vali rakendused, mis avatakse veebilingile või meiliaadressile klõpsamisel
Comment[eu]=Hautatu Webeko esteka edo e-posta helbide bat klikatzean deitzen diren aplikazioak
Comment[fi]=Selecione as aplicações a invocar ao clicar numa ligação ou endereço eletrónico
Comment[fr]=Sélectionner les applications à ouvrir par clic sur un hyperlien ou une adresse électronique
Comment[gl]=Seleccione as aplicacións que chamar ao premer sobre a ligazón web ou o enderezo de correo
Comment[he]=בחירת יישומים שיפעלו עקב לחיצה על קישור לאתר או לכתובת דוא״ל
Comment[hr]=Odabrite programe koji će biti pozvani klikom na poveznicu ili e-mail adresu
Comment[id]=Pilih aplikasi yang dipanggil saat mengklik taut Web atau alamat surel
Comment[is]=Veldu hvaða forrit þú vilt að tölvan noti þegar smellt er á vefslóð eða netfangstengil
Comment[it]=Scegli le applicazioni eseguite al clic su un collegamento Web o un indirizzo e-mail
Comment[ja]=Web のリンクや e-mail アドレスをクリックした時に呼ばれるアプリケーションを選択してください
Comment[kk]=Веб сілтемесі не эл. пошта адресі шертілген кезде ашылатын қолданбаларды таңдау
Comment[ko]=웹 링크 또는 전자메일 주소를 누를때 호출할 프로그램을 선택하십시오
Comment[lg]=Londa puloguramu z'oyagala zitandike nga okoonye ku nyunzi ey'oku yintaneti oba ku ndagiriro ya email
Comment[lt]=Pasirinkti programas, kurios bus paleidžiamos, spustelėjus saityno nuorodą ar el. pašto adresą
Comment[nl]=Kies toepassingen die worden aangeroepen bij een klik op een webkoppeling of e-mailadres
Comment[pl]=Wybierz programy uruchamiane przy kliknięciu w odnośnik sieciowy lub adres e-mail
Comment[pt]=Selecione as aplicações a invocar ao clicar numa ligação ou endereço eletrónico
Comment[pt_BR]=Selecione as aplicações que serão chamadas com click em Web link ou endereço de e-mail
Comment[ru]=Выбрать приложения, открываемые при клике на Web-ссылку или адрес почты
Comment[sk]=Vyberte aplikáciu, ktorá sa spustí pri kliknutí na webový odkaz alebo emailovú adresu
Comment[sl]=Izberite programe, ki se zaženejo, ko pritisnite na spletno povezavo ali naslov elektronske pošte
Comment[sr]=Одаберите програме покренуте кликом на веб везе или адресу е-поште
Comment[sr@latin]=Odaberite aplikacije klikom na veb link ili adresu e-pošte
Comment[sv]=Välj applikation att starta vid klick på webb- eller e-post-adress
Comment[te]=జాల లంకె లేదా ఈమెయిలు చిరునామా పై నొక్కినప్పుడు తెరవబడే అనువర్తనాన్ని ఎంచుకోండి
Comment[tr]=Web bağlantısı veya e-posta adresine tıklanıldığında çağrılacak uygulamaları seçin
Comment[uk]=Вибір програм, що викликаються по клацанню на Web посилання або поштову адресу
Comment[zh_CN]=选择当点击网络链接或邮件地址时调用的应用程序
Comment[zh_TW]=選取當點擊網頁連結或電郵位址時開啟的應用程式
Icon=preferences-desktop
Exec=libfm-pref-apps
StartupNotify=true
Categories=Settings;DesktopSettings;X-LXDE-Settings;GTK;
OnlyShowIn=LXDE;
NotShowIn=Openbox;
NoDisplay=true

View File

@ -0,0 +1,11 @@
# should only be used when lstopo is built with Cairo/X11 support
# so that no terminal is required
[Desktop Entry]
Name=Hardware Locality lstopo
Comment=Show hardware topology
Exec=lstopo
Terminal=false
Type=Application
Categories=System;
Keywords=System;Utility;
NoDisplay=true

View File

@ -0,0 +1,15 @@
[Desktop Entry]
Encoding=UTF-8
Name=Mabox Menu
Comment=Tint2 Mabox Menu Hack
X-GNOME-FullName=Mabox Menu
#Exec=xdotool key super+space
Exec=mb-jgtools main
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=distributor-logo-mabox
Categories=Utility;
MimeType=
StartupNotify=true
NoDisplay=true

View File

@ -0,0 +1,107 @@
[Desktop Entry]
Type=Application
Icon=user-desktop
Name=Desktop Preferences
Name[ar]=تفضيلات سطح المكتب
Name[be]=Настаўленні працоўнай прасторы
Name[bg]=Предпочитания
Name[bn]=ডেস্কটপের পছন্দসমূহ
Name[ca]=Obre les preferències de l'escriptori
Name[cs]=Nastavení pracovní plochy
Name[da]=Skrivebordsindstillinger
Name[de]=Desktop Einstellungen
Name[el]=Ρυθμίσεις επιφάνειας εργασίας
Name[en_GB]=Desktop Preferences
Name[es]=Preferencias del escritorio
Name[et]=Töölaua eelistused
Name[eu]=Mahaigainaren hobespenak
Name[fa]=ترجیحات رومیزی
Name[fi]=Työpöydän asetukset
Name[fo]=Skriviborðs sertokkar
Name[fr]=Préférences du bureau
Name[gl]=Preferencias de escritorio
Name[he]=העדפות שולחן העבודה
Name[hr]=Svojstva radne površine
Name[hu]=Asztal beállításai
Name[id]=Preferensi Desktop
Name[is]=Skjáborðsstillingar
Name[it]=Preferenze della scrivania
Name[ja]=デスクトップの設定
Name[kk]=Жұмыс үстел баптаулары
Name[km]=ចំណង់ចំណូលចិត្តផ្ទែតុ
Name[ko]=데스크톱 기본 설정
Name[lg]=Entegeka y'awakolerwa
Name[lt]=Darbalaukio nuostatos
Name[lv]=Darba virsmas iestatījumi
Name[ms]=Preference desktop
Name[nl]=Bureaubladvoorkeuren
Name[pa]=ਡੈਸਕਟਾਪ ਪਸੰਦ
Name[pl]=Ustawienia pulpitu
Name[pt]=Preferências da área de trabalho
Name[pt_BR]=Preferências da Área de Trabalho
Name[ro]=Preferințe pentru desktop
Name[ru]=Параметры рабочего стола
Name[si]=වැඩතල අභිප්‍රේත
Name[sk]=Nastavenie pracovného prostredia
Name[sl]=Možnosti namizja
Name[sr]=Поставке радне површи
Name[sr@latin]=Postavke radne površi
Name[sv]=Skrivbordsinställningar
Name[te]=డెస్క్‌టాప్ ప్రాధాన్యతలు
Name[tr]=Masaüstü Seçenekleri
Name[tt_RU]=Эш өстәле көйләүләре
Name[ug]=ئۈستەلئۈستى مايىللىقى
Name[uk]=Налаштування стільниці
Name[vi]=Tùy chỉnh màn hình nền
Name[zh_CN]=桌面偏好设置
Name[zh_TW]=桌面偏好設定
Comment=Change desktop wallpapers and behavior of desktop manager
Comment[ar]=غيّر خلفيات سطح المكتب وسلوك مدير سطح المكتب
Comment[be]=Змяненне шпалер і паводзін кіраўніка працоўных прастораў
Comment[bg]=Промяна на тапетите и поведението на мениджъра на работния плот
Comment[ca]=Canvieu els fons d'escriptori i el comportament del gestor de l'escriptori
Comment[cs]=Změna tapety na plochu a ovládání správce plochy
Comment[da]=Skift skrivebordstapeter og adfærd af skrivebordshåndtering
Comment[de]=Hintergrundbilder und Verhalten der Desktopverwaltung ändern
Comment[el]=Αλλαγή ταπετσαρίας επιφανειών εργασίας και συμπεριφοράς του διαχειριστή επιφάνειας εργασίας
Comment[en_GB]=Change desktop wallpapers and behaviour of desktop manager
Comment[es]=Cambiar el fondo y el comportamiento del escritorio
Comment[et]=Töölaua taustapiltide ja ekraanihalduri käitumise muutmine
Comment[eu]=Aldatu mahaigaineko horma-paperak eta mahaigain-kudeatzailearen portaera
Comment[fa]=تغییر پس‌زمینه‌ها و رفتار مدیر رومیزی
Comment[fi]=Vaihda työpöydän taustakuvia ja käyttäytymistä
Comment[fr]=Modifier les fonds décran et le comportement du gestionnaire de bureau
Comment[gl]=Cambio de fondos de pantalla e comportamento do xestor do escritorio
Comment[he]=שינוי רקע שולחן העבודה ואת ההתנהגות של מנהל שולחנות העבודה
Comment[hr]=Promjeni pozadinske slike radne površine i ponašanje upravitelja radnom površinom
Comment[hu]=A háttérkép(ek) és az ablakkezelő viselkedésének megváltoztatása
Comment[id]=Ubah gambar latar desktop dan perilaku dari manajer desktop
Comment[it]=Cambia lo sfondo della scrivania e il comportamento del desktop manager
Comment[ja]=壁紙やデスクトップマネージャの動作を変更します
Comment[kk]=Жұмыс үстел түсқағазын мен жұмыс үстел басқарушысы мінез-құлығын өзгерту
Comment[ko]=데스크톱의 바탕 화면을 바꾸고 데스크톱 관리자의 기능을 합니다
Comment[lg]=Teekateka endabika y'obwaliriro bw'awakolerwa n'enkola y'ekiruŋamya awakolerwa
Comment[lt]=Keisti darbalaukio fonus ir darbalaukio tvarkytuvės elgseną
Comment[nl]=Verander bureaubladachtergronden en het gedrag van de bureaubladbeheerder
Comment[pl]=Zmienia tło pulpitu i zachowanie menedżera pulpitu
Comment[pt]=Mudar papel de parede e comportamento do gestor de áreas de trabalho
Comment[pt_BR]=Altere os papéis de parede e o comportamento do gerenciador da área de trabalho
Comment[ro]=Schimbați imaginile de fundal și comportamentul managerului desktopului
Comment[ru]=Смена обоев рабочего стола и поведения менеджера рабочего стола
Comment[sl]=Spremenite ozadje in obnašanje upravljalnika namizij
Comment[sr]=Измењуј позадинске слике радне површи и понашање управника радне површи
Comment[sr@latin]=Izmenjuj pozadinske slike radne površi i ponašanje upravnika radne površi
Comment[sv]=Ändra bakgrundsbild och hur skrivbordshanteraren beter sig
Comment[te]=డెస్క్‍టాప్ నేపథ్యచిత్రము, డెస్క్‍టాప్ నిర్వాహకము యొక్క ప్రవర్తనను మార్చు
Comment[tr]=Duvar kağıdını ve masaüstü yöneticisinin davranışını değiştir
Comment[ug]=ئۈستەلئۈستى تام قەغىزى ۋە ھۆججەت باشقۇرغۇنىڭ ئىشلىرىنى ئۆزگەرتىش
Comment[uk]=Налаштування шпалер та поведінки менеджера стільниці
Comment[vi]=Thay đổi ảnh nền và trạng thái của bộ quản lý màn hình nền
Comment[zh_CN]=更改桌面壁纸和桌面管理器行为
Comment[zh_TW]=變更桌面管現程式的桌布及行為
Categories=Settings;GTK;DesktopSettings;X-LXDE-Settings;
Exec=pcmanfm --desktop-pref
StartupNotify=true
Terminal=false
NotShowIn=GNOME;XFCE;KDE;MATE;Openbox;
NoDisplay=true

View File

@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=picom
GenericName=X compositor
Comment=A X compositor
Categories=Utility;
Keywords=compositor;composite manager;window effects;transparency;opacity;
TryExec=picom
Exec=picom
# Thanks to quequotion for providing this file!
NoDisplay=true

View File

@ -0,0 +1,65 @@
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=Tint2
GenericName=Panel
GenericName[am]=ፓነል
GenericName[ar]=الشريط
GenericName[ast]=Panel
GenericName[be]=Панэль
GenericName[ca]=Quadre
GenericName[cs]=Panel
GenericName[da]=Panel
GenericName[de]=Leiste
GenericName[dz]=པེ་ནཱལ།
GenericName[el]=Ταμπλό
GenericName[en]=Tint2 panel
GenericName[eo]=Panelo
GenericName[es]=Panel
GenericName[et]=Ääreriba
GenericName[eu]=Panela
GenericName[fi]=Paneeli
GenericName[fr]=Panneau
GenericName[gl]=Panel
GenericName[he]=לוח
GenericName[hu]=Panel
GenericName[id]=Panel
GenericName[it]=Pannello
GenericName[ja]=パネル
GenericName[kk]=Панель
GenericName[ko]=패널
GenericName[ku]=Panel
GenericName[lv]=Panelis
GenericName[mk]=Панел
GenericName[nb]=Panel
GenericName[nl]=Paneel
GenericName[nn]=Panel
GenericName[pa]=ਪੈਨਲ
GenericName[pl]=Panel
GenericName[pt]=Painel
GenericName[ro]=Panou
GenericName[ru]=Панель
GenericName[si]=පුවරුව
GenericName[sk]=Panel
GenericName[sq]=Panel
GenericName[sv]=Panel
GenericName[ta]=பலகை
GenericName[tr]=Panel
GenericName[ug]=panel
GenericName[uk]=Панель
GenericName[ur]=پینل
GenericName[vi]=Panel
GenericName[zh]=面板
Comment=Lightweight panel
Comment[fr]=Panel léger
Comment[pl]=Lekki panel
Comment[ru]=Легковесная панель
Exec=tint2
Icon=tint2
Terminal=false
Categories=System;
NoDisplay=true

View File

@ -0,0 +1,120 @@
# The vim.desktop file is generated by src/po/Makefile, do NOT edit.
# Edit the src/po/vim.desktop.in file instead.
[Desktop Entry]
# Translators: This is the Application Name used in the Vim desktop file
Name[de]=Vim
Name[eo]=Vim
Name[fr]=Vim
Name[ru]=Vim
Name[sr]=Vim
Name[tr]=Vim
Name=Vim
# Translators: This is the Generic Application Name used in the Vim desktop file
GenericName[de]=Texteditor
GenericName[eo]=Tekstoredaktilo
GenericName[fr]=Éditeur de texte
GenericName[ja]=テキストエディタ
GenericName[ru]=Текстовый редактор
GenericName[sr]=Текст Едитор
GenericName[tr]=Metin Düzenleyici
GenericName=Text Editor
# Translators: This is the comment used in the Vim desktop file
Comment[de]=Textdateien bearbeiten
Comment[eo]=Redakti tekstajn dosierojn
Comment[fr]=Éditer des fichiers texte
Comment[ja]=テキストファイルを編集します
Comment[ru]=Редактирование текстовых файлов
Comment[sr]=Уређивање текст фајлова
Comment[tr]=Metin dosyaları düzenleyin
Comment=Edit text files
# The translations should come from the po file. Leave them here for now, they will
# be overwritten by the po file when generating the desktop.file.
GenericName[da]=Teksteditor
GenericName[pl]=Edytor tekstu
GenericName[is]=Ritvinnsluforrit
Comment[af]=Redigeer tekslêers
Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ
Comment[ar]=حرّر ملفات نصية
Comment[az]=Mətn fayllarını redaktə edin
Comment[be]=Рэдагаваньне тэкставых файлаў
Comment[bg]=Редактиране на текстови файлове
Comment[bn]=টেক্স্ট ফাইল এডিট করুন
Comment[bs]=Izmijeni tekstualne datoteke
Comment[ca]=Edita fitxers de text
Comment[cs]=Úprava textových souborů
Comment[cy]=Golygu ffeiliau testun
Comment[da]=Rediger tekstfiler
Comment[el]=Επεξεργασία αρχείων κειμένου
Comment[en_CA]=Edit text files
Comment[en_GB]=Edit text files
Comment[es]=Edita archivos de texto
Comment[et]=Redigeeri tekstifaile
Comment[eu]=Editatu testu-fitxategiak
Comment[fa]=ویرایش پرونده‌های متنی
Comment[fi]=Muokkaa tekstitiedostoja
Comment[ga]=Eagar comhad Téacs
Comment[gu]=લખાણ ફાઇલોમાં ફેરફાર કરો
Comment[he]=ערוך קבצי טקסט
Comment[hi]=पाठ फ़ाइलें संपादित करें
Comment[hr]=Uređivanje tekstualne datoteke
Comment[hu]=Szövegfájlok szerkesztése
Comment[id]=Edit file teks
Comment[is]=Vinna með textaskrár
Comment[it]=Modifica file di testo
Comment[kn]=ಪಠ್ಯ ಕಡತಗಳನ್ನು ಸಂಪಾದಿಸು
Comment[ko]=텍스트 파일을 편집합니다
Comment[lt]=Redaguoti tekstines bylas
Comment[lv]=Rediģēt teksta failus
Comment[mk]=Уреди текстуални фајлови
Comment[ml]=വാചക രചനകള് തിരുത്തുക
Comment[mn]=Текст файл боловсруулах
Comment[mr]=गद्य फाइल संपादित करा
Comment[ms]=Edit fail teks
Comment[nb]=Rediger tekstfiler
Comment[ne]=पाठ फाइललाई संशोधन गर्नुहोस्
Comment[nl]=Tekstbestanden bewerken
Comment[nn]=Rediger tekstfiler
Comment[no]=Rediger tekstfiler
Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ
Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ
Comment[pl]=Edytuj pliki tekstowe
Comment[pt]=Editar ficheiros de texto
Comment[pt_BR]=Edite arquivos de texto
Comment[ro]=Editare fişiere text
Comment[sk]=Úprava textových súborov
Comment[sl]=Urejanje datotek z besedili
Comment[sq]=Përpuno files teksti
Comment[sr@Latn]=Izmeni tekstualne datoteke
Comment[sv]=Redigera textfiler
Comment[ta]=உரை கோப்புகளை தொகுக்கவும்
Comment[th]=แก้ไขแฟ้มข้อความ
Comment[tk]=Metin faýllary editle
Comment[uk]=Редактор текстових файлів
Comment[vi]=Soạn thảo tập tin văn bản
Comment[wa]=Asspougnî des fitchîs tecses
Comment[zh_CN]=编辑文本文件
Comment[zh_TW]=編輯文字檔
TryExec=vim
Exec=vim %F
Terminal=true
Type=Application
# Translators: Search terms to find this application. Do NOT change the semicolons! The list MUST also end with a semicolon!
Keywords[de]=Text;Editor;
Keywords[eo]=Teksto;redaktilo;
Keywords[fr]=Texte;éditeur;
Keywords[ja]=テキスト;エディタ;
Keywords[ru]=текст;текстовый редактор;
Keywords[sr]=Текст;едитор;
Keywords[tr]=Metin;düzenleyici;
Keywords=Text;editor;
# Translators: This is the Icon file name. Do NOT translate
Icon[de]=gvim
Icon[eo]=gvim
Icon[fr]=gvim
Icon[ru]=gvim
Icon[sr]=gvim
Icon=gvim
Categories=Utility;TextEditor;
StartupNotify=false
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
NoDisplay=true

View File

@ -0,0 +1,121 @@
[Desktop Entry]
Version=1.0
Type=Application
Exec=xfce4-about
Icon=help-about
StartupNotify=false
Terminal=false
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
OnlyShowIn=XFCE;
Name=About Xfce
Name[am]=ስለ Xfce
Name[ar]=حول إكسفس
Name[ast]=Tocante Xfce
Name[be]=Пра Xfce
Name[bg]=Относно Xfce
Name[ca]=Quant a Xfce
Name[cs]=O prostředí Xfce
Name[cy]=Ynghylch Xfce
Name[da]=Om Xfce
Name[de]=Über Xfce
Name[el]=Περί Xfce
Name[en_AU]=About Xfce
Name[en_GB]=About Xfce
Name[es]=Acerca de Xfce
Name[eu]=Xfce-ri buruz
Name[fi]=Tietoja Xfce:stä
Name[fr]=À propos de Xfce
Name[gl]=Sobre Xfce
Name[he]=אודות Xfce
Name[hr]=O Xfce-u
Name[hu]=Az Xfce névjegye
Name[hy]=Xfce֊ի մասին
Name[hy_AM]=Xfce֊ի մասին
Name[id]=Tentang Xfce
Name[ie]=Pri Xfce
Name[is]=Um Xfce
Name[it]=Informazioni su Xfce
Name[ja]=Xfce について
Name[kk]=Xfce туралы
Name[ko]=Xfce 정보
Name[lt]=Apie Xfce
Name[ms]=Perihal Xfce
Name[nb]=Om Xfce
Name[nl]=Over Xfce
Name[nn]=Om Xfce
Name[oc]=A prepaus de Xfce
Name[pl]=O środowisku Xfce
Name[pt]=Sobre o Xfce
Name[pt_BR]=Sobre o Xfce
Name[ro]=Despre Xfce
Name[ru]=Об Xfce
Name[sk]=O pracovnom prostredí Xfce
Name[sl]=O Xfce
Name[sq]=Mbi Xfce-në
Name[sr]=О Иксфце-у
Name[sv]=Om Xfce
Name[te]=Xfce గురించి
Name[th]=เกี่ยวกับ Xfce
Name[tr]=Xfce Hakkında
Name[ug]=مەزكۇر Xfce ھەققىدە
Name[uk]=Про Xfce
Name[vi]=Thông tin về XFCE
Name[zh_CN]=关于 Xfce
Name[zh_HK]=關於 Xfce
Name[zh_TW]=關於 Xfce
Comment=Information about the Xfce Desktop Environment
Comment[ar]=معلمومات حول بيئة سطح المكتب إكسفس
Comment[ast]=Información tocante al entornu d'escritoriu Xfce
Comment[be]=Звесткі пра працоўнае асяроддзе Xfce
Comment[bg]=Сведения за работната среда Xfce
Comment[ca]=Informació quant a l'entorn d'escriptori Xfce
Comment[cs]=Informace o pracovním prostředí Xfce
Comment[cy]=Gwybodaeth am yr Amgylchedd Penfwrdd Xfce
Comment[da]=Information om Xfce-skrivebordsmiljøet
Comment[de]=Informationen über die Xfce-Arbeitsumgebung
Comment[el]=Πληροφορίες σχετικά με το περιβάλλον εργασίας Xfce
Comment[en_AU]=Information about the Xfce Desktop Environment
Comment[en_GB]=Information about the Xfce Desktop Environment
Comment[es]=Información sobre el Entorno de escritorio Xfce
Comment[eu]=Xfce mahaigain inguruneari buruzko argibideak
Comment[fi]=Tietoja Xfce-työpöytäympäristöstä
Comment[fr]=Informations à propos de lenvironnement de bureau Xfce
Comment[gl]=Información sobre o contorno de escritorio Xfce
Comment[he]=מידע אודות סביבת שולחן עבודה Xfce
Comment[hr]=Informacije o Xfce radnom okruženju
Comment[hu]=Információk az Xfce asztali környezetről
Comment[hy]=Տեղեկույթ Xfce աշխատասեղանի միջավայրի մասին
Comment[hy_AM]=Տեղեկոյթ Xfce աշխատասեղանի միջավայրի մասին
Comment[id]=Informasi tentang Lingkungan Desktop Xfce
Comment[ie]=Information pri li ambientie Xfce
Comment[is]=Upplýsingar um Xfce skjáborðsumhverfið
Comment[it]=Informazioni sull'ambiente grafico Xfce
Comment[ja]=Xfce デスクトップ環境に関する情報です
Comment[kk]=Xfce жұмыс үстел ортасы туралы ақпарат
Comment[ko]=Xfce 데스크톱 환경 정보
Comment[lt]=Informacija apie Xfce darbalaukio aplinką
Comment[ms]=Maklumat tentang Persekitaran Desktop Xfce
Comment[nb]=Informasjon om Xfce-skrivebordsmiljøet
Comment[nl]=Inlichtingen over de Xfce-werkomgeving
Comment[nn]=Opplysingar om skrivebordsmiljøet Xfce
Comment[oc]=Informacion a prepaus de l'environament de burèu Xfce
Comment[pl]=Wyświetla informacje o środowisku graficznym Xfce
Comment[pt]=Informações do ambiente de trabalho Xfce
Comment[pt_BR]=Informação sobre o Ambiente de área de trabalho Xfce
Comment[ro]=Detalii despre mediul desktop Xfce
Comment[ru]=Сведения об окружении Xfce
Comment[sk]=Informácie o pracovnom prostredí Xfce
Comment[sl]=Podatki o Xfce namiznem okolju
Comment[sq]=Të dhëna të përgjithshme mbi Mjedisin Desktop Xfce
Comment[sr]=Подаци о радном окружењу Иксфце-а
Comment[sv]=Information om skrivbordsmiljön Xfce
Comment[te]=Xfce డెస్క్‍టాప్ పర్యావరణం గురించిన సమాచారం
Comment[th]=ข้อมูลเกี่ยวกับเดสก์ท็อป Xfce
Comment[tr]=Xfce Masaüstü Ortamı hakkında bilgi
Comment[ug]=مەزكۇر Xfce ئۈستەلئۈستى مۇھىتى ھەققىدە ئۇچۇر
Comment[uk]=Інформація про середовище робочого столу Xfce
Comment[vi]=Thông tin về môi trường màn hình Xfce
Comment[zh_CN]=有关 Xfce 桌面环境的信息
Comment[zh_HK]=有關 Xfce 桌面環境的資訊
Comment[zh_TW]=有關 Xfce 桌面環境的資訊
NoDisplay=true

View File

@ -0,0 +1,27 @@
[Desktop Entry]
Encoding=UTF-8
Name=Icon Browser
Name[es]=Explorador de Iconos
Name[fr]=Navigateur d'Icônes
Name[it]=Navigatore di icone
Name[pt_BR]=Ícone do navegador
Name[ru]=Броузер иконок
Name[sk]=Prehliadač ikon
Name[uk]=Павігатор іконок
Name[zh_TW]=圖示瀏覽器
Comment=Inspect GTK Icon Theme
Comment[es]=Incpeccionar tema de íconos GTK
Comment[fr]=Parcourir les icônes du thème GTK
Comment[it]=Sfoglia le icone del tema GTK
Comment[pt_BR]=Inspecionar ícone tema do GTK
Comment[ru]=Исследование темы иконок GTK
Comment[sk]=Preskúmať tému ikon GTK
Comment[uk]=Перегляд теми іконок GTK
Comment[zh_TW]=檢閱 GTK 圖示布景主題
Categories=GTK;Development;
Exec=yad-icon-browser
Icon=yad
Terminal=false
Type=Application
StartupNotify=true
NoDisplay=true

View File

@ -1,3 +1,3 @@
#!/bin/bash
[ -e ~/.cache/i3lock/current ] || betterlockscreen -u /usr/share/backgrounds/sharon-mccutcheon-527906-unsplash.jpg
[ -e ~/.cache/i3lock/current ] || betterlockscreen -u /usr/share/backgrounds/everaldo-coelho-486011-unsplash.jpg

View File

@ -85,24 +85,29 @@ TEXT
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
${color2}${hr 1}${voffset -4}
${color2}menedżer plików ${alignr}${color}super+f
${color2}menu ${alignr}${color}super / super+spacja
${color2}uruchom... ${alignr}${color}super+m / alt+F2
${color2}przeglądarka www ${alignr}${color}super+w
${color2}terminal ${alignr}${color}super+t
${color2}kontrola głośności ${alignr}${color}super+v
${color2}menu ${alignr}${color}super / super+spacja
${color2}uruchom... ${alignr}${color}super+m / alt+F2
${color2}zrzuty ekranu... ${alignr}${color}PrtScr
${color2}wł/wył Compton ${alignr}${color}super+c
${color2}blokuj ekran ${alignr}${color}super+l
${color2}xkill ${alignr}${color}super+k
${color2}wyjście ${alignr}${color}super+x
${color}PANELE${voffset -6}
${color2}${hr 1}${voffset -4}
${color2}miejsca (lewy) ${alignr} ${color}ctrl+TAB
${color2}ustawienia (prawy) ${alignr} ${color}super+TAB
${color2}pokaż/ukryj DOK (Gkrellm) ${alignr} ${color}super+alt+d
${color}OKNA${voffset -6}
${color2}${hr 1}${voffset -4}
${color2}zamknij ${alignr} ${color}alt+F4
${color2}minimalizuj ${alignr} ${color}alt+F5
${color2}maksymalizacja ${alignr} ${color}alt+F6
${color2}obniż ${alignr} ${color}alt+esc
${color2}pokaż pulpit ${alignr} ${color}super+d
${color2}wł/wył obramowanie ${alignr} ${color}super+b
${color2}wł/wył pełny ekran ${alignr} ${color}F11
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
${color2}rozmieszczanie okien:
${color2} - połowa ekranu ${alignr} ${color}super+strzałki

View File

@ -1,67 +0,0 @@
{
"alias_applications": true,
"alias_display_format": "{name}",
"exclude_items": [],
"filebrowser": "exo-open",
"fileopener": "exo-open",
"filter_binaries": false,
"follow_symlinks": false,
"frequently_used": 0,
"global_ignore_folders": [],
"ignore_folders": [],
"include_applications": true,
"include_binaries": false,
"include_hidden_files": false,
"include_hidden_folders": false,
"include_items": [],
"indicator_alias": "",
"indicator_edit": "*",
"indicator_submenu": "->",
"menu": "rofi",
"menu_arguments": [
"-dmenu",
"-i"
],
"password_helper": [
"yad",
"--password",
"--title={prompt}"
],
"path_aliasFile": "",
"path_shellCommand": "~/.dmenuEextended_shellCommand.sh",
"prompt": "Uruchom:",
"scan_hidden_folders": false,
"terminal": "terminator",
"valid_extensions": [
"py",
"svg",
"pdf",
"txt",
"png",
"jpg",
"gif",
"php",
"tex",
"odf",
"ods",
"avi",
"mpg",
"mp3",
"lyx",
"bib",
"iso",
"ps",
"zip",
"xcf",
"doc",
"docxxls",
"xlsx",
"md",
"html",
"sublime-project"
],
"watch_folders": [
"~/"
],
"webbrowser": "exo-open --launch WebBrowser"
}

View File

@ -1,21 +0,0 @@
{
"default": "Google",
"providers": [
{
"title": "Google",
"url": "https://www.google.com/search?q={searchterm}"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/Special:Search?search={searchterm}"
},
{
"title": "Google images",
"url": "https://www.google.com/images?q={searchterm}"
},
{
"title": "Github",
"url": "https://github.com/search?q={searchterm}"
}
]
}

View File

@ -1,3 +0,0 @@
import os
import glob
__all__ = [ os.path.basename(f)[:-3] for f in glob.glob(os.path.dirname(__file__)+"/*.py")]

View File

@ -1,107 +0,0 @@
import dmenu_extended
import sys
file_prefs = dmenu_extended.path_prefs + '/internetSearch.json'
class extension(dmenu_extended.dmenu):
title = 'Internet search: '
is_submenu = True
def create_default_providers(self):
default = {
'providers': [
{
'title': 'Google',
'url': 'https://www.google.com/search?q={searchterm}'
},
{
'title': 'Wikipedia',
'url': 'https://en.wikipedia.org/wiki/Special:Search?search={searchterm}'
},
{
'title': 'Google images',
'url': 'https://www.google.com/images?q={searchterm}'
},
{
'title': 'Github',
'url': 'https://github.com/search?q={searchterm}'
}
],
'default': 'Google'
}
self.save_json(file_prefs, default)
def load_providers(self):
providers = self.load_json(file_prefs)
if providers == False:
self.create_default_providers()
providers = self.load_json(file_prefs)
uptodate = False
for provider in providers['providers']:
if provider['url'].find('{searchterm}') != -1:
uptodate = True
break
if not uptodate:
print('Search providers list is out-of-date, replacing (old list saved)')
self.save_json(file_prefs[:-5]+'_old.json', providers)
self.create_default_providers()
return self.load_providers()
return providers
def conduct_search(self, searchTerm, providerName=False):
default = self.providers['default']
primary = False
fallback = False
for provider in self.providers['providers']:
if provider['title'] == default:
# fallback = provider['url'].replace("%keywords%", searchTerm)
fallback = provider['url'].format(searchterm=searchTerm)
elif provider['title'] == providerName:
# primary = provider['url'].replace("%keywords%", searchTerm)
primary = provider['url'].format(searchterm=searchTerm)
if primary:
self.open_url(primary)
else:
self.open_url(fallback)
def run(self, inputText):
self.providers = self.load_providers()
if inputText != '':
self.conduct_search(inputText)
else:
items = []
for provider in self.providers['providers']:
items.append(provider['title'])
item_editPrefs = self.prefs['indicator_edit'] + ' Edit search providers'
items.append(item_editPrefs)
provider = self.menu(items, prompt='Select provider:')
if provider == item_editPrefs:
self.open_file(file_prefs)
elif provider == '':
sys.exit()
else:
if provider not in items:
self.conduct_search(provider)
else:
search = self.menu('', prompt='Enter search')
if search == '':
sys.exit()
else:
self.conduct_search(search, provider)

View File

@ -1,269 +0,0 @@
# -*- coding: utf8 -*-
import dmenu_extended
import os
class extension(dmenu_extended.dmenu):
title = 'System package management'
is_submenu = True
detected_packageManager = False
def __init__(self):
self.load_preferences()
self.cache_packages = dmenu_extended.path_cache + '/packages.txt'
# Determine package manager
if os.path.exists('/usr/bin/apt-get'):
# We are Debian based
self.command_installPackage = 'sudo apt-get install '
self.command_removePackage = 'sudo apt-get remove '
self.command_listInstalled = ['dpkg', '-l']
self.command_listAvailable = ['apt-cache', 'search', '']
self.command_systemUpdate = 'sudo apt-get update && sudo apt-get upgrade'
self.detected_packageManager = 'apt-get'
elif os.path.exists('/usr/bin/yum'):
# We are Red Hat based
self.command_installPackage = 'sudo yum install '
self.command_removePackage = 'sudo yum remove '
self.command_listInstalled = 'yum list installed'
self.command_listAvailable = ["yum", "search", ""]
self.command_systemUpdate = 'sudo yum update'
self.detected_packageManager = 'yum'
elif os.path.exists('/usr/bin/dnf'):
self.command_installPackage = 'sudo dnf install '
self.command_removePackage = 'sudo dnf remove '
self.command_listInstalled = 'dnf list installed'
self.command_listAvailable = ["dnf", "search", ""]
self.command_systemUpdate = 'sudo dnf update'
self.detected_packageManager = 'dnf'
elif os.path.exists('/usr/bin/pacman'):
# We are Arch based
self.command_installPackage = 'sudo pacman -S '
self.command_removePackage = 'sudo pacman -R '
self.command_listInstalled = 'pacman -Q'
self.command_listAvailable = 'pacman -Ss'
self.command_systemUpdate = 'sudo pacman -Syu'
self.detected_packageManager = 'pacman'
elif os.path.exists('/usr/bin/emerge'):
# We are Gentoo based
self.command_installPackage = 'sudo emerge '
self.command_removePackage = 'sudo emerge --unmerge '
self.command_listInstalled = 'cd /var/db/pkg/ && ls -d */* | sed \'s/\-[0-9].*$//\' > ' + dmenu_extended.path_cache + '/tmp.txt'
self.command_listAvailable = 'emerge --search "" | grep "* " | cut -c 4- | sed "s/\[ Masked \]//g" | sed -n \'/^app-accessibility/,$p\' > ' + dmenu_extended.path_cache + '/tmp.txt'
self.command_systemUpdate = 'sudo emerge --sync && sudo emerge -uDv @world'
self.detected_packageManager = 'portage'
def install_package(self):
packages = self.cache_open(self.cache_packages)
if packages == False:
self.menu('No package database exists. Press enter to build cache')
self.build_package_cache()
packages = self.cache_open(self.cache_packages)
package = self.menu(packages, prompt="Install:")
if len(package) > 0:
self.open_terminal(self.command_installPackage + package.split(' ')[0], True)
self.rebuild_notice()
def remove_package(self):
self.message_open('Collecting list of installed packages')
if self.detected_packageManager == 'apt-get':
packages = self.installedPackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.installedPackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.installedPackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.installedPackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.u_installedPackages_portage()
self.message_close()
package = self.select(packages, prompt="Uninstall:")
if package is not -1:
self.open_terminal(self.command_removePackage + package, True)
self.rebuild_notice()
def update_package(self):
self.message_open('Collecting list of installed packages')
if self.detected_packageManager == 'apt-get':
packages = self.installedPackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.installedPackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.installedPackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.installedPackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.installedPackages_portage()
self.message_close()
package = self.select(packages, prompt="Update:")
if package is not -1:
self.open_terminal(self.command_installPackage + package, True)
def build_package_cache(self, message=True):
if message:
self.message_open('Building package cache')
if self.detected_packageManager == 'apt-get':
packages = self.availablePackages_aptget()
elif self.detected_packageManager == 'yum':
packages = self.availablePackages_yum()
elif self.detected_packageManager == 'dnf':
packages = self.availablePackages_dnf()
elif self.detected_packageManager == 'pacman':
packages = self.availablePackages_pacman()
elif self.detected_packageManager == 'portage':
packages = self.availablePackages_portage()
self.cache_save(packages, self.cache_packages)
if message:
self.message_close()
self.menu("Package cache built")
def update_system(self):
self.open_terminal(self.command_systemUpdate, True)
def installedPackages_aptget(self):
packages = self.command_output(self.command_listInstalled)
out = []
for package in packages:
tmp = package.split()
if len(tmp) > 6:
out.append(tmp[1])
out.sort()
return list(set(out))
def installedPackages_yum(self):
packages = self.command_output(self.command_listInstalled)
packages.sort()
return list(set(packages))
def installedPackages_dnf(self):
packages = self.command_output(self.command_listInstalled)
packages.sort()
return list(set(packages))
def installedPackages_pacman(self):
packages = self.command_output(self.command_listInstalled)
out = []
for package in packages:
if len(package) > 0 and package[0] != " ":
out.append(package.split(' ')[0])
out.sort()
return list(set(out))
def installedPackages_portage(self):
os.system(self.command_listInstalled)
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp.txt')
return packages
def u_installedPackages_portage(self):
os.system('cd /var/db/pkg/ && ls -d */* > ' + dmenu_extended.path_cache + '/tmp.txt')
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp.txt')
return packages
def availablePackages_aptget(self):
packages = self.command_output(self.command_listAvailable)
packages.sort()
return packages
def availablePackages_yum(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
tmp = package.split( ' : ' )
if len(tmp) > 1:
if tmp[0][0] == " ":
last += " " + tmp[1]
else:
out.append(last)
last = tmp[0].split('.')[0] + ' - ' + tmp[1]
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_dnf(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
tmp = package.split( ' : ' )
if len(tmp) > 1:
if tmp[0][0] == " ":
last += " " + tmp[1]
else:
out.append(last)
last = tmp[0].split('.')[0] + ' - ' + tmp[1]
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_pacman(self):
packages = self.command_output(self.command_listAvailable)
out = []
last = ""
for package in packages:
if package != "":
if package[0:3] == " ":
last += " - " + package[4:]
else:
out.append(last)
last = package
out.append(last)
out.sort()
return list(set(out[1:]))
def availablePackages_portage(self):
os.system(self.command_listAvailable)
packages = self.command_output('cat ' + dmenu_extended.path_cache + '/tmp.txt')
os.system('rm ' + dmenu_extended.path_cache + '/tmp*')
return packages
def rebuild_notice(self):
# gnome-termainal forks from the calling process so this message shows
# before the action has completed.
if self.prefs['terminal'] != 'gnome-terminal':
rebuild = self.menu(["Cache may be out-of-date, rebuild at your convenience.", "* Rebuild cache now"])
if rebuild == "* Rebuild cache now":
self.cache_regenerate()
def run(self, inputText):
if self.detected_packageManager == False:
self.menu(["Your system package manager could not be determined"])
self.sys.exit()
else:
print('Detected system package manager as ' + str(self.detected_packageManager))
items = [self.prefs['indicator_submenu'] + ' Install a new package',
self.prefs['indicator_submenu'] + ' Uninstall a package',
self.prefs['indicator_submenu'] + ' Update a package',
'Rebuild the package cache',
'Perform system upgrade']
selectedIndex = self.select(items, prompt='Action:', numeric=True)
if selectedIndex != -1:
if selectedIndex == 0:
self.install_package()
elif selectedIndex == 1:
self.remove_package()
elif selectedIndex == 2:
self.update_package()
elif selectedIndex == 3:
self.build_package_cache()
elif selectedIndex == 4:
self.update_system()

View File

@ -0,0 +1,46 @@
@text,,6,6,150,20,0,left,top,auto,#000000,<span size="large"></span>
@search,,24,6,150,20,2,left,top,auto,#000000 0,<i>Pisz aby wyszukać</i>
^sep()
Zainstaluj Mabox,calamares_polkit,distributor-logo-mabox
^sep()
Terminal,exo-open --launch TerminalEmulator,utilities-terminal
Przeglądarka WWW,exo-open --launch WebBrowser,firefox
Menedżer plików,exo-open --launch FileManager,system-file-manager
^sep()
Aplikacje,^checkout(lx-apps),applications-other
^sep()
Zrzut ekranu,mb-jgtools screenshot,emblem-photos
^sep()
Ustawienia,^checkout(ustawienia),applications-utilities
^sep()
Zablokuj ekran,blurlock,system-lock-screen
Wyjście,mb-jgtools mblogout,system-shutdown
^tag(ustawienia)
Centrum Sterowania Mabox,mbcc,mbcc
Mabox Styler,mbstyler,/usr/share/icons/mbs_trans_32.png
^sep(Pulpit)
Wystrój i ikony,lxappearance,preferences-desktop-theme
Tapeta,nitrogen,nitrogen
Powiadomienia,xfce4-notifyd-config,xfce4-notifyd
Zarządzaj Conky,^pipe(jgmenu_run ob --cmd=mabox-conky-pipemenu),desktop-effects
Zarządzaj panelami tint2,^pipe(jgmenu_run ob --cmd=mabox-tint2-pipemenu),tint2conf
Kompozytor,^pipe(jgmenu_run ob --cmd=mabox-compositor),compton
^sep(Ustawienia)
Preferowane aplikacje,exo-preferred-applications,preferences-desktop-default-applications
Menedżer logowania,pkexec lightdm-settings,lightdm-settings
Ustawienia zasilania,xfce4-power-manager-settings,xfce4-power-manager-settings
^sep(Openbox)
Autostart,geany ~/.config/openbox/autostart,geany
RC - plik konfiguracyjny,geany ~/.config/openbox/rc.xml,geany
Rekonfiguruj Openbox,openbox --reconfigure,openbox
^sep(Motywy Maboxa)
Zarządzaj motywami,mb-obthemes,preferences-desktop-theme
^tag(lx-apps)
Can't render this file because it contains an unexpected character in line 1 and column 54.

View File

@ -116,11 +116,13 @@
by other applications, or saved in your session
use obconf if you want to change these without having to log out
and back in -->
<number>2</number>
<number>4</number>
<firstdesk>1</firstdesk>
<names>
<name>1</name>
<name>2</name>
<name>3</name>
<name>4</name>
</names>
<popupTime>875</popupTime>
<!-- The number of milliseconds to show the popup for when switching
@ -128,7 +130,7 @@
</desktops>
<resize>
<drawContents>yes</drawContents>
<popupShow>Nonpixel</popupShow>
<popupShow>Always</popupShow>
<!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) -->
<popupPosition>Center</popupPosition>
<!-- 'Center', 'Top', or 'Fixed' -->
@ -199,7 +201,7 @@
<wrap>no</wrap>
</action>
</keybind>
<keybind key="S-A-Left">
<keybind key="S-A-Left">
<action name="SendToDesktopLeft">
</action>
</keybind>
@ -327,19 +329,19 @@
<command>pavucontrol</command>
</action>
</keybind>
<keybind key="W-m">
<keybind key="W-Tab">
<action name="Execute">
<command>mb-jgpanel main</command>
<command>mb-jgtools right</command>
</action>
</keybind>
<keybind key="W-l">
<action name="Execute">
<command>betterlockscreen -l</command>
<command>betterlockscreen -l dim -t "Wpisz hasło aby odblokować"</command>
</action>
</keybind>
<keybind key="Print">
<action name="Execute">
<command>mb-scrot</command>
<command>mb-jgtools screenshot</command>
</action>
</keybind>
<keybind key="A-Print">
@ -379,7 +381,7 @@
</keybind>
<keybind key="W-x">
<action name="Execute">
<command>rofr.sh -l</command>
<command>mb-jgtools mblogout</command>
</action>
</keybind>
<keybind key="W-r">
@ -387,9 +389,9 @@
<command>openbox --reconfigure</command>
</action>
</keybind>
<keybind key="W-Tab">
<keybind key="C-Tab">
<action name="Execute">
<command>skippy-xd</command>
<command>mb-jgtools places</command>
</action>
</keybind>
<keybind key="XF86MonBrightnessUp">
@ -981,6 +983,9 @@
<!-- show the manage desktops section in the client-list-(combined-)menu -->
</menu>
<applications>
<application class="*">
<focus>yes</focus>
</application>
<!--
# this is an example with comments through out. use these to make your
# own rules, but without the comments of course.