master
Daniel Napora 2020-03-03 02:42:16 +01:00
parent fb72ec6e28
commit 11c4bc238c
92 changed files with 1296 additions and 273 deletions

View File

@ -120,7 +120,7 @@ pamac-snap-plugin
qpdfview
#---------=> manjaro user infomartion
#manjaro-application-utility
manjaro-application-utility
#manjaro-documentation-en
#manjaro-hello
@ -224,10 +224,12 @@ arc-icon-theme
manjaro-grub-theme-brown
manjaro-openbox-maia
manjaro-openbox-matcha
###wallpapers-2018
wallpapers-2018
matcha-gtk-theme
###papirus-maia-icon-theme
xcursor-breeze
xcursor-chicago95-git
chicago95-icon-theme-git
elementary-xfce-icons
gtk-theme-elementary

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

After

Width:  |  Height:  |  Size: 150 KiB

View File

@ -1,12 +0,0 @@
! Rofi
rofi.font: DejaVu Sans Mono 12
rofi.padding: 20
rofi.line-padding: 2
rofi.color-enabled: true
rofi.hide-scrollbar: true
rofi.separator-style: solid
rofi.color-window: #1c2023, #919ba0, #1c2023
rofi.color-normal: #1c2023, #919ba0, #1c2023, #a4a4a4, #1c2023
rofi.color-urgent: argb:00000000, #f43753, argb:00000000, argb:00000000, #e29a49
rofi.color-active: argb:00000000, #49bbfb, argb:00000000, argb:00000000, #e29a49

View File

