initial commit

master
Tom Weber 3 years ago
commit 982732a8a6

@ -0,0 +1,85 @@
conky.config = {
--==============================================================================
-- 2022/03/12
-- this theme is for conky version 1.10.8 or newer
--
-- ZAVIJAVA
-- ( A part of Orion Conky themes pack )
--
-- author : Closebox73
-- license : Distributed under the terms of GPLv3
-- notes : Created on 1366x768 Monitor
--==============================================================================
-- Size and Position settings --
alignment = 'top_left',
gap_x = 30,
gap_y = 0,
maximum_width = 300,
minimum_height = 700,
minimum_width = 250,
-- Text settings --
use_xft = true,
font = 'Hack:size=9',
-- Color Settings --
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
color1 = '66b2b2',
color2 = 'f4c2c2',
-- Window Settings --
background = false,
border_width = 1,
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
own_window = true,
own_window_colour = '000000',
own_window_class = 'Conky',
own_window_argb_visual = false,
own_window_type = 'desktop',
own_window_transparent = true,
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
stippled_borders = 0,
-- Others --
cpu_avg_samples = 2,
net_avg_samples = 2,
double_buffer = true,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
update_interval = 1,
uppercase = false,
use_spacer = 'none',
short_units = true,
show_graph_scale = false,
show_graph_range = false,
}
conky.text = [[
${execi 10 ~/.config/conky/Zavijava/scripts/weather.sh}\
${alignc}${font Bebas Neue:size=75}${time %H:%M}${font}
${alignc}${color1}${font Hack:light:size=15}${time %A, %d %B}${font}
${alignc}${color}${font Hack:bold:size=15}-----------------------------------
${alignc}${voffset 15}${color1}${font weather icons:size=40}${execi 15 ~/.config/conky/Zavijava/scripts/weather-text-icon}${font}
${alignc}${voffset 20}${color}${font Hack:light:size=11}${execi 600 ~/.config/conky/Zavijava/scripts/greeting.sh}, ${color1}${execi 6000 whoami | sed "s|\<.|\U&|g"}!!
${alignc}${color}The weather in ${color1}${execi 10 cat ~/.cache/weather.json | jq -r '.name' | sed "s|\<.|\U&|g"} ${color}is
${alignc}${color1}${execi 10 cat ~/.cache/weather.json | jq -r '.weather[0].description' | sed "s|\<.|\U&|g"} ${color}with temp ${color1}${execi 120 cat ~/.cache/weather.json | jq '.main.temp' | awk '{print int($1+0.5)}'}°C
${alignc}${color}Humidity ${color1}${execi 10 cat ~/.cache/weather.json | jq '.main.humidity'}% ${color}Wind speed ${color1}${execi 120 cat ~/.cache/weather.json | jq '.wind.speed'} mph
${alignc}${voffset 20}${color}${font Hack:bold:size=15}-----------------------------------
${voffset 0}${color}${font Hack:bold:size=10}RAM
${offset 0}${color1}${font Bebas Neue:size=45}${memperc}%${alignr}${color2}${memgraph 55,130}${font}
${voffset 5}${color}${font Hack:bold:size=10}CPU
${offset 0}${color1}${font Bebas Neue:size=45}${cpu cpu0}%${alignr}${color2}${cpugraph cpu0 55,130}${font}
${voffset 5}${color}${font Hack:bold:size=10}NET_UP
${offset 0}${color1}${font Bebas Neue:size=45}${totalup enp0s3}${alignr}${color2}${upspeedgraph 55,130}${font}
${voffset 5}${color}${font Hack:bold:size=10}NET_DOWN
${offset 0}${color1}${font Bebas Neue:size=45}${totaldown enp0s3}${alignr}${color2}${downspeedgraph 55,130}${font}
]]

@ -0,0 +1,42 @@
#!/bin/bash
# ----------------------------------------------------------------------------------
# name : Sapaan bahasa inggris
# version : 0.1
#
# TENTANG
# ----------------------------------------------------------------------------------
# Menampilkan Sapaan dalam bahasa inggris
#
#
Greeting=$(date +%H)
cat $0 | grep $Greeting | sed 's/# '$Greeting' //'
#
# terinspirasi dari imsakiyah.sh
#
# --------------------------------------------------------------------------------
# 00 Good Midnight
# 01 Good Morning
# 02 Good Morning
# 03 Good Morning
# 04 Good Morning
# 05 Good Morning
# 06 Good Morning
# 07 Good Morning
# 08 Good Morning
# 09 Good Morning
# 10 Good Morning
# 11 Good Day
# 12 Good Day
# 13 Good Afternoon
# 14 Good Afternoon
# 15 Good Afternoon
# 16 Good Afternoon
# 17 Good Afternoon
# 18 Good Evening
# 19 Good Evening
# 20 Good Evening
# 21 Good Evening
# 22 Good Evening
# 23 Good Evening

