init
|
|
@ -0,0 +1,14 @@
|
||||||
|
#
|
||||||
|
# ~/.bashrc
|
||||||
|
#
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
alias la='ls -lh'
|
||||||
|
|
||||||
|
export EDITOR="nano"
|
||||||
|
export TERMINAL="terminator"
|
||||||
|
|
||||||
|
PS1="\[\e[1;32m\]\u \[\e[1;31m\][ \[\e[0m\]\w\[\e[1;31m\] ]\[\e[1;32m\] \$ \[\e[0m\]"
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
backend = "glx";
|
||||||
|
glx-no-stencil = true;
|
||||||
|
glx-copy-from-front = false;
|
||||||
|
shadow = true;
|
||||||
|
shadow-radius = 5;
|
||||||
|
shadow-offset-x = -5;
|
||||||
|
shadow-offset-y = -5;
|
||||||
|
shadow-opacity = 0.8;
|
||||||
|
shadow-exclude = [ "! name~=''", "name = 'Notification'", "name = 'Plank'", "name = 'Docky'", "name = 'Kupfer'", "name = 'xfce4-notifyd'", "name *= 'compton'", "name *= 'Chromium'", "name *= 'Chrome'", "class_g = 'firefox' && argb", "class_g = 'Conky'", "class_g = 'Kupfer'", "class_g = 'Synapse'", "class_g ?= 'Notify-osd'", "class_g ?= 'Cairo-dock'", "class_g ?= 'Xfce4-notifyd'", "class_g ?= 'Xfce4-power-manager'", "_GTK_FRAME_EXTENTS@:c", "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'" ];
|
||||||
|
shadow-ignore-shaped = false;
|
||||||
|
inactive-opacity = 1;
|
||||||
|
active-opacity = 1;
|
||||||
|
frame-opacity = 1;
|
||||||
|
menu-opacity = 0.95;
|
||||||
|
inactive-opacity-override = false;
|
||||||
|
blur-background-fixed = false;
|
||||||
|
blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ];
|
||||||
|
fading = true;
|
||||||
|
fade-delta = 2;
|
||||||
|
fade-in-step = 0.03;
|
||||||
|
fade-out-step = 0.03;
|
||||||
|
fade-exclude = [ ];
|
||||||
|
mark-wmwin-focused = true;
|
||||||
|
mark-ovredir-focused = true;
|
||||||
|
use-ewmh-active-win = true;
|
||||||
|
detect-rounded-corners = true;
|
||||||
|
detect-client-opacity = true;
|
||||||
|
refresh-rate = 0;
|
||||||
|
vsync = true;
|
||||||
|
dbe = false;
|
||||||
|
unredir-if-possible = false;
|
||||||
|
focus-exclude = [ ];
|
||||||
|
detect-transient = true;
|
||||||
|
detect-client-leader = true;
|
||||||
|
wintypes :
|
||||||
|
{
|
||||||
|
tooltip :
|
||||||
|
{
|
||||||
|
fade = true;
|
||||||
|
shadow = false;
|
||||||
|
opacity = 0.85;
|
||||||
|
focus = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
xrender-sync-fence = true;
|
||||||
|
|
@ -0,0 +1,84 @@
|
||||||
|
[frame]
|
||||||
|
width = 0
|
||||||
|
color = "#2E2F3A"
|
||||||
|
|
||||||
|
[urgency_low]
|
||||||
|
background = "#000000"
|
||||||
|
foreground = "#ffffff"
|
||||||
|
timeout = 10
|
||||||
|
|
||||||
|
[urgency_normal]
|
||||||
|
background = "#000000"
|
||||||
|
foreground = "#ffffff"
|
||||||
|
timeout = 10
|
||||||
|
|
||||||
|
[urgency_critical]
|
||||||
|
background = "#fbc02d"
|
||||||
|
foreground = "#000000"
|
||||||
|
timeout = 0
|
||||||
|
|
||||||
|
[global]
|
||||||
|
# The format of the message. Possible variables:
|
||||||
|
# %a appname
|
||||||
|
# %s summary
|
||||||
|
# %b body
|
||||||
|
# %i iconname (including its path)
|
||||||
|
# %I iconname (without its path)
|
||||||
|
# %p progress value if set ([ 0%] to [100%]) or nothing
|
||||||
|
format = "%a\n<b>%s</b>\n%b\n%p"
|
||||||
|
|
||||||
|
# The geometry of the window. Format: [{width}]x{height}[+/-{x}+/-{y}]
|
||||||
|
# The height = number of notifications, all other variables are px
|
||||||
|
# Omit width, provide height for full-screen width notifications
|
||||||
|
# If width is 0, window will fit to longest message
|
||||||
|
# Positive x value is measured from the left of the screen, negative x is measured from the right
|
||||||
|
# Positive y value is measured from the top of the screen
|
||||||
|
geometry = "300x5-20-40"
|
||||||
|
|
||||||
|
font = Sans 10
|
||||||
|
allow_markup = yes
|
||||||
|
plain_text = no # Treat message as plain text
|
||||||
|
sort = yes # Sort messages by urgency
|
||||||
|
indicate_hidden = yes # Show how many messages are currently hidden (see geometry)
|
||||||
|
alignment = center # Align text left/center/right
|
||||||
|
bounce_freq = 0 # Frequency to bounce text back and forth if it is longer than the window width (conflicts with "word_wrap")
|
||||||
|
show_age_threshold = 60 # Show if message is older than x seconds (-1 to disable)
|
||||||
|
word_wrap = yes # Split notifications into multiple lines if they don't fit into geometry
|
||||||
|
ignore_newline = no # Ignore "\n"
|
||||||
|
transparency = 40 # The transparency of the window. 0 (opaque) to 100 (transparent) - requires compositing window manager (xcompmgr, compiz, compton, etc)
|
||||||
|
shrink = no # Shrink window if it's smaller than the width (ignored if width is 0)
|
||||||
|
monitor = 0 # Display notifications on the monitor indicated (0 is default)
|
||||||
|
follow = none # Follow mouse/keyboard/none
|
||||||
|
show_indicators = no # Display indicators for URLs (U) and actions (A)
|
||||||
|
line_height = 0 # The spacing between lines (forced to height of font at minimum)
|
||||||
|
notification_height = 0 # The height of the entire notification (forced to height of font height and padding at minimum)
|
||||||
|
separator_height = 2 # Space in pixels between two notifications
|
||||||
|
padding = 4 # Padding between text and separator
|
||||||
|
horizontal_padding = 8 # Horizontal padding
|
||||||
|
separator_color = frame # Color for separator: auto/foreground/frame/X color
|
||||||
|
icon_position = left # Align icons left/right/off
|
||||||
|
|
||||||
|
idle_threshold = 120 # Don't remove messages if the user is idle (no mouse or keyboard input) for longer than idle_threshold seconds
|
||||||
|
sticky_history = yes # Make notifications remain until clicked on (yes) or timeout as normal (no) when recalled from history
|
||||||
|
history_length = 20 # Maximum amount of notifications kept in history
|
||||||
|
|
||||||
|
icon_folders = /usr/share/icons/Qogir/16x16
|
||||||
|
startup_notification = false
|
||||||
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
browser = /usr/bin/firefox -new-tab
|
||||||
|
|
||||||
|
[shortcuts]
|
||||||
|
# Available modifiers are "ctrl", "mod1", "mod2", "mod3", and "mod4"
|
||||||
|
# Xev might be helpful to find names for keys
|
||||||
|
|
||||||
|
# Close notification
|
||||||
|
close = ctrl+space
|
||||||
|
|
||||||
|
# Close all notifications
|
||||||
|
close_all = ctrl+shift+space
|
||||||
|
|
||||||
|
# Recall last message(s)
|
||||||
|
history = mod1+grave
|
||||||
|
|
||||||
|
# Context menu
|
||||||
|
# context = ctrl+shift+period
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
[xin_-1]
|
||||||
|
file=/media/storage/Pifiles/backup/Tree.jpg
|
||||||
|
mode=5
|
||||||
|
bgcolor=#000000
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
[geometry]
|
||||||
|
posx=310
|
||||||
|
posy=70
|
||||||
|
sizex=520
|
||||||
|
sizey=500
|
||||||
|
|
||||||
|
[nitrogen]
|
||||||
|
view=icon
|
||||||
|
recurse=true
|
||||||
|
sort=alpha
|
||||||
|
icon_caps=false
|
||||||
|
dirs=
|
||||||
|
|
@ -0,0 +1,74 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
# obmenu-generator - configuration file
|
||||||
|
# This file will be updated automatically.
|
||||||
|
# Any additional comment and/or indentation will be lost.
|
||||||
|
|
||||||
|
=for comment
|
||||||
|
|
||||||
|
|| FILTERING
|
||||||
|
| skip_filename_re : Skip a .desktop file if its name matches the regex.
|
||||||
|
Name is from the last slash to the end. (e.g.: name.desktop)
|
||||||
|
Example: qr/^(?:gimp|xterm)\b/, # skips 'gimp' and 'xterm'
|
||||||
|
|
||||||
|
| skip_entry : Skip a desktop file if the value from a given key matches the regex.
|
||||||
|
Example: [
|
||||||
|
{key => 'Name', re => qr/(?:about|terminal)/i},
|
||||||
|
{key => 'Exec', re => qr/^xterm/},
|
||||||
|
{key => 'OnlyShowIn', re => qr/XFCE/},
|
||||||
|
],
|
||||||
|
|
||||||
|
| substitutions : Substitute, by using a regex, in the values from the desktop files.
|
||||||
|
Example: [
|
||||||
|
{key => 'Exec', re => qr/xterm/, value => 'tilix', global => 1},
|
||||||
|
],
|
||||||
|
|
||||||
|
|| ICON SETTINGS
|
||||||
|
| gtk_rc_filename : Absolute path to the GTK configuration file.
|
||||||
|
| missing_icon : Use this icon for missing icons (default: gtk-missing-image)
|
||||||
|
| icon_size : Preferred size for icons. (default: 48)
|
||||||
|
| generic_fallback : Try to shorten icon name at '-' characters before looking at inherited themes. (default: 0)
|
||||||
|
| force_icon_size : Always get the icon scaled to the requested size. (default: 0)
|
||||||
|
|
||||||
|
|| PATHS
|
||||||
|
| desktop_files_paths : Absolute paths which contain .desktop files.
|
||||||
|
Example: [
|
||||||
|
'/usr/share/applications',
|
||||||
|
"$ENV{HOME}/.local/share/applications",
|
||||||
|
glob("$ENV{HOME}/.local/share/applications/wine/Programs/*"),
|
||||||
|
],
|
||||||
|
|
||||||
|
|| NOTES
|
||||||
|
| Regular expressions:
|
||||||
|
* use qr/.../ instead of '...'
|
||||||
|
* use qr/.../i for case insensitive mode
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
our $CONFIG = {
|
||||||
|
"editor" => "geany",
|
||||||
|
"force_icon_size" => 0,
|
||||||
|
"generic_fallback" => 0,
|
||||||
|
"gtk_rc_filename" => "$ENV{HOME}/.gtkrc-2.0",
|
||||||
|
"icon_size" => 42,
|
||||||
|
"Linux::DesktopFiles" => {
|
||||||
|
desktop_files_paths => [
|
||||||
|
"/usr/share/applications",
|
||||||
|
"/usr/local/share/applications",
|
||||||
|
"/usr/share/applications/kde4",
|
||||||
|
"$ENV{HOME}/.local/share/applications",
|
||||||
|
],
|
||||||
|
keep_unknown_categories => 1,
|
||||||
|
skip_entry => undef,
|
||||||
|
skip_filename_re => undef,
|
||||||
|
substitutions => undef,
|
||||||
|
terminalization_format => "%s -e '%s'",
|
||||||
|
terminalize => 1,
|
||||||
|
unknown_category_key => "other",
|
||||||
|
},
|
||||||
|
"locale_support" => 1,
|
||||||
|
"missing_icon" => "gtk-missing-image",
|
||||||
|
"terminal" => "xterm",
|
||||||
|
"use_gtk3" => 0,
|
||||||
|
"VERSION" => 0.86,
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 985 B |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 484 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 400 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 359 B |
|
After Width: | Height: | Size: 671 B |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 6.6 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 1011 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 597 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 333 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 876 B |
|
After Width: | Height: | Size: 833 B |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 430 B |
|
After Width: | Height: | Size: 363 B |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 530 B |
|
After Width: | Height: | Size: 638 B |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 631 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 717 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 774 B |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 892 B |
|
After Width: | Height: | Size: 393 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 376 B |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 730 B |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1009 B |
|
After Width: | Height: | Size: 486 B |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 902 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.6 KiB |