@ -1,145 +0,0 @@
#
# ~/.bashrc
#
[[ $- != *i* ]] && return
colors() {
local fgc bgc vals seq0
printf "Color escapes are %s\n" '\e[${value};...;${value}m'
printf "Values 30..37 are \e[33mforeground colors\e[m\n"
printf "Values 40..47 are \e[43mbackground colors\e[m\n"
printf "Value 1 gives a \e[1mbold-faced look\e[m\n\n"
# foreground colors
for fgc in {30..37}; do
# background colors
for bgc in {40..47}; do
fgc=${fgc#37} # white
bgc=${bgc#40} # black
vals="${fgc:+$fgc;}${bgc}"
vals=${vals%%;}
seq0="${vals:+\e[${vals}m}"
printf " %-9s" "${seq0:-(default)}"
printf " ${seq0}TEXT\e[m"
printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m"
done
echo; echo
done
}
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
# Change the window title of X terminals
case ${TERM} in
xterm*|rxvt*|Eterm*|aterm|kterm|gnome*|interix|konsole*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\007"'
;;
screen*)
PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\033\\"'
;;
esac
use_color=true
# Set colorful PS1 only on colorful terminals.
# dircolors --print-database uses its own built-in database
# instead of using /etc/DIR_COLORS. Try to use the external file
# first to take advantage of user additions. Use internal bash
# globbing instead of external grep binary.
safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
match_lhs=""
[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
[[ -z ${match_lhs} ]] \
&& type -P dircolors >/dev/null \
&& match_lhs=$(dircolors --print-database)
[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
if ${use_color} ; then
# Enable colors for ls, etc. Prefer ~/.dir_colors #64489
if type -P dircolors >/dev/null ; then
if [[ -f ~/.dir_colors ]] ; then
eval $(dircolors -b ~/.dir_colors)
elif [[ -f /etc/DIR_COLORS ]] ; then
eval $(dircolors -b /etc/DIR_COLORS)
fi
fi
if [[ ${EUID} == 0 ]] ; then
PS1='\[\033[01;31m\][\h\[\033[01;36m\] \W\[\033[01;31m\]]\$\[\033[00m\] '
else
PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \W\[\033[01;32m\]]\$\[\033[00m\] '
fi
alias ls='ls --color=auto'
alias grep='grep --colour=auto'
alias egrep='egrep --colour=auto'
alias fgrep='fgrep --colour=auto'
else
if [[ ${EUID} == 0 ]] ; then
# show root@ when we don't have colors
PS1='\u@\h \W \$ '
else
PS1='\u@\h \w \$ '
fi
fi
unset use_color safe_term match_lhs sh
alias cp="cp -i" # confirm before overwriting something
alias df='df -h' # human-readable sizes
alias free='free -m' # show sizes in MB
alias np='nano -w PKGBUILD'
alias more=less
alias mc='EDITOR=vim . /usr/lib/mc/mc-wrapper.sh'
xhost +local:root > /dev/null 2>&1
complete -cf sudo
# Bash won't get SIGWINCH if another process is in the foreground.
# Enable checkwinsize so that bash will check the terminal size when
# it regains control. #65623
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
shopt -s checkwinsize
shopt -s expand_aliases
# export QT_SELECT=4
# Enable history appending instead of overwriting. #139609
shopt -s histappend
#
# # ex - archive extractor
# # usage: ex <file>
ex ()
{
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xf $1 ;;
*.tbz2) tar xjf $1 ;;
*.tgz) tar xzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1;;
*.7z) 7z x $1 ;;
*) echo "'$1' cannot be extracted via ex()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
# better yaourt colors
export YAOURT_COLORS="nb=1:pkg=1:ver=1;32:lver=1;45:installed=1;42:grp=1;34:od=1;41;5:votes=1;44:dsc=0:other=1;35"

View File

@ -1,7 +1,6 @@
# DO NOT EDIT! This file will be overwritten by LXAppearance.
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
include "~/.gtkrc-2.0.mine"
gtk-theme-name="Bunsen-He"
gtk-icon-theme-name="gnome-carbonite"
gtk-font-name="Noto Sans 10"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@ -1,9 +1,8 @@
<b>Nazwa kolekcji: Bunsen</b>
Zapisana: pon, 17 gru 2018, 19:06:26 CET
Dostarczona wraz z Mabox Linux
X terminal config: /home/napcok/.bashrc;/home/napcok/.Xresources\n
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/Arc-Carbonite.png;\n
Openbox theme: Bunsen-He\n
GTK theme: Bunsen-He\n
Działające Conky:\t\n\t/home/napcok/.config/conky/MB-Text.conkyrc;\n\t/home/napcok/.config/conky/shortcuts_grey.conkyrc;\n\t/home/napcok/.config/conky/grey_manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t/home/napcok/.config/tint2/mabox2-top.tint2rc\n
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/Arc-Carbonite.png;\n
Działające Conky:\t\n\t~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/shortcuts_grey.conkyrc;\n\t~/.config/conky/grey_manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/mabox2-top.tint2rc\n

View File

@ -1,7 +1,7 @@
[geometry]
posx=79
posy=125
sizex=478
posx=281
posy=81
sizex=461
sizey=561
[nitrogen]

View File

@ -1,6 +1,5 @@
[XFILES]
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[CONKY] conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s; conky -c ~/.config/conky/grey_manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/mabox2-top.tint2rc;
[BACKGROUND] NITROGEN

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 191 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 252 KiB

View File

@ -1,8 +1,8 @@
<b>Nazwa kolekcji: Mabox-quakeworld</b>
Zapisana: wto, 18 lut 2020, 14:38:29 CET
Dostarczona domyślnie z Mabox Linux
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/ian-parker-p7Hh9SIW22M-unsplash.jpg;\n
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/xfce/reflection-3095708.jpg;\n
Openbox theme: Mabox-quakeworld\n
GTK theme: Mabox-quakeworld\n
Działające Conky:\t\n\t~/.config/conky/shortcuts_quakeworld.conkyrc;\n\t/~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/quakeworld_manjaro_JWM.conkyrc;\n
Działające Conky:\t\n\t~/.config/conky/shortcuts_quakeworld.conkyrc;\n\t~/.config/conky/quakeworld_manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/quakeworld.tint2rc\n

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,4 +1,4 @@
[xin_-1]
file=/usr/share/backgrounds/ian-parker-p7Hh9SIW22M-unsplash.jpg
file=/usr/share/backgrounds/xfce/reflection-3095708.jpg
mode=0
bgcolor=#000000

View File

@ -1,6 +1,6 @@
[geometry]
posx=687
posy=137
posx=789
posy=161
sizex=449
sizey=561

View File

@ -1,5 +1,5 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[CONKY] conky -c ~/config/conky/shortcuts_quakeworld.conkyrc & sleep 1s; conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/quakeworld_manjaro_JWM.conkyrc & sleep 1s;
[CONKY] conky -c ~/.config/conky/shortcuts_quakeworld.conkyrc & sleep 1s; conky -c ~/.config/conky/quakeworld_manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/quakeworld.tint2rc;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -5,4 +5,4 @@ Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/vadim-sherbakov-NQSWvyV
Openbox theme: RainForest\n
GTK theme: RainForest\n
Działające Conky:\t\n\t~/.config/conky/shortcuts_green.conkyrc;\n\t~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/micro95_bottom.tint2rc\n
Działające Tint2:\t\n\t~/.config/tint2/RainForest.tint2rc\n

View File

@ -2,4 +2,4 @@
[OBTHEME]
[GTK]
[CONKY] conky -c ~/.config/conky/shortcuts_green.conkyrc & sleep 1s; conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/micro95_bottom.tint2rc;
[TINT2] /.config/tint2/RainForest.tint2rc;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

View File

@ -1,8 +0,0 @@
<b>Nazwa kolekcji: Ruda</b>
Zapisana: wto, 18 lut 2020, 15:17:23 CET
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/ruda.jpg;\n
Openbox theme: Nightmare-01\n
GTK theme: LX-Pitchdark-Wine\n
Działające Conky:\t\n\t~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/shortcuts_grey.conkyrc;\n\t~/.config/conky/grey_manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/gradient.tint2rc\n

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,4 +0,0 @@
[xin_-1]
file=/usr/share/backgrounds/ruda.jpg
mode=0
bgcolor=#000000

View File

@ -1,5 +0,0 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[CONKY] conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s; conky -c ~/.config/conky/grey_manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/gradient.tint2rc;

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

View File

@ -2,10 +2,10 @@
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
include "/home/napcok/.gtkrc-2.0.mine"
gtk-theme-name="LX-Pitchdark-Wine"
gtk-icon-theme-name="gnome-wine"
gtk-theme-name="Raleigh"
gtk-icon-theme-name="Chicago95-tux"
gtk-font-name="Noto Sans 10"
gtk-cursor-theme-name="xcursor-breeze"
gtk-cursor-theme-name="Chicago95_Cursor_White"
gtk-cursor-theme-size=18
gtk-toolbar-style=GTK_TOOLBAR_TEXT
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR

View File

@ -0,0 +1,7 @@
<b>Nazwa kolekcji: chicago95</b>
Dostarczona wraz z Mabox Linux
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/micro95.png;\n
Openbox theme: Micro95\n
GTK theme: Raleigh\n
Działające Tint2:\t\n\t~/.config/tint2/micro95_bottom.tint2rc\n

View File

@ -0,0 +1,4 @@
[xin_-1]
file=/usr/share/backgrounds/micro95.png
mode=0
bgcolor=#000000

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@ -1,6 +1,6 @@
[Settings]
gtk-theme-name=LX-Pitchdark-Wine
gtk-icon-theme-name=gnome-wine
gtk-theme-name=Raleigh
gtk-icon-theme-name=Chicago95-tux
gtk-font-name=Noto Sans 10
gtk-cursor-theme-name=xcursor-breeze
gtk-cursor-theme-size=18

View File

@ -1,7 +1,7 @@
[geometry]
posx=481
posy=45
sizex=467
posx=281
posy=81
sizex=461
sizey=561
[nitrogen]

View File

@ -1,5 +1,5 @@
<theme>
<name>Nightmare-01</name>
<name>Micro95</name>
<titleLayout>NDSLIMC</titleLayout>
<!--
available characters are NDSLIMC, each can occur at most once.

View File

@ -0,0 +1,4 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[TINT2] /.config/tint2/micro95_bottom.tint2rc;

View File

@ -4,6 +4,7 @@
<property name="applications" type="empty">
<property name="known_applications" type="array">
<value type="string" value="Menedżer aktualizacji"/>
<value type="string" value="Menedżer pakietów"/>
<value type="string" value="nm-applet"/>
<value type="string" value="notify-send"/>
<value type="string" value="Xfce4-notifyd settings"/>

View File

@ -80,3 +80,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
${alignr}${color2}${font Cantarell:size=9}${alignr}filesystem ${color}${fs_type}
${voffset 10}${alignr}${color} available updates ${color 006600}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
${alignr}${color} installed pkgs: ${color2}${execi 10000 pacman -Q | wc -l}
${alignr}${color} branch: ${color2}${execi 10000 pacman-mirrors -G}

View File

@ -77,3 +77,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
${alignr}${color2}${font Cantarell:size=9}${alignr}filesystem ${color}${fs_type}
${voffset 10}${alignr}${color} available updates ${color 006600}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
${alignr}${color} installed pkgs: ${color2}${execi 10000 pacman -Q | wc -l}
${alignr}${color} branch: ${color2}${execi 10000 pacman-mirrors -G}

View File

@ -80,3 +80,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
${alignr}${color2}${font Cantarell:size=9}${alignr}filesystem ${color}${fs_type}
${voffset 10}${alignr}${color} available updates ${color 006600}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
${alignr}${color} installed pkgs: ${color2}${execi 10000 pacman -Q | wc -l}
${alignr}${color} branch: ${color2}${execi 10000 pacman-mirrors -G}

View File

@ -4,6 +4,7 @@
Terminal,exo-open --launch TerminalEmulator,utilities-terminal
WWW Browser,exo-open --launch WebBrowser,firefox
File Manager,exo-open --launch FileManager,system-file-manager
Add/Remove software,pamac-manager,pamac
^sep()
Applications,^checkout(lx-apps),applications-other
@ -24,6 +25,7 @@ Notifications,xfce4-notifyd-config,xfce4-notifyd
Conkies,^pipe(jgmenu_run ob --cmd=mabox-conky-pipemenu),desktop-effects
Tint2 panels,^pipe(jgmenu_run ob --cmd=mabox-tint2-pipemenu),tint2conf
Composer,^pipe(jgmenu_run ob --cmd=mabox-compositor),compton
Menu,^checkout(menu),menu-editor
^sep(Settings)
Preferred applications,exo-preferred-applications,preferences-desktop-default-applications
Power Manager,xfce4-power-manager-settings,xfce4-power-manager-settings
@ -35,6 +37,9 @@ RC - configuration file,geany ~/.config/openbox/rc.xml,geany
Reconfigure Openbox,openbox --reconfigure,openbox
^sep(Mabox Themes)
Theme manager,mb-obthemes,preferences-desktop-theme
^tag(menu)
Edit menu schema,geany ~/.config/jgmenu/prepend.csv,geany
Edit settings,geany ~/.config/mabox/mabox.conf,geany
^tag(lx-apps)

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

View File

@ -56,7 +56,7 @@ icon_size = 20
#arrow_string = ▸
#arrow_width = 15
color_menu_bg = #BAC8B0 80
color_menu_bg = #BAC8B0 90
color_menu_border = #5F8A45 100
#color_norm_bg = #2b303b 0
@ -73,4 +73,4 @@ color_sep_fg = #5F8A45 100
#csv_no_dirs = 0
color_title_bg = #BAC8B0 100
color_title_fg = #2E2824 100
color_title_border = #5F8A45 100
color_title_border = #5F8A45 40

View File

@ -1,3 +1,4 @@
show_welcome=true
jgmenu_theme=obtheme
jgmenu_use_icons=true
jgmenu_font="Noto Sans Medium 9"

View File

@ -0,0 +1,268 @@
#---- Generated by tint2conf 83e9 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Aktywne zadanie, Nieaktywne zadanie, Panel, Programy
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #dae6d2 100
border_color = #ffffff 0
background_color_hover = #ffffff 100
border_color_hover = #ffffff 0
background_color_pressed = #ffffff 100
border_color_pressed = #ffffff 0
# Background 2: Aktywne
rounded = 0
border_width = 3
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #5f8a45 100
background_color_hover = #5c616c 5
border_color_hover = #66bb6a 60
background_color_pressed = #5c616c 10
border_color_pressed = #66bb6a 80
# Background 3: Domyślne zadanie, Zminimalizowane
rounded = 0
border_width = 2
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #5c616c 100
background_color_hover = #5c616c 5
border_color_hover = #5c616c 60
background_color_pressed = #5c616c 5
border_color_pressed = #5c616c 80
# Background 4: Pilne
rounded = 0
border_width = 2
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #dc143c 100
background_color_hover = #5c616c 15
border_color_hover = #dc143c 60
background_color_pressed = #5c616c 20
border_color_pressed = #000000 80
# Background 5: Nazwa nieaktywnego pulpitu
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #ffffff 0
background_color_hover = #ffffff 0
border_color_hover = #ffffff 0
background_color_pressed = #ffffff 0
border_color_pressed = #ffffff 0
# Background 6: Nazwa aktywnego pulpitu
rounded = 0
border_width = 0
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #66bb6a 80
background_color_hover = #ffffff 0
border_color_hover = #66bb6a 70
background_color_pressed = #ffffff 0
border_color_pressed = #66bb6a 60
# Background 7: Podpowiedzi
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 100
border_color = #66bb6a 80
background_color_hover = #ffffff 80
border_color_hover = #66bb6a 80
background_color_pressed = #ffffff 80
border_color_pressed = #66bb6a 80
# Background 8: Bateria, Zasobnik systemowy, Zegar
rounded = 0
border_width = 0
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #5f8a45 100
border_color = #ffffff 0
background_color_hover = #66bb6a 100
border_color_hover = #ffffff 0
background_color_pressed = #66bb6a 100
border_color_pressed = #ffffff 0
#-------------------------------------
# Panel
panel_items = LTSBC
panel_size = 100% 32
panel_margin = 0 0
panel_padding = 0 0 0
panel_background_id = 1
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.5
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 = 100 0 10
mouse_pressed_icon_asb = 100 0 0
scale_relative_to_dpi = 0
scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = single_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 0 0 4
taskbar_background_id = 1
taskbar_active_background_id = 1
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 8
taskbar_name_background_id = 5
taskbar_name_active_background_id = 6
taskbar_name_font = Ubuntu Condensed Bold 12
taskbar_name_font_color = #5c5c5c 100
taskbar_name_active_font_color = #353535 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 = 20
task_maximum_size = 150 40
task_padding = 2 2 2
task_font = Ubuntu Condensed Regular 11
task_tooltip = 1
task_thumbnail = 0
task_thumbnail_size = 210
task_font_color = #5c616c 100
task_active_font_color = #5f8a45 100
task_urgent_font_color = #dc143c 100
task_iconified_font_color = #5c616c 87
task_icon_asb = 80 0 0
task_active_icon_asb = 100 0 10
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 = close
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconify
#-------------------------------------
# System tray (notification area)
systray_padding = 7 0 5
systray_background_id = 8
systray_sort = ascending
systray_icon_size = 24
systray_icon_asb = 100 0 10
systray_monitor = 1
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 8 0 8
launcher_background_id = 1
launcher_icon_background_id = 0
launcher_icon_size = 24
launcher_icon_asb = 100 0 0
launcher_icon_theme = gnome-wise
launcher_icon_theme_override = 1
startup_notifications = 1
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = ~/.local/share/applications/show_desktop.desktop
launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
#-------------------------------------
# Clock
time1_format = %I:%M %d %b
time2_format =
time1_font = Ubuntu Condensed Bold 13
time1_timezone =
time2_timezone =
time2_font = Ubuntu Condensed Bold 10
clock_font_color = #ffffff 100
clock_padding = 6 0
clock_background_id = 8
clock_tooltip = Today is %A, %dth Day Of %B !
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 "Battery Low !"
battery_full_cmd =
bat1_font = Ubuntu Condensed Bold 12
bat2_font = Ubuntu Condensed Regular 0
battery_font_color = #ffffff 100
bat1_format =
bat2_format =
battery_padding = 5 5
battery_background_id = 8
battery_hide = 101
battery_lclick_command = xfce4-power-manager-settings
battery_rclick_command = xfce4-power-manager-settings
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 = 5 3
tooltip_background_id = 7
tooltip_font_color = #353535 100
tooltip_font = Noto Sans 10

View File

@ -200,7 +200,7 @@ 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 = Chicago95-tux
launcher_icon_theme_override = 0
startup_notifications = 1
launcher_tooltip = 1

View File

@ -0,0 +1,126 @@
#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
#panel
rounded = 1
border_width = 0
background_color = #000000 60
border_color = #ffffff 18
#taskbar
rounded = 1
border_width = 0
background_color = #ffffff 10
border_color = #ffffff 50
#task-active
rounded = 1
border_width = 0
background_color = #ffffff 40
border_color = #ffffff 50
#task
rounded = 1
border_width = 0
background_color = #ffffff 18
border_color = #ffffff 70
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = 1
panel_position = bottom center
panel_size = 97% 20
panel_margin = 0 0
panel_padding = 0 0 4
font_shadow = 0
panel_background_id = 0
wm_menu = 0
panel_dock = 0
panel_layer = top
#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = multi_desktop
#taskbar_mode = single_desktop
taskbar_padding = 0 0 2
taskbar_background_id = 2
#taskbar_active_background_id = 0
#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 1
task_maximum_size = 140 35
task_centered = 1
task_padding = 2 1
task_font = Terminus 6
task_font_color = #ffffff 70
task_background_id = 4
task_icon_asb = 100 0 0
# replace STATUS by 'urgent', 'active' or 'iconfied'
#task_STATUS_background_id = 2
#task_STATUS_font_color = #ffffff 85
#task_STATUS_icon_asb = 100 0 0
# example:
task_active_background_id = 3
task_active_font_color = #ffffff 85
task_active_icon_asb = 100 0 0
urgent_nb_of_blink = 8
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray = 0
systray_padding = 2 1 4
systray_background_id = 2
systray_sort = left2right
systray_icon_size = 0
systray_icon_asb = 100 0 0
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %H:%M
time1_font = Zekton 12
#time2_format = %I:%M %p
#time2_font = Aller 10
clock_font_color = #ffffff 100
clock_padding = 6 2
clock_background_id = 0
#clock_lclick_command = xclock
#clock_rclick_command = orage
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 0
battery_hide = 98
battery_low_status = 10
battery_low_cmd =
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #ffffff 76
battery_padding = 1 0
battery_background_id = 0
#---------------------------------------------
# TOOLTIP
#---------------------------------------------
tooltip = 1
tooltip_padding = 2 2
tooltip_show_timeout = 0.7
tooltip_hide_timeout = 0.3
tooltip_background_id = 1
tooltip_font_color = #ffffff 80
tooltip_font = sans 10
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconify

View File

@ -0,0 +1,195 @@
#---- Generated by tint2conf ec38 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Aktywne zadanie, Nieaktywne zadanie, Zasobnik systemowy, Zegar
rounded = 0
border_width = 1
border_sides = BLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 12
border_color = #ffffff 43
background_color_hover = #ffffff 12
border_color_hover = #ffffff 100
background_color_pressed = #ffffff 12
border_color_pressed = #ffffff 100
# Background 2: Aktywne
rounded = 0
border_width = 1
border_sides = LR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 11
border_color = #ffffff 56
background_color_hover = #000000 11
border_color_hover = #ffffff 100
background_color_pressed = #000000 11
border_color_pressed = #ffffff 100
# Background 3: Pilne
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ff0000 40
border_color = #ffffff 100
background_color_hover = #ff0000 40
border_color_hover = #ffffff 100
background_color_pressed = #ff0000 40
border_color_pressed = #ffffff 100
#-------------------------------------
# Panel
panel_items = TSC
panel_size = 100% 24
panel_margin = 0 0
panel_padding = 0 0 5
panel_background_id = 0
wm_menu = 0
panel_dock = 0
panel_pivot_struts = 0
panel_position = top center horizontal
panel_layer = normal
panel_monitor = 1
panel_shrink = 0
autohide = 0
autohide_show_timeout = 0
autohide_hide_timeout = 0
autohide_height = 1
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 = single_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 0 0 0
taskbar_background_id = 1
taskbar_active_background_id = 1
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 = -1
taskbar_name_active_background_id = -1
taskbar_name_font_color = #000000 100
taskbar_name_active_font_color = #000000 100
taskbar_distribute_size = 0
taskbar_sort_order = none
task_align = left
#-------------------------------------
# Task
task_text = 1
task_icon = 0
task_centered = 1
urgent_nb_of_blink = 7
task_maximum_size = 200 32
task_padding = 5 1 5
task_font = Ubuntu Light 8
task_tooltip = 0
task_thumbnail = 0
task_thumbnail_size = 210
task_font_color = #ffffff 100
task_active_font_color = #ffffff 100
task_urgent_font_color = #ff0000 100
task_iconified_font_color = #ffffff 100
task_icon_asb = 100 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 100 0 0
task_background_id = 0
task_active_background_id = 2
task_urgent_background_id = 3
task_iconified_background_id = 0
mouse_left = toggle_iconify
mouse_middle = close
mouse_right = none
mouse_scroll_up = none
mouse_scroll_down = none
#-------------------------------------
# System tray (notification area)
systray_padding = 5 2 5
systray_background_id = 1
systray_sort = right2left
systray_icon_size = 0
systray_icon_asb = 100 0 0
systray_monitor = primary
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 0 0 0
launcher_background_id = -1
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 = 0
#-------------------------------------
# Clock
time1_format = %a %d %b ~ %H:%M
time2_format =
time1_font = Ubuntu Light 8
time1_timezone =
time2_timezone =
clock_font_color = #ffffff 100
clock_padding = 10 0
clock_background_id = 1
clock_tooltip =
clock_tooltip_timezone =
clock_lclick_command = gsimplecal
clock_rclick_command =
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
#-------------------------------------
# Battery
battery_tooltip = 1
battery_low_status = 20
battery_low_cmd = notify-send "battery low"
battery_full_cmd =
bat1_font = Sans 12
bat2_font = Sans 12
battery_font_color = #ffffff 100
bat1_format =
bat2_format =
battery_padding = 0 0
battery_background_id = 0
battery_hide = 90
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 = 0 0
tooltip_background_id = 0
tooltip_font_color = #ffffff 100
tooltip_font = Sans 12

View File

@ -121,7 +121,7 @@ pamac-snap-plugin
qpdfview
#---------=> manjaro user infomartion
#manjaro-application-utility
manjaro-application-utility
#manjaro-documentation-en
#manjaro-hello
@ -225,13 +225,13 @@ arc-icon-theme
manjaro-grub-theme-brown
manjaro-openbox-maia
manjaro-openbox-matcha
###wallpapers-2018
wallpapers-2018
matcha-gtk-theme
###papirus-maia-icon-theme
xcursor-breeze
###xcursor-chicago95-git
xcursor-chicago95-git
###chicago95-gtk-theme-git
###chicago95-icon-theme-git
chicago95-icon-theme-git
elementary-xfce-icons
gtk-theme-elementary

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

After

Width:  |  Height:  |  Size: 216 KiB

View File

@ -1,12 +0,0 @@
! Rofi
rofi.font: DejaVu Sans Mono 12
rofi.padding: 20
rofi.line-padding: 2
rofi.color-enabled: true
rofi.hide-scrollbar: true
rofi.separator-style: solid
rofi.color-window: #1c2023, #919ba0, #1c2023
rofi.color-normal: #1c2023, #919ba0, #1c2023, #a4a4a4, #1c2023
rofi.color-urgent: argb:00000000, #f43753, argb:00000000, argb:00000000, #e29a49
rofi.color-active: argb:00000000, #49bbfb, argb:00000000, argb:00000000, #e29a49

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,9 +1,8 @@
<b>Nazwa kolekcji: Bunsen</b>
Zapisana: pon, 17 gru 2018, 19:06:26 CET
Dostarczona wraz z Mabox Linux
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/Arc-Carbonite.png;\n
Openbox theme: Bunsen-He\n
GTK theme: Bunsen-He\n
Działające Conky:\t\n\t~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/shortcuts_grey.conkyrc;\n\t~/.config/conky/grey_manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/mabox2-top.tint2rc\n
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/Arc-Carbonite.png;\n

View File

@ -1,7 +1,7 @@
[geometry]
posx=79
posy=125
sizex=478
posx=281
posy=81
sizex=461
sizey=561
[nitrogen]

View File

@ -1,5 +1,5 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[CONKY] conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s; conky -c ~/.config/conky/grey_manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/mabox2-top.tint2rc;
[BACKGROUND] NITROGEN

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 284 KiB

View File

@ -1,8 +1,8 @@
<b>Nazwa kolekcji: Mabox-quakeworld</b>
Zapisana: wto, 18 lut 2020, 14:38:29 CET
Dostarczona domyślnie z Mabox Linux
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/ian-parker-p7Hh9SIW22M-unsplash.jpg;\n
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/xfce/reflection-3095708.jpg;\n
Openbox theme: Mabox-quakeworld\n
GTK theme: Mabox-quakeworld\n
Działające Conky:\t\n\t~/.config/conky/shortcuts_quakeworld.conkyrc;\n\t/~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/quakeworld_manjaro_JWM.conkyrc;\n
Działające Conky:\t\n\t~/.config/conky/shortcuts_quakeworld.conkyrc;\n\t~/.config/conky/quakeworld_manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/quakeworld.tint2rc\n

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,4 +1,4 @@
[xin_-1]
file=/usr/share/backgrounds/ian-parker-p7Hh9SIW22M-unsplash.jpg
file=/usr/share/backgrounds/xfce/reflection-3095708.jpg
mode=0
bgcolor=#000000

View File

@ -1,6 +1,6 @@
[geometry]
posx=687
posy=137
posx=789
posy=161
sizex=449
sizey=561

View File

@ -1,5 +1,5 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[CONKY] conky -c ~/config/conky/shortcuts_quakeworld.conkyrc & sleep 1s; conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/quakeworld_manjaro_JWM.conkyrc & sleep 1s;
[CONKY] conky -c ~/.config/conky/shortcuts_quakeworld.conkyrc & sleep 1s; conky -c ~/.config/conky/quakeworld_manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/quakeworld.tint2rc;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 277 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,8 +1,8 @@
<b>Nazwa kolekcji: RainForest</b>
Zapisana: wto, 18 lut 2020, 15:03:11 CET
Dostarczona wraz z Mabox Linux
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/vadim-sherbakov-NQSWvyVRIJk-unsplash.jpg;\n
Openbox theme: RainForest\n
GTK theme: RainForest\n
Działające Conky:\t\n\t~/.config/conky/shortcuts_green.conkyrc;\n\t~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/micro95_bottom.tint2rc\n
Działające Conky:\t\n\t~/.config/conky/shortcuts_green.conkyrc;\n\t~/.config/conky/manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/RainForest.tint2rc\n

View File

@ -1,5 +1,5 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[CONKY] conky -c ~/.config/conky/shortcuts_green.conkyrc & sleep 1s; conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/micro95_bottom.tint2rc;
[CONKY] conky -c ~/.config/conky/shortcuts_green.conkyrc & sleep 1s; conky -c ~/.config/conky/manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/RainForest.tint2rc;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

View File

@ -1,8 +0,0 @@
<b>Nazwa kolekcji: Ruda</b>
Zapisana: wto, 18 lut 2020, 15:17:23 CET
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/ruda.jpg;\n
Openbox theme: Nightmare-01\n
GTK theme: LX-Pitchdark-Wine\n
Działające Conky:\t\n\t~/.config/conky/MB-Text.conkyrc;\n\t~/.config/conky/shortcuts_grey.conkyrc;\n\t~/.config/conky/grey_manjaro_JWM.conkyrc;\n
Działające Tint2:\t\n\t~/.config/tint2/gradient.tint2rc\n

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1,4 +0,0 @@
[xin_-1]
file=/usr/share/backgrounds/ruda.jpg
mode=0
bgcolor=#000000

View File

@ -1,5 +0,0 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[CONKY] conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s; conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s; conky -c ~/.config/conky/grey_manjaro_JWM.conkyrc & sleep 1s;
[TINT2] /.config/tint2/gradient.tint2rc;

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

View File

@ -2,10 +2,10 @@
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
include "/home/napcok/.gtkrc-2.0.mine"
gtk-theme-name="LX-Pitchdark-Wine"
gtk-icon-theme-name="gnome-wine"
gtk-theme-name="Raleigh"
gtk-icon-theme-name="Chicago95-tux"
gtk-font-name="Noto Sans 10"
gtk-cursor-theme-name="xcursor-breeze"
gtk-cursor-theme-name="Chicago95_Cursor_White"
gtk-cursor-theme-size=18
gtk-toolbar-style=GTK_TOOLBAR_TEXT
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR

View File

@ -0,0 +1,7 @@
<b>Nazwa kolekcji: chicago95</b>
Dostarczona wraz z Mabox Linux
Tapeta ustawiona przez Nitrogen:\n/usr/share/backgrounds/micro95.png;\n
Openbox theme: Micro95\n
GTK theme: Raleigh\n
Działające Tint2:\t\n\t~/.config/tint2/micro95_bottom.tint2rc\n

View File

@ -0,0 +1,4 @@
[xin_-1]
file=/usr/share/backgrounds/micro95.png
mode=0
bgcolor=#000000

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -1,6 +1,6 @@
[Settings]
gtk-theme-name=LX-Pitchdark-Wine
gtk-icon-theme-name=gnome-wine
gtk-theme-name=Raleigh
gtk-icon-theme-name=Chicago95-tux
gtk-font-name=Noto Sans 10
gtk-cursor-theme-name=xcursor-breeze
gtk-cursor-theme-size=18

View File

@ -1,7 +1,7 @@
[geometry]
posx=481
posy=45
sizex=467
posx=281
posy=81
sizex=461
sizey=561
[nitrogen]

View File

@ -1,5 +1,5 @@
<theme>
<name>Nightmare-01</name>
<name>Micro95</name>
<titleLayout>NDSLIMC</titleLayout>
<!--
available characters are NDSLIMC, each can occur at most once.

View File

@ -0,0 +1,4 @@
[BACKGROUND] NITROGEN
[OBTHEME]
[GTK]
[TINT2] /.config/tint2/micro95_bottom.tint2rc;

View File

@ -4,6 +4,7 @@
<property name="applications" type="empty">
<property name="known_applications" type="array">
<value type="string" value="Menedżer aktualizacji"/>
<value type="string" value="Menedżer pakietów"/>
<value type="string" value="nm-applet"/>
<value type="string" value="notify-send"/>
<value type="string" value="Xfce4-notifyd settings"/>

View File

@ -76,4 +76,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_type}
${voffset 10}${alignr}${color} dostępne aktualizacje: ${color 006600}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${color}
${alignr}${color}${font} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l}
${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G}