@ -0,0 +1,68 @@
#!/bin/bash
# I create this scripts to show weather icon with text icon
# and take data from json file, so it can use offline
# the font i use weather icons font from http://erikflowers.github.io/weather-icons/
# to get weather.json file i use another script
# Closebox73
# icon font based openweathermap.org data
ICON_01D=""
ICON_01N=""
ICON_02D=""
ICON_02N=""
ICON_03D=""
ICON_03N=""
ICON_04D=""
ICON_04N=""
ICON_09D=""
ICON_09N=""
ICON_10D=""
ICON_10N=""
ICON_11D=""
ICON_11N=""
ICON_13D=""
ICON_13N=""
ICON_50D=""
ICON_50N=""
WEATHER_ICON=$(cat ~/.cache/weather.json | jq -r '.weather[0].icon')
if [[ "${WEATHER_ICON}" = *01d* ]]; then
echo "${ICON_01D}"
elif [[ "${WEATHER_ICON}" = *01n* ]]; then
echo "${ICON_01N}"
elif [[ "${WEATHER_ICON}" = *02d* ]]; then
echo "${ICON_02D}"
elif [[ "${WEATHER_ICON}" = *02n* ]]; then
echo "${ICON_02N}"
elif [[ "${WEATHER_ICON}" = *03d* ]]; then
echo "${ICON_03D}"
elif [[ "${WEATHER_ICON}" = *03n* ]]; then
echo "${ICON_03N}"
elif [[ "${WEATHER_ICON}" = *04d* ]]; then
echo "${ICON_04D}"
elif [[ "${WEATHER_ICON}" = *04n* ]]; then
echo "${ICON_04N}"
elif [[ "${WEATHER_ICON}" = *09d* ]]; then
echo "${ICON_09D}"
elif [[ "${WEATHER_ICON}" = *09n* ]]; then
echo "${ICON_09N}"
elif [[ "${WEATHER_ICON}" = *10d* ]]; then
echo "${ICON_10D}"
elif [[ "${WEATHER_ICON}" = *10n* ]]; then
echo "${ICON_10N}"
elif [[ "${WEATHER_ICON}" = *11d* ]]; then
echo "${ICON_11D}"
elif [[ "${WEATHER_ICON}" = *11n* ]]; then
echo "${ICON_11N}"
elif [[ "${WEATHER_ICON}" = *13d* ]]; then
echo "${ICON_13D}"
elif [[ "${WEATHER_ICON}" = *13n* ]]; then
echo "${ICON_13N}"
elif [[ "${WEATHER_ICON}" = *50d* ]]; then
echo "${ICON_50D}"
elif [[ "${WEATHER_ICON}" = *50n* ]]; then
echo "${ICON_50N}"
fi
fi

@ -0,0 +1,13 @@
#!/bin/bash
#Closebox73
# This script is to get weather data from openweathermap.com in the form of a json file
# so that conky will still display the weather when offline even though it doesn't up to date
# you can use this or replace with yours
api_key=b59117c083dfa1d4e6cc3186a568fd26
# get your city id at https://openweathermap.org/find and replace
city_id=2879139
url="api.openweathermap.org/data/2.5/weather?id=${city_id}&appid=${api_key}&cnt=5&units=metric&lang=en"
curl ${url} -s -o ~/.cache/weather.json

@ -0,0 +1,6 @@
#!/bin/bash
killall conky
sleep 2s
conky -c $HOME/.config/conky/Zavijava/Zavijava.conf &> /dev/null &

@ -0,0 +1,15 @@
[Settings]
gtk-theme-name=Ocha
gtk-icon-theme-name=Papirus
gtk-font-name=Hack 12
gtk-cursor-theme-name=Adwaita
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=1
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle=hintfull

@ -0,0 +1,61 @@
font_family Hack Regular
bold_font Hack Bold
italic_font Hack Italic
bold_italic_font Hack ItalicBold
font_size 24.0
background_opacity 0.95
foreground #F9F9F9
background #373E4D
selection_foreground #434C5e
selection_background #F4F4F4
url_color #8be9fd
# black
color0 #434C5e
color8 #4C566A
# red
color1 #FA5AA4
color9 #FA74B2
# green
color2 #2BE491
color10 #44EB9F
# yellow
color3 #FA946E
color11 #FAA687
# blue
color4 #63C5EA
color12 #7ACBEA
# magenta
color5 #CF8EF4
color13 #D8A6F4
# cyan
color6 #89CCF7
color14 #A1D5F7
# white
color7 #F9F9F9
color15 #F7F7F7
# Cursor colors
cursor #F9F9F9
cursor_text_color background
# Tab bar colors
active_tab_foreground #282a36
active_tab_background #f8f8f2
inactive_tab_foreground #282a36
inactive_tab_background #6272a4
# Marks
mark1_foreground #282a36
mark1_background #ff5555

@ -0,0 +1,22 @@
#!/usr/bin/env bash
# These things are run when an Openbox X Session is started.
# You may place a similar script in $HOME/.config/openbox/autostart
# to run user-specific things.
#
# ---
setxkbmap us
# Compositor.
picom -b 2>/dev/null
# bg
feh --bg-scale ~/.themes/wallpaper.png &
# Authentication agent (PolicyKit).
if [ -x "$(command -v lxpolkit)" ]; then
lxpolkit 2>/dev/null &
elif [ -x "/usr/libexec/polkit-gnome-authentication-agent-1" ]; then
/usr/libexec/polkit-gnome-authentication-agent-1 2>/dev/null &
fi
~/.config/conky/Zavijava/start.sh