View File

@ -78,3 +78,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}architektura ${color}${machin
${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_type}
${voffset 10}${alignr}${color} dostępne aktualizacje ${color db6823}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font Cantarell:size=9}${color}
${alignr}${color} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l}
${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G}

View File

@ -80,4 +80,5 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}architektura ${color}${machin
${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_type}
${voffset 10}${alignr}${color} dostępne aktualizacje ${color 5e0b0b}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${font Cantarell:size=9}${color}
${alignr}${color} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l}
${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G}

View File

@ -3,6 +3,7 @@
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
Dodaj/Usuń programy,pamac-manager,pamac
^sep()
Aplikacje,^checkout(lx-apps),applications-other
@ -24,6 +25,7 @@ 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
Menu,^checkout(menu),menu-editor
^sep(Ustawienia)
Preferowane aplikacje,exo-preferred-applications,preferences-desktop-default-applications
Ustawienia zasilania,xfce4-power-manager-settings,xfce4-power-manager-settings
@ -36,6 +38,10 @@ 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(menu)
Edytuj pozycje menu,geany ~/.config/jgmenu/prepend.csv,geany
Edytuj ustawienia,geany ~/.config/mabox/mabox.conf,geany
^tag(lx-apps)

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

View File

@ -56,7 +56,7 @@ icon_size = 20
#arrow_string = ▸
#arrow_width = 15
color_menu_bg = #BAC8B0 80
color_menu_bg = #BAC8B0 90
color_menu_border = #5F8A45 100
#color_norm_bg = #2b303b 0
@ -73,4 +73,4 @@ color_sep_fg = #5F8A45 100
#csv_no_dirs = 0
color_title_bg = #BAC8B0 100
color_title_fg = #2E2824 100
color_title_border = #5F8A45 100
color_title_border = #5F8A45 40

View File

@ -1,3 +1,4 @@
show_welcome=true
jgmenu_theme=obtheme
jgmenu_use_icons=true
jgmenu_font="Noto Sans Medium 9"

View File

@ -0,0 +1,268 @@
#---- Generated by tint2conf 83e9 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Aktywne zadanie, Nieaktywne zadanie, Panel, Programy
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #dae6d2 100
border_color = #ffffff 0
background_color_hover = #ffffff 100
border_color_hover = #ffffff 0
background_color_pressed = #ffffff 100
border_color_pressed = #ffffff 0
# Background 2: Aktywne
rounded = 0
border_width = 3
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #5f8a45 100
background_color_hover = #5c616c 5
border_color_hover = #66bb6a 60
background_color_pressed = #5c616c 10
border_color_pressed = #66bb6a 80
# Background 3: Domyślne zadanie, Zminimalizowane
rounded = 0
border_width = 2
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #5c616c 100
background_color_hover = #5c616c 5
border_color_hover = #5c616c 60
background_color_pressed = #5c616c 5
border_color_pressed = #5c616c 80
# Background 4: Pilne
rounded = 0
border_width = 2
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #dc143c 100
background_color_hover = #5c616c 15
border_color_hover = #dc143c 60
background_color_pressed = #5c616c 20
border_color_pressed = #000000 80
# Background 5: Nazwa nieaktywnego pulpitu
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #ffffff 0
background_color_hover = #ffffff 0
border_color_hover = #ffffff 0
background_color_pressed = #ffffff 0
border_color_pressed = #ffffff 0
# Background 6: Nazwa aktywnego pulpitu
rounded = 0
border_width = 0
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 0
border_color = #66bb6a 80
background_color_hover = #ffffff 0
border_color_hover = #66bb6a 70
background_color_pressed = #ffffff 0
border_color_pressed = #66bb6a 60
# Background 7: Podpowiedzi
rounded = 0
border_width = 1
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 100
border_color = #66bb6a 80
background_color_hover = #ffffff 80
border_color_hover = #66bb6a 80
background_color_pressed = #ffffff 80
border_color_pressed = #66bb6a 80
# Background 8: Bateria, Zasobnik systemowy, Zegar
rounded = 0
border_width = 0
border_sides = B
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #5f8a45 100
border_color = #ffffff 0
background_color_hover = #66bb6a 100
border_color_hover = #ffffff 0
background_color_pressed = #66bb6a 100
border_color_pressed = #ffffff 0
#-------------------------------------
# Panel
panel_items = LTSBC
panel_size = 100% 32
panel_margin = 0 0
panel_padding = 0 0 0
panel_background_id = 1
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.5
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 = 100 0 10
mouse_pressed_icon_asb = 100 0 0
scale_relative_to_dpi = 0
scale_relative_to_screen_height = 0
#-------------------------------------
# Taskbar
taskbar_mode = single_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 0 0 4
taskbar_background_id = 1
taskbar_active_background_id = 1
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 8
taskbar_name_background_id = 5
taskbar_name_active_background_id = 6
taskbar_name_font = Ubuntu Condensed Bold 12
taskbar_name_font_color = #5c5c5c 100
taskbar_name_active_font_color = #353535 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 = 20
task_maximum_size = 150 40
task_padding = 2 2 2
task_font = Ubuntu Condensed Regular 11
task_tooltip = 1
task_thumbnail = 0
task_thumbnail_size = 210
task_font_color = #5c616c 100
task_active_font_color = #5f8a45 100
task_urgent_font_color = #dc143c 100
task_iconified_font_color = #5c616c 87
task_icon_asb = 80 0 0
task_active_icon_asb = 100 0 10
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 = close
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconify
#-------------------------------------
# System tray (notification area)
systray_padding = 7 0 5
systray_background_id = 8
systray_sort = ascending
systray_icon_size = 24
systray_icon_asb = 100 0 10
systray_monitor = 1
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 8 0 8
launcher_background_id = 1
launcher_icon_background_id = 0
launcher_icon_size = 24
launcher_icon_asb = 100 0 0
launcher_icon_theme = gnome-wise
launcher_icon_theme_override = 1
startup_notifications = 1
launcher_tooltip = 1
launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
launcher_item_app = ~/.local/share/applications/show_desktop.desktop
launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
#-------------------------------------
# Clock
time1_format = %I:%M %d %b
time2_format =
time1_font = Ubuntu Condensed Bold 13
time1_timezone =
time2_timezone =
time2_font = Ubuntu Condensed Bold 10
clock_font_color = #ffffff 100
clock_padding = 6 0
clock_background_id = 8
clock_tooltip = Today is %A, %dth Day Of %B !
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 "Battery Low !"
battery_full_cmd =
bat1_font = Ubuntu Condensed Bold 12
bat2_font = Ubuntu Condensed Regular 0
battery_font_color = #ffffff 100
bat1_format =
bat2_format =
battery_padding = 5 5
battery_background_id = 8
battery_hide = 101
battery_lclick_command = xfce4-power-manager-settings
battery_rclick_command = xfce4-power-manager-settings
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 = 5 3
tooltip_background_id = 7
tooltip_font_color = #353535 100
tooltip_font = Noto Sans 10