@ -0,0 +1,804 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Do not edit this file, it will be overwritten on install. Copy the file to $HOME/.config/openbox/ instead. -->
<openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude">
<resistance>
<strength>10</strength>
<screen_edge_strength>20</screen_edge_strength>
</resistance>
<focus>
<focusNew>yes</focusNew>
<!-- always try to focus new windows when they appear. other rules do apply -->
<followMouse>yes</followMouse>
<!-- move focus to a window when you move the mouse into it -->
<focusLast>yes</focusLast>
<!-- focus the last used window when changing desktops, instead of the one under the mouse pointer. when followMouse is enabled --> <underMouse>no</underMouse>
<!-- move focus under the mouse, even when the mouse is not moving -->
<focusDelay>10</focusDelay>
<!-- when followMouse is enabled, the mouse must be inside the window for this many milliseconds (1000 = 1 sec) before moving focus to it -->
<raiseOnFocus>no</raiseOnFocus>
<!-- when followMouse is enabled, and a window is given focus by moving the mouse into it, also raise the window -->
</focus>
<placement>
<policy>Smart</policy>
<!-- 'Smart' or 'UnderMouse' -->
<center>yes</center>
<!-- whether to place windows in the center of the free area found or the top left corner -->
<monitor>Mouse</monitor>
<!-- with Smart placement on a multi-monitor system, try to place new windows on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where the active window is, 'Primary' - only on the primary monitor -->
<primaryMonitor>1</primaryMonitor>
<!-- The monitor where Openbox should place popup dialogs such as the focus cycling popup, or the desktop switch popup. It can be an index from 1, specifying a particular monitor. Or it can be one of the following: 'Mouse' - where the mouse is, or
'Active' - where the active window is -->
</placement>
<theme>
<name>Sweetly</name>
<titleLayout>LIMC</titleLayout>
<!-- available characters are NDSLIMC, each can occur at most once. N: window icon L: window label (AKA title). I: iconify M: maximize C: close S: shade (roll up/down) D: omnipresent (on all desktops). -->
<keepBorder>yes</keepBorder>
<animateIconify>yes</animateIconify>
<font place="ActiveWindow">
<name>Cantarell</name>
<size>12</size>
<!-- font size in points -->
<weight>Normal</weight>
<!-- 'bold' or 'normal' -->
<slant>Normal</slant>
<!-- 'italic' or 'normal' -->
</font>
<font place="InactiveWindow">
<name>Cantarell</name>
<size>12</size>
<!-- font size in points -->
<weight>Normal</weight>
<!-- 'bold' or 'normal' -->
<slant>Normal</slant>
<!-- 'italic' or 'normal' -->
</font>
<font place="MenuHeader">
<name>Cantarell</name>
<size>14</size>
<!-- font size in points -->
<weight>Bold</weight>
<!-- 'bold' or 'normal' -->
<slant>Normal</slant>
<!-- 'italic' or 'normal' -->
</font>
<font place="MenuItem">
<name>Cantarell</name>
<size>14</size>
<!-- font size in points -->
<weight>Normal</weight>
<!-- 'bold' or 'normal' -->
<slant>Normal</slant>
<!-- 'italic' or 'normal' -->
</font>
<font place="ActiveOnScreenDisplay">
<name>Cantarell</name>
<size>12</size>
<!-- font size in points -->
<weight>Normal</weight>
<!-- 'bold' or 'normal' -->
<slant>Normal</slant>
<!-- 'italic' or 'normal' -->
</font>
<font place="InactiveOnScreenDisplay">
<name>Cantarell</name>
<size>12</size>
<!-- font size in points -->
<weight>Normal</weight>
<!-- 'bold' or 'normal' -->
<slant>Normal</slant>
<!-- 'italic' or 'normal' -->
</font>
</theme>
<desktops>
<!-- this stuff is only used at startup, pagers allow you to change them during a session these are default values to use when other ones are not already set 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>4</number>
<firstdesk>1</firstdesk>
<names>
<name>1</name>
<name>2</name>
<name>3</name>
<name>4</name>
</names>
<popupTime>0</popupTime>
<!-- The number of milliseconds to show the popup for when switching desktops. Set this to 0 to disable the popup. -->
</desktops>
<resize>
<drawContents>yes</drawContents>
<popupShow>NonPixel</popupShow>
<!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) -->
<popupPosition>Center</popupPosition>
<!-- 'Center', 'Top', or 'Fixed' -->
<popupFixedPosition>
<!-- these are used if popupPosition is set to 'Fixed' -->
<x>10</x>
<!-- positive number for distance from left edge, negative number for distance from right edge, or 'Center' -->
<y>10</y>
<!-- positive number for distance from top edge, negative number for distance from bottom edge, or 'Center' -->
</popupFixedPosition>
</resize>
<!-- You can reserve a portion of your screen where windows will not cover when they are maximized, or when they are initially placed. Many programs reserve space automatically, but you can use this in other cases. -->
<margins>
<top>10</top>
<bottom>10</bottom>
<left>10</left>
<right>10</right>
</margins>
<dock>
<position>Bottom</position>
<!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating -->
<floatingX>0</floatingX>
<floatingY>0</floatingY>
<noStrut>yes</noStrut>
<stacking>Below</stacking>
<!-- 'Above', 'Normal', or 'Below' -->
<direction>Horizontal</direction>
<!-- 'Vertical' or 'Horizontal' -->
<autoHide>no</autoHide>
<hideDelay>300</hideDelay>
<!-- in milliseconds (1000 = 1 second) -->
<showDelay>300</showDelay>
<!-- in milliseconds (1000 = 1 second) -->
<moveButton>Middle</moveButton>
<!-- 'Left', 'Middle', 'Right' -->
</dock>
<keyboard>
<chainQuitKey>C-g</chainQuitKey>
<!-- brightness controls -->
<keybind key="XF86MonBrightnessUp">
<action name="Execute">
<command>bash -c '~/.scripts/notify/change-brightness up'</command>
</action>
</keybind>
<keybind key="XF86MonBrightnessDown">
<action name="Execute">
<command>bash -c '~/.scripts/notify/change-brightness down'</command>
</action>
</keybind>
<!-- volume control -->
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>bash -c '~/.scripts/notify/change-volume up'</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>bash -c '~/.scripts/notify/change-volume down'</command>
</action>
</keybind>
<keybind key="XF86AudioMute">
<action name="Execute">
<command>bash -c '~/.scripts/notify/change-volume mute'</command>
</action>
</keybind>
<!-- music control -->
<keybind key="XF86AudioStop">
<action name="Execute">
<command>bash -c '~/.scripts/music-controller stop'</command>
</action>
</keybind>
<keybind key="XF86AudioPlay">
<action name="Execute">
<command>bash -c '~/.scripts/music-controller toggle'</command>
</action>
</keybind>
<keybind key="XF86AudioPrev">
<action name="Execute">
<command>bash -c '~/.scripts/music-controller prev'</command>
</action>
</keybind>
<keybind key="XF86AudioNext">
<action name="Execute">
<command>bash -c '~/.scripts/music-controller next'</command>
</action>
</keybind>
<!-- window switching with the arrow keys -->
<keybind key="W-Right">
<action name="DirectionalCycleWindows">
<bar>yes</bar>
<dialog>no</dialog>
<direction>right</direction>
</action>
</keybind>
<keybind key="W-Left">
<action name="DirectionalCycleWindows">
<bar>yes</bar>
<dialog>no</dialog>
<direction>left</direction>
</action>
</keybind>
<keybind key="W-Up">
<action name="DirectionalCycleWindows">
<bar>yes</bar>
<dialog>no</dialog>
<direction>up</direction>
</action>
</keybind>
<keybind key="W-Down">
<action name="DirectionalCycleWindows">
<bar>yes</bar>
<dialog>no</dialog>
<direction>down</direction>
</action>
</keybind>
<!-- split/tile window -->
<keybind key="W-Tab">
<action name="ToggleMaximizeFull"/>
</keybind>
<keybind key="W-a">
<action name="MoveResizeTo">
<x>0</x>
<y>0</y>
<width>1/2</width>
<height>1/1</height>
</action>
</keybind>
<keybind key="W-d">
<action name="MoveResizeTo">
<x>-0</x>
<y>0</y>
<width>1/2</width>
<height>1/1</height>
</action>
</keybind>
<keybind key="W-w">
<action name="MoveResizeTo">
<y>0</y>
<width>1/1</width>
<height>1/2</height>
</action>
</keybind>
<keybind key="W-s">
<action name="MoveResizeTo">
<y>-0</y>
<width>1/1</width>
<height>1/2</height>
</action>
</keybind>
<keybind key="W-S-d">
<action name="MoveResizeTo">
<!-- move to next monitor -->
<monitor>2</monitor>
</action>
</keybind>
<keybind key="W-S-a">
<action name="MoveResizeTo">
<!-- move to next monitor -->
<monitor>1</monitor>
</action>
</keybind>
<!-- desktop switching -->
<keybind key="W-1">
<action name="GoToDesktop">
<to>1</to>
</action>
</keybind>
<keybind key="W-2">
<action name="GoToDesktop">
<to>2</to>
</action>
</keybind>
<keybind key="W-3">
<action name="GoToDesktop">
<to>3</to>
</action>
</keybind>
<keybind key="W-4">
<action name="GoToDesktop">
<to>4</to>
</action>
</keybind>
<keybind key="W-S-1">
<action name="SendToDesktop">
<to>1</to>
</action>
</keybind>
<keybind key="W-S-2">
<action name="SendToDesktop">
<to>2</to>
</action>
</keybind>
<keybind key="W-S-3">
<action name="SendToDesktop">
<to>3</to>
</action>
</keybind>
<keybind key="W-S-4">
<action name="SendToDesktop">
<to>4</to>
</action>
</keybind>
<!-- windows -->
<keybind key="A-space">
<action name="ShowMenu">
<menu>client-menu</menu>
</action>
</keybind>
<keybind key="W-space">
<action name="Execute">
<command>rofi -combi-modi drun,window,ssh -theme eyecandy -font "hack 24" -show combi -sort </command>
</action>
</keybind>
<keybind key="W-t">
<action name="ToggleDecorations"/>
</keybind>
<keybind key="W-S-r">
<action name="Execute">
<command>bash -c '~/.config/openbox/visual-mode/mode-toggle just_ui; openbox --reconfigure'</command>
</action>
</keybind>
<keybind key="W-f">
<action name="ToggleFullscreen"/>
</keybind>
<keybind key="W-x">
<action name="Iconify"/>
</keybind>
<keybind key="W-z">
<action name="Iconify"/>
</keybind>
<keybind key="W-S-q">
<action name="Close"/>
</keybind>
<!-- Keybindings for window switching -->
<keybind key="A-Tab">
<action name="NextWindow">
<bar>no</bar>
<finalactions>
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</finalactions>
</action>
</keybind>
<keybind key="A-S-Tab">
<action name="PreviousWindow">
<bar>no</bar>
<finalactions>
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</finalactions>
</action>
</keybind>
<!-- run apps -->
<keybind key="W-l">
<action name="Execute">
<command>bash -c '~/.scripts/default-apps/launch lockscreen'</command>
</action>
</keybind>
<keybind key="W-r">
<action name="Execute">
<command>bash -c '~/.config/rofi/scripts/appsmenu.sh'</command>
</action>
</keybind>
<keybind key="W-Prior">
<action name="Execute">
<command>bash -c '~/.config/rofi/scripts/backlight.sh'</command>
</action>
</keybind>
<keybind key="W-Next">
<action name="Execute">
<command>bash -c '~/.config/rofi/scripts/volume.sh'</command>
</action>
</keybind>
<keybind key="W-F12">
<action name="Execute">
<command>~/.local/bin/networkmanager_dmenu</command>
</action>
</keybind>
<keybind key="W-S-e">
<action name="Execute">
<command>bash -c '~/.config/rofi/scripts/powermenu.sh'</command>
</action>
</keybind>
<keybind key="W-Return">
<action name="Execute">
<command>bash -c '~/.scripts/default-apps/launch terminal'</command>
</action>
</keybind>
<keybind key="W-e">
<action name="Execute">
<command>bash -c '~/.scripts/default-apps/launch filemanager'</command>
</action>
</keybind>
<keybind key="W-m">
<action name="Execute">
<command>bash -c '~/.config/rofi/scripts/$(~/.scripts/default-apps/launch -g musicpl).sh'</command>
</action>
</keybind>
<keybind key="Print">
<action name="Execute">
<command>bash -c '~/.scripts/shot-now'</command>
</action>
</keybind>
<keybind key="W-Print">
<action name="Execute">
<command>bash -c '~/.config/rofi/scripts/screenshot.sh'</command>
</action>
</keybind>
</keyboard>
<mouse>
<dragThreshold>1</dragThreshold>
<!-- number of pixels the mouse must move before a drag begins -->
<doubleClickTime>500</doubleClickTime>
<!-- in milliseconds (1000 = 1 second) -->
<screenEdgeWarpTime>400</screenEdgeWarpTime>
<!-- Time before changing desktops when the pointer touches the edge of the screen while moving a window, in milliseconds (1000 = 1 second). Set this to 0 to disable warping -->
<screenEdgeWarpMouse>false</screenEdgeWarpMouse>
<!-- Set this to TRUE to move the mouse pointer across the desktop when switching due to hitting the edge of the screen -->
<context name="Frame">
<mousebind button="W-Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
<mousebind button="W-Left" action="Click">
<action name="Unshade"/>
</mousebind>
<mousebind button="W-Left" action="Drag">
<action name="Move"/>
</mousebind>
<mousebind button="W-Right" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="W-Right" action="Drag">
<action name="Resize"/>
</mousebind>
<mousebind button="W-Middle" action="Press">
<action name="Lower"/>
<action name="FocusToBottom"/>
<action name="Unfocus"/>
</mousebind>
<mousebind button="W-Up" action="Click">
<action name="GoToDesktop">
<to>previous</to>
</action>
</mousebind>
<mousebind button="W-Down" action="Click">
<action name="GoToDesktop">
<to>next</to>
</action>
</mousebind>
<mousebind button="C-W-Up" action="Click">
<action name="GoToDesktop">
<to>previous</to>
</action>
</mousebind>
<mousebind button="C-W-Down" action="Click">
<action name="GoToDesktop">
<to>next</to>
</action>
</mousebind>
<mousebind button="W-S-Up" action="Click">
<action name="SendToDesktop">
<to>previous</to>
</action>
</mousebind>
<mousebind button="W-S-Down" action="Click">
<action name="SendToDesktop">
<to>next</to>
</action>
</mousebind>
</context>
<context name="Titlebar">
<mousebind button="Left" action="Drag">
<action name="Move"/>
</mousebind>
<mousebind button="Left" action="DoubleClick">
<action name="ToggleMaximizeFull"/>
</mousebind>
<mousebind button="Up" action="Click">
<action name="if">
<shaded>no</shaded>
<then>
<action name="Shade"/>
<action name="FocusToBottom"/>
<action name="Unfocus"/>
<action name="Lower"/>
</then>
</action>
</mousebind>
<mousebind button="Down" action="Click">
<action name="if">
<shaded>yes</shaded>
<then>
<action name="Unshade"/>
<action name="Raise"/>
</then>
</action>
</mousebind>
</context>
<context name="Titlebar Top Right Bottom Left TLCorner TRCorner BRCorner BLCorner">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="Middle" action="Press">
<action name="Lower"/>
<action name="FocusToBottom"/>
<action name="Unfocus"/>
</mousebind>
<mousebind button="Right" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="ShowMenu">
<menu>client-menu</menu>
</action>
</mousebind>
</context>
<context name="Top">
<mousebind button="Left" action="Drag">
<action name="Resize">
<edge>top</edge>
</action>
</mousebind>
</context>
<context name="Left">
<mousebind button="Left" action="Drag">
<action name="Resize">
<edge>left</edge>
</action>
</mousebind>
</context>
<context name="Right">
<mousebind button="Left" action="Drag">
<action name="Resize">
<edge>right</edge>
</action>
</mousebind>
</context>
<context name="Bottom">
<mousebind button="Left" action="Drag">
<action name="Resize">
<edge>bottom</edge>
</action>
</mousebind>
<mousebind button="Right" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="ShowMenu">
<menu>client-menu</menu>
</action>
</mousebind>
</context>
<context name="TRCorner BRCorner TLCorner BLCorner">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="Left" action="Drag">
<action name="Resize"/>
</mousebind>
</context>
<context name="Client">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
<mousebind button="Middle" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
<mousebind button="Right" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
</context>
<context name="Icon">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
<action name="ShowMenu">
<menu>client-menu</menu>
</action>
</mousebind>
<mousebind button="Right" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="ShowMenu">
<menu>client-menu</menu>
</action>
</mousebind>
</context>
<context name="AllDesktops">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="Left" action="Click">
<action name="ToggleOmnipresent"/>
</mousebind>
</context>
<context name="Shade">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
<mousebind button="Left" action="Click">
<action name="ToggleShade"/>
</mousebind>
</context>
<context name="Iconify">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
<mousebind button="Left" action="Click">
<action name="Iconify"/>
</mousebind>
</context>
<context name="Maximize">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="Middle" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="Right" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="Left" action="Click">
<action name="ToggleMaximize"/>
</mousebind>
<mousebind button="Middle" action="Click">
<action name="ToggleMaximize">
<direction>vertical</direction>
</action>
</mousebind>
<mousebind button="Right" action="Click">
<action name="ToggleMaximize">
<direction>horizontal</direction>
</action>
</mousebind>
</context>
<context name="Close">
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</mousebind>
<mousebind button="Left" action="Click">
<action name="Close"/>
</mousebind>
</context>
<context name="Desktop">
<mousebind button="W-Up" action="Click">
<action name="GoToDesktop">
<to>previous</to>
</action>
</mousebind>
<mousebind button="W-Down" action="Click">
<action name="GoToDesktop">
<to>next</to>
</action>
</mousebind>
<mousebind button="C-W-Up" action="Click">
<action name="GoToDesktop">
<to>previous</to>
</action>
</mousebind>
<mousebind button="C-W-Down" action="Click">
<action name="GoToDesktop">
<to>next</to>
</action>
</mousebind>
<mousebind button="Left" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
<mousebind button="Right" action="Press">
<action name="Focus"/>
<action name="Raise"/>
</mousebind>
</context>
<context name="Root">
<!-- Menus -->
<mousebind button="Middle" action="Press">
<action name="ShowMenu">
<menu>client-list-combined-menu</menu>
</action>
</mousebind>
<mousebind button="Right" action="Press">
<action name="ShowMenu">
<menu>root-menu</menu>
</action>
</mousebind>
</context>
<context name="MoveResize">
<mousebind button="Up" action="Click">
<action name="GoToDesktop">
<to>previous</to>
</action>
</mousebind>
<mousebind button="Down" action="Click">
<action name="GoToDesktop">
<to>next</to>
</action>
</mousebind>
<mousebind button="W-Up" action="Click">
<action name="GoToDesktop">
<to>previous</to>
</action>
</mousebind>
<mousebind button="W-Down" action="Click">
<action name="GoToDesktop">
<to>next</to>
</action>
</mousebind>
</context>
</mouse>
<menu>
<!-- You can specify more than one menu file in here and they are all loaded, just don't make menu ids clash or, well, it'll be kind of pointless -->
<!-- default menu file (or custom one in $HOME/.config/openbox/) -->
<!-- system menu files on Debian systems -->
<!-- <file>/var/lib/openbox/debian-menu.xml</file> -->
<file>menu.xml</file>
<hideDelay>200</hideDelay>
<!-- if a press-release lasts longer than this setting (in milliseconds), the menu is hidden again -->
<middle>no</middle>
<!-- center submenus vertically about the parent entry -->
<submenuShowDelay>100</submenuShowDelay>
<!-- time to delay before showing a submenu after hovering over the parent entry. if this is a negative value, then the delay is infinite and the submenu will not be shown until it is clicked on -->
<submenuHideDelay>400</submenuHideDelay>
<!-- time to delay before hiding a submenu when selecting another entry in parent menu if this is a negative value, then the delay is infinite and the submenu will not be hidden until a different submenu is opened -->
<showIcons>yes</showIcons>
<!-- controls if icons appear in the client-list-(combined-)menu -->
<manageDesktops>no</manageDesktops>
<!-- show the manage desktops section in the client-list-(combined-)menu -->
</menu>
<applications>
<application class="*" type="normal">
<decor>yes</decor>
</application>
<!--
<application class="Thunar" type="normal">
<maximized>true</maximized>
</application>
<application class="code-oss" type="normal">
<maximized>true</maximized>
</application>
<application class="Atom" type="normal">
<maximized>true</maximized>
</application>
<application class="Geany" type="normal">
<maximized>true</maximized>
</application>
<application class="Google-chrome" type="normal">
<decor>no</decor>
</application>
<application class="Chromium" type="normal">
<decor>no</decor>
</application>
-->
<application name="termite">
<size>
<width>45%</width>
<height>43%</height>
</size>
</application>
<application class="mpv" type="normal">
<maximized>true</maximized>
</application>
<application class="kdenlive" type="normal">
<maximized>true</maximized>
</application>
<application class="Gimp-2.10" type="normal">
<maximized>true</maximized>
</application>
<application class="VirtualBox Manager" type="normal">
<maximized>true</maximized>
</application>
</applications>
</openbox_config>