View File

@ -200,7 +200,7 @@ 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 = Chicago95-tux
launcher_icon_theme_override = 0
startup_notifications = 1
launcher_tooltip = 1

View File

@ -0,0 +1,126 @@
#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
#panel
rounded = 1
border_width = 0
background_color = #000000 60
border_color = #ffffff 18
#taskbar
rounded = 1
border_width = 0
background_color = #ffffff 10
border_color = #ffffff 50
#task-active
rounded = 1
border_width = 0
background_color = #ffffff 40
border_color = #ffffff 50
#task
rounded = 1
border_width = 0
background_color = #ffffff 18
border_color = #ffffff 70
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = 1
panel_position = bottom center
panel_size = 97% 20
panel_margin = 0 0
panel_padding = 0 0 4
font_shadow = 0
panel_background_id = 0
wm_menu = 0
panel_dock = 0
panel_layer = top
#---------------------------------------------
# TASKBAR
#---------------------------------------------
taskbar_mode = multi_desktop
#taskbar_mode = single_desktop
taskbar_padding = 0 0 2
taskbar_background_id = 2
#taskbar_active_background_id = 0
#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 1
task_maximum_size = 140 35
task_centered = 1
task_padding = 2 1
task_font = Terminus 6
task_font_color = #ffffff 70
task_background_id = 4
task_icon_asb = 100 0 0
# replace STATUS by 'urgent', 'active' or 'iconfied'
#task_STATUS_background_id = 2
#task_STATUS_font_color = #ffffff 85
#task_STATUS_icon_asb = 100 0 0
# example:
task_active_background_id = 3
task_active_font_color = #ffffff 85
task_active_icon_asb = 100 0 0
urgent_nb_of_blink = 8
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray = 0
systray_padding = 2 1 4
systray_background_id = 2
systray_sort = left2right
systray_icon_size = 0
systray_icon_asb = 100 0 0
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %H:%M
time1_font = Zekton 12
#time2_format = %I:%M %p
#time2_font = Aller 10
clock_font_color = #ffffff 100
clock_padding = 6 2
clock_background_id = 0
#clock_lclick_command = xclock
#clock_rclick_command = orage
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 0
battery_hide = 98
battery_low_status = 10
battery_low_cmd =
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #ffffff 76
battery_padding = 1 0
battery_background_id = 0
#---------------------------------------------
# TOOLTIP
#---------------------------------------------
tooltip = 1
tooltip_padding = 2 2
tooltip_show_timeout = 0.7
tooltip_hide_timeout = 0.3
tooltip_background_id = 1
tooltip_font_color = #ffffff 80
tooltip_font = sans 10
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = none
mouse_right = none
mouse_scroll_up = toggle
mouse_scroll_down = iconify