@ -0,0 +1,14 @@
configuration {
show-icons: true;
cycle: true;
hide-scrollbar: true;
disable-history: true;
sidebar-mode: false;
modi: "drun,run,window,filebrowser";
display-drun: "";
display-run: "";
display-window: "";
display-filebrowser: "";
display-calc: "";
columns: 3;
}

@ -0,0 +1,135 @@
configuration {
font: "Hack 32";
width: 30;
line-margin: 10;
lines: 6;
columns: 2;
display-ssh: "";
display-run: "";
display-drun: "";
display-window: "";
display-combi: "";
show-icons: true;
}
* {
black0: #373E4D;
black1: #3B4252;
black2: #434C5E;
black3: #4C566A;
red0: #FA5AA4;
red1: #FA74B2;
green0: #2BE491;
green1: #44EB9F;
yellow0: #FA946E;
yellow1: #FAA687;
blue0: #63C5EA;
blue1: #7ACBEA;
magenta0: #CF8EF4;
magenta1: #D8A6F4;
cyan0: #89CCF7;
cyan1: #A1D5F7;
white0: #F9F9F9;
white1: #F7F7F7;
white2: #F4F4F4;
foreground: @black0;
backlight: #ccffeedd;
background-color: rgba(249,249,249,0.9);
highlight: underline bold #4C566A;
transparent: rgba(249,249,249,1);
}
window {
location: center;
anchor: center;
transparency: "screenshot";
padding: 10px;
border: 0px;
border-radius: 6px;
background-color: @transparent;
spacing: 0;
children: [mainbox];
orientation: horizontal;
}
mainbox {
spacing: 0;
children: [ inputbar, message, listview ];
}
message {
color: @white1;
padding: 5;
border-color: @foreground;
border: 0px 2px 2px 2px;
background-color: @transparent;
}
inputbar {
color: @black0;
padding: 11px;
background-color: @transparent;
border: 1px;
border-radius: 6px 6px 0px 0px;
border-color: @black0;
}
entry, prompt, case-indicator {
text-font: inherit;
text-color:inherit;
}
prompt {
margin: 0px 0.3em 0em 0em ;
}
listview {
padding: 8px;
border-radius: 0px 0px 6px 6px;
border-color: @black0;
border: 0px 1px 1px 1px;
background-color: @transparent;
dynamic: false;
}
element {
padding: 3px;
vertical-align: 0.5;
border-radius: 4px;
background-color: transparent;
color: @magenta0;
text-color: @black1;
}
element selected.normal {
background-color: @magenta1;
text-color: @black1;
}
element-text, element-icon {
background-color: inherit;
text-color: inherit;
}
button {
padding: 6px;
color: @foreground;
horizontal-align: 0.5;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
border-color: @foreground;
}
button selected normal {
border: 2px 0px 2px 2px;
border-color: @foreground;
}

@ -0,0 +1,15 @@
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run.
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/"
XDG_DOWNLOAD_DIR="$HOME/tmp"
XDG_TEMPLATES_DIR="$HOME/"
XDG_PUBLICSHARE_DIR="$HOME/"
XDG_DOCUMENTS_DIR="$HOME/"
XDG_MUSIC_DIR="$HOME/"
XDG_PICTURES_DIR="$HOME/"
XDG_VIDEOS_DIR="$HOME/"

@ -0,0 +1,18 @@
# DO NOT EDIT! This file will be overwritten by LXAppearance.
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
include "/home/tom/.gtkrc-2.0.mine"
gtk-theme-name="Ocha"
gtk-icon-theme-name="Papirus"
gtk-font-name="Hack 12"
gtk-cursor-theme-name="Adwaita"
gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=1
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle="hintfull"

@ -0,0 +1,5 @@
#define bullet_width 10
#define bullet_height 10
static unsigned char bullet_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x30, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define close_width 10
#define close_height 10
static unsigned char close_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define close_width 10
#define close_height 10
static unsigned char close_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define close_width 10
#define close_height 10
static unsigned char close_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define iconify_width 10
#define iconify_height 10
static unsigned char iconify_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define max_width 10
#define max_height 10
static unsigned char max_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define max_width 10
#define max_height 10
static unsigned char max_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define max_width 10
#define max_height 10
static unsigned char max_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define close_width 10
#define close_height 10
static unsigned char close_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,5 @@
#define close_width 10
#define close_height 10
static unsigned char close_bits[] = {
0x7c, 0x00, 0xfe, 0x00, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0xfe, 0x00, 0x7c, 0x00, 0x00, 0x00 };