View File

@ -0,0 +1,195 @@
#---- Generated by tint2conf ec38 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Aktywne zadanie, Nieaktywne zadanie, Zasobnik systemowy, Zegar
rounded = 0
border_width = 1
border_sides = BLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ffffff 12
border_color = #ffffff 43
background_color_hover = #ffffff 12
border_color_hover = #ffffff 100
background_color_pressed = #ffffff 12
border_color_pressed = #ffffff 100
# Background 2: Aktywne
rounded = 0
border_width = 1
border_sides = LR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #000000 11
border_color = #ffffff 56
background_color_hover = #000000 11
border_color_hover = #ffffff 100
background_color_pressed = #000000 11
border_color_pressed = #ffffff 100
# Background 3: Pilne
rounded = 0
border_width = 0
border_sides = TBLR
border_content_tint_weight = 0
background_content_tint_weight = 0
background_color = #ff0000 40
border_color = #ffffff 100
background_color_hover = #ff0000 40
border_color_hover = #ffffff 100
background_color_pressed = #ff0000 40
border_color_pressed = #ffffff 100
#-------------------------------------
# Panel
panel_items = TSC
panel_size = 100% 24
panel_margin = 0 0
panel_padding = 0 0 5
panel_background_id = 0
wm_menu = 0
panel_dock = 0
panel_pivot_struts = 0
panel_position = top center horizontal
panel_layer = normal
panel_monitor = 1
panel_shrink = 0
autohide = 0
autohide_show_timeout = 0
autohide_hide_timeout = 0
autohide_height = 1
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 = single_desktop
taskbar_hide_if_empty = 0
taskbar_padding = 0 0 0
taskbar_background_id = 1
taskbar_active_background_id = 1
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 = -1
taskbar_name_active_background_id = -1
taskbar_name_font_color = #000000 100
taskbar_name_active_font_color = #000000 100
taskbar_distribute_size = 0
taskbar_sort_order = none
task_align = left
#-------------------------------------
# Task
task_text = 1
task_icon = 0
task_centered = 1
urgent_nb_of_blink = 7
task_maximum_size = 200 32
task_padding = 5 1 5
task_font = Ubuntu Light 8
task_tooltip = 0
task_thumbnail = 0
task_thumbnail_size = 210
task_font_color = #ffffff 100
task_active_font_color = #ffffff 100
task_urgent_font_color = #ff0000 100
task_iconified_font_color = #ffffff 100
task_icon_asb = 100 0 0
task_active_icon_asb = 100 0 0
task_urgent_icon_asb = 100 0 0
task_iconified_icon_asb = 100 0 0
task_background_id = 0
task_active_background_id = 2
task_urgent_background_id = 3
task_iconified_background_id = 0
mouse_left = toggle_iconify
mouse_middle = close
mouse_right = none
mouse_scroll_up = none
mouse_scroll_down = none
#-------------------------------------
# System tray (notification area)
systray_padding = 5 2 5
systray_background_id = 1
systray_sort = right2left
systray_icon_size = 0
systray_icon_asb = 100 0 0
systray_monitor = primary
systray_name_filter =
#-------------------------------------
# Launcher
launcher_padding = 0 0 0
launcher_background_id = -1
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 = 0
#-------------------------------------
# Clock
time1_format = %a %d %b ~ %H:%M
time2_format =
time1_font = Ubuntu Light 8
time1_timezone =
time2_timezone =
clock_font_color = #ffffff 100
clock_padding = 10 0
clock_background_id = 1
clock_tooltip =
clock_tooltip_timezone =
clock_lclick_command = gsimplecal
clock_rclick_command =
clock_mclick_command =
clock_uwheel_command =
clock_dwheel_command =
#-------------------------------------
# Battery
battery_tooltip = 1
battery_low_status = 20
battery_low_cmd = notify-send "battery low"
battery_full_cmd =
bat1_font = Sans 12
bat2_font = Sans 12
battery_font_color = #ffffff 100
bat1_format =
bat2_format =
battery_padding = 0 0
battery_background_id = 0
battery_hide = 90
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 = 0 0
tooltip_background_id = 0
tooltip_font_color = #ffffff 100
tooltip_font = Sans 12