@ -0,0 +1,121 @@
!! menu background
menu.items.bg: flat
menu.items.bg.color: #fff6f6
menu.overlap.x: -8
!! menu text
menu.items.text.color: #889499
menu.items.justify: left
menu.items.disabled.text.color: #4d5066
!! menu separator
menu.separator.padding.height: 2
menu.separator.color: #fff6f6
!! menu border
menu.border.width: 6
menu.border.color: #fff6f6
!! menu headers
menu.title.bg: flat
menu.title.bg.color: #fff6f6
menu.title.text.color: #000000
menu.title.text.justify: center
!! selected menu item
menu.items.active.bg: flat
menu.items.active.bg.color: #c5e1e3
menu.items.active.text.color: #889499
!! titlebar
window.active.title.bg: flat
window.active.title.bg.color: #f3c4c4
window.inactive.title.bg: flat
window.inactive.title.bg.color: #fff6f6
!! titlebar text
window.label.text.justify: center
window.active.label.bg: parentrelative
window.active.label.text.color: #1b1b2e
window.inactive.label.bg: parentrelative
window.inactive.label.text.color: #8ba5b3
!! borders
window.active.border.color: #fff6f6
window.inactive.border.color: #fff6f6
padding.width: 8
padding.height: 8
window.client.padding.width: 0
window.client.padding.height: 0
border.width: 0
window.handle.width: 0
window.active.client.color: #fff6f6
window.inactive.client.color: #fff6f6
window.active.handle.bg: flat
window.active.handle.bg.color: #fff6f6
window.inactive.handle.bg: flat
window.inactive.handle.bg.color: #fff6f6
window.active.grip.bg: flat
window.active.grip.bg.color: #fff6f6
window.inactive.grip.bg: flat
window.inactive.grip.bg.color: #fff6f6
!! on-screen displays
osd.border.width: 1
osd.border.color: #fff6f6
osd.label.text.color: #1b1b2e
osd.bg: flat solid
osd.bg.color: #fff6f6
osd.label.bg: flat solid
osd.label.bg.color: #fff6f6
osd.hilight.bg: flat solid
osd.hilight.bg.color: #f3c4c4
osd.unhilight.bg: flat solid
osd.unhilight.bg.color: #8ba5b3
!! window buttons
window.*.button.*.bg: parentrelative
window.*.button.*.pressed.bg: flat
window.active.button.*.hover.bg: flat
window.active.button.*.hover.bg: parentrelative
window.active.button.*.hover.bg.color: #f3c4c4
window.active.button.hover.image.color: #c5e1e3
window.active.button.*.pressed.bg.color: #8ba5b3
window.active.button.toggled.image.color: #c5e1e3
window.active.button.disabled.image.color: #889499
window.inactive.button.*.hover.bg: flat
window.inactive.button.*.hover.bg: parentrelative
window.inactive.button.hover.image.color: #c5e1e3
window.inactive.button.toggled.image.color: #c5e1e3
window.inactive.button.disabled.image.color: #889499
window.active.button.close.unpressed.image.color: #bfa4cd
window.active.button.close.pressed.image.color: #bfa4cd
window.inactive.button.close.unpressed.image.color: #bfa4cd
window.inactive.button.close.pressed.image.color: #bfa4cd
window.active.button.max.unpressed.image.color: #93ba84
window.active.button.max.pressed.image.color: #93ba84
window.inactive.button.max.unpressed.image.color: #93ba84
window.inactive.button.max.pressed.image.color: #93ba84
window.active.button.iconify.unpressed.image.color: #f3adcd
window.active.button.iconify.pressed.image.color: #f3adcd
window.inactive.button.iconify.unpressed.image.color: #f3adcd
window.inactive.button.iconify.pressed.image.color: #f3adcd
window.active.button.shade.unpressed.image.color: #cecce2
window.active.button.shade.pressed.image.color: #cecce2
window.inactive.button.shade.unpressed.image.color: #cecce2
window.inactive.button.shade.pressed.image.color: #cecce2
window.active.button.desk.unpressed.image.color: #87e0dc
window.active.button.desk.pressed.image.color: #87e0dc
window.inactive.button.desk.unpressed.image.color: #87e0dc
window.inactive.button.desk.pressed.image.color: #87e0dc

@ -0,0 +1,157 @@
#
# Thunar
#
style "thunar-handle" { GtkPaned::handle-size = 2 }
style "dark-sidebar" {
GtkTreeView::odd_row_color = @dark_sidebar_bg
GtkTreeView::even_row_color = @dark_sidebar_bg
base[NORMAL] = @dark_sidebar_bg
base[INSENSITIVE] = @dark_sidebar_bg
text[NORMAL] = "#BAC3CF"
text[ACTIVE] = @selected_fg_color
text[SELECTED] = @selected_fg_color
}
style "thunar-frame" {
xthickness = 0
ythickness = 0
}
widget_class "*ThunarWindow*.<GtkScrolledWindow>" style "thunar-frame"
widget_class "*ThunarShortcutsView*" style "dark-sidebar"
widget_class "*ThunarTreeView*" style "dark-sidebar"
widget_class "*ThunarWindow*.<GtkHPaned>" style "thunar-handle"
#
# Workaround for colored entries
#
style "entry_border" {
xthickness = 7
ythickness = 5
engine "pixmap" {
image {
function = SHADOW
state = NORMAL
detail = "entry"
file = "assets/entry-border-bg.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = SHADOW
state = ACTIVE
detail = "entry"
file = "assets/entry-border-active-bg.png"
border = {6, 6, 6, 6}
stretch = TRUE
}
image {
function = FLAT_BOX
state = ACTIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
state = INSENSITIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
detail = "entry_bg"
file = "assets/null.png"
}
}
}
style "combobox_entry_border" = "combobox_entry" {
engine "pixmap" {
image {
function = SHADOW
detail = "entry"
state = NORMAL
shadow = IN
file = "assets/combo-entry-border.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = LTR
}
image {
function = SHADOW
detail = "entry"
state = ACTIVE
file = "assets/combo-entry-border-focus.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = LTR
}
image {
function = SHADOW
detail = "entry"
state = NORMAL
shadow = IN
file = "assets/combo-entry-border-rtl.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = RTL
}
image {
function = SHADOW
detail = "entry"
state = ACTIVE
file = "assets/combo-entry-border-focus-rtl.png"
border = { 4, 4, 12, 12 }
stretch = TRUE
direction = RTL
}
image {
function = FLAT_BOX
state = INSENSITIVE
detail = "entry_bg"
file = "assets/null.png"
}
image {
function = FLAT_BOX
detail = "entry_bg"
file = "assets/null.png"
}
}
}
# Mousepad search entry
widget_class "*MousepadSearchBar*.<GtkEntry>" style "entry_border"
# Mousepad find and replace
widget_class "*MousepadReplaceDialog*.<GtkEntry>" style "entry_border"
# Thunar bulk rename
widget_class "*ThunarRenamerDialog*.<GtkEntry>" style "entry_border"
# Hexchat input box
class "SexySpellEntry" style:highest "entry_border"
# Geany search entries
widget "*GeanyToolbar.*geany-search-entry-no-match*" style "entry_border"
widget "*GeanyToolbar.*GtkEntry*" style "entry_border"
widget "GeanyDialogSearch.*GtkComboBoxEntry*.*geany-search-entry-no-match*" style "combobox_entry_border"

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 314 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 207 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 889 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save