commit 4603184052b7c37c79e5f2118da780a7e4f9ff73 Author: kento2 Date: Sun Nov 16 22:32:14 2025 +0100 . diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..abbba97 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +setup: + ./setup.sh + +clean: + ./clean.sh diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..85220a7 --- /dev/null +++ b/README.txt @@ -0,0 +1,67 @@ +TODO +---- + +* pass/otp setup +* mblaze +* pipewire/dbus + rnnoise ig +* custom plumber +* cgo config to always use plumber +* automatic backups with borg + script +* cupload <<< file + +limitations +----------- + +* no dbus, so no spotify or pipewire + install dbus, enable the service, + use exec dbus-run-session dwm in .xinitrc + to use dbus +* no audio denoiser(unless i use pipewire) + +self-compiled packages +---------------------- + +needed: michaelforney's velox +recommended: meh dwm cgo(see dl.kentoj.de/patches/cgo-*) + +mkdir ~/pkg +clone all sources to ~/pkg, +~/pkg/* should have a Makefile with: +* build: compile +* install: install to /usr/local +* uninstall: uninstall from /usr/local + +autologin voidlinux tty1 to x11 +------------------------------- +you can do this if u want: + +cp /etc/sv +cp agetty-tty1 agetty1-autologin-tty1 + +in the conf file: + GETTY_ARGS="--autologin --noclear" + BAUD_RATE=38400 + TERM_NAME=linux + +now enable the service and disable the agetty-tty1 service. + +for autostarting startx, we use ~/.profile + if shopt -q login_shell && test "$(tty)" = '/dev/tty1' + then + exec startx + fi +this makes .profile run startx on tty1 after login. + +no beep +------- + +/etc/modprobe.d/no-beep.conf: + blacklist pcspkr + +restart or simply: + rmmod pcspkr + +theming +------- +for gtk i like BellePintosGrande +for icons, platinum9/nineicons diff --git a/clean.sh b/clean.sh new file mode 100755 index 0000000..7a8af5f --- /dev/null +++ b/clean.sh @@ -0,0 +1,19 @@ +#!/bin/sh +set -e +set -x + +if ! which lr >/dev/null 2>&1; then + >&2 echo "install leah2's lr(1) first" + exit 1 +fi + +if test ! -d './files'; then + >&2 echo "This script has to be executed from the dotfiles root" + exit 1 +fi + +cd files + +files="$(lr -U -t 'path!~".git" && path~~".*" && type=f' | + xargs printf '%s/%s\n' "$HOME")" +rm -f $files diff --git a/files/.config/gtk-3.0/settings.ini b/files/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..f77d562 --- /dev/null +++ b/files/.config/gtk-3.0/settings.ini @@ -0,0 +1,16 @@ +[Settings] +gtk-theme-name=BellePintosGrande +gtk-icon-theme-name=Adwaita +gtk-font-name=Adwaita Sans 11 +gtk-cursor-theme-name=Adwaita +gtk-cursor-theme-size=24 +gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=0 +gtk-menu-images=0 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=0 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintslight +gtk-xft-rgba=none diff --git a/files/.config/lxterminal/lxterminal.conf b/files/.config/lxterminal/lxterminal.conf new file mode 100644 index 0000000..025f672 --- /dev/null +++ b/files/.config/lxterminal/lxterminal.conf @@ -0,0 +1,56 @@ +[general] +fontname=Spleen 12x24 Medium 12 +selchars=-A-Za-z0-9,./?%&#:_ +scrollback=1000 +bgcolor=rgb(0,0,0) +fgcolor=rgb(246,245,244) +palette_color_0=rgb(0,0,0) +palette_color_1=rgb(170,0,0) +palette_color_2=rgb(0,170,0) +palette_color_3=rgb(170,85,0) +palette_color_4=rgb(0,0,170) +palette_color_5=rgb(170,0,170) +palette_color_6=rgb(0,170,170) +palette_color_7=rgb(170,170,170) +palette_color_8=rgb(85,85,85) +palette_color_9=rgb(255,85,85) +palette_color_10=rgb(85,255,85) +palette_color_11=rgb(255,255,85) +palette_color_12=rgb(85,85,255) +palette_color_13=rgb(255,85,255) +palette_color_14=rgb(85,255,255) +palette_color_15=rgb(255,255,255) +color_preset=Custom +disallowbold=false +boldbright=false +cursorblinks=false +cursorunderline=false +audiblebell=false +visualbell=false +tabpos=top +geometry_columns=80 +geometry_rows=24 +hidescrollbar=true +hidemenubar=true +hideclosebutton=false +hidepointer=false +disablef10=false +disablealt=false +disableconfirm=false +tabwidth=100 + +[shortcut] +new_window_accel=n +new_tab_accel=t +close_tab_accel=w +close_window_accel=q +copy_accel=c +paste_accel=v +name_tab_accel=i +previous_tab_accel=Page_Up +next_tab_accel=Page_Down +move_tab_left_accel=Page_Up +move_tab_right_accel=Page_Down +zoom_in_accel=plus +zoom_out_accel=underscore +zoom_reset_accel=parenright diff --git a/files/.config/ncspot/config.toml b/files/.config/ncspot/config.toml new file mode 100644 index 0000000..80ed6fa --- /dev/null +++ b/files/.config/ncspot/config.toml @@ -0,0 +1 @@ +backend = "alsa" diff --git a/files/.config/ncspot/userstate.cbor b/files/.config/ncspot/userstate.cbor new file mode 100644 index 0000000..d690fbc Binary files /dev/null and b/files/.config/ncspot/userstate.cbor differ diff --git a/files/.config/service/sshfs/run b/files/.config/service/sshfs/run new file mode 100755 index 0000000..d613365 --- /dev/null +++ b/files/.config/service/sshfs/run @@ -0,0 +1,3 @@ +#!/bin/sh + +sshfs -o auto_unmount -f kentoj.de:nfs ~/nfs diff --git a/files/.exrc b/files/.exrc new file mode 100644 index 0000000..f67a20b --- /dev/null +++ b/files/.exrc @@ -0,0 +1,14 @@ +set showmode ruler +set filec= +set cedit= +set ai +set tabstop=4 +set shiftwidth=4 + +" https://mattwidmann.net/notes/modern-nvi-mappings/ +" display man page +map wbyw:o:!man p +" git blame +map gb :vsplit "zy1G:edit /tmp G:read !git blame -- # : o"zp!Gwc -lI: +" run make +map mm :w :!clear; make -B diff --git a/files/.gitconfig b/files/.gitconfig new file mode 100644 index 0000000..6441061 --- /dev/null +++ b/files/.gitconfig @@ -0,0 +1,4 @@ +# This is Git's per-user configuration file. +[user] + name = kento2 + email = kento+pub@placeq.com diff --git a/files/.local/bin/d b/files/.local/bin/d new file mode 100755 index 0000000..10cb1f1 --- /dev/null +++ b/files/.local/bin/d @@ -0,0 +1,2 @@ +#!/bin/sh +exec date -I diff --git a/files/.local/bin/menu b/files/.local/bin/menu new file mode 100755 index 0000000..27dcf23 --- /dev/null +++ b/files/.local/bin/menu @@ -0,0 +1,3 @@ +#!/bin/sh +cmd="$(dmenu_path | fzy)" +nohup sh -c "${cmd} &" >/dev/null 2>&1 diff --git a/files/.local/bin/mkbackup b/files/.local/bin/mkbackup new file mode 100755 index 0000000..5eac315 --- /dev/null +++ b/files/.local/bin/mkbackup @@ -0,0 +1,9 @@ +#!/bin/sh +set -e + +if ! test "$(id -u)" = 0; then + >&2 echo "mkbackup has to be run as root" + exit 1 +fi + +borg create -e '*/.git/*' --verbose "backups@kentoj.de:$(hostname)::$(date -I)_$1" /etc /home /srv /var/ /usr diff --git a/files/.profile b/files/.profile new file mode 100644 index 0000000..6f643e8 --- /dev/null +++ b/files/.profile @@ -0,0 +1,16 @@ +. /etc/profile +export ENV="$HOME/.shrc" +export PATH="$HOME/.local/bin/":"$PATH" +export LIBGL_ALWAYS_SOFTWARE=1 +export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig +export XKB_DEFAULT_LAYOUT=de + +exists() { + which "$1" >/dev/null 2>&1 +} + +exists swc-launch && \ +exists velox && \ +shopt -q login_shell && \ +test "$(tty)" = '/dev/tty1' && \ + exec swc-launch velox diff --git a/files/.shrc b/files/.shrc new file mode 100644 index 0000000..1f4e466 --- /dev/null +++ b/files/.shrc @@ -0,0 +1,14 @@ +printf 'BAT %s%%\n' "$(cat /sys/class/power_supply/BAT0/capacity)" + +ps_pwd() { + if test "$PWD" = "$HOME"; then + echo '~' + else + echo "$(basename "$PWD")" + fi +} +PS1='$(ps_pwd) % ' + +alias reload=". '$ENV'" +alias xi='xi -y' +alias xr='doas xbps-remove -y' diff --git a/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/close.xpm b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/close.xpm new file mode 100644 index 0000000..fa65d5c --- /dev/null +++ b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/close.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *close_png[] = { +/* columns rows colors chars-per-pixel */ +"18 18 2 1 ", +" c black", +". c #ADAEBD", +/* pixels */ +"..................", +"..................", +"..................", +"..................", +".... ...... ....", +".... .... ....", +"..... .. .....", +"...... ......", +"....... .......", +"....... .......", +"...... ......", +"..... .. .....", +".... .... ....", +".... ...... ....", +"..................", +"..................", +"..................", +".................." +}; diff --git a/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/default.theme b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/default.theme new file mode 100644 index 0000000..d769adf --- /dev/null +++ b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/default.theme @@ -0,0 +1,37 @@ +ThemeDescription="Belle Pintos Grande" +ThemeAuthor="dusthillresident@gmail.com" +Look=BellePintosGrande +TitleBarHeight=20 +TitleButtonsRight="x mi" +TitleButtonsSupported="xmis" + +ColorNormalBorder="rgb:af/ad/bf" +ColorActiveBorder="rgb:af/ad/bf" +ColorNormalButton="rgb:af/ad/bf" +ColorNormalTitleBar="rgb:AF/AD/BF" +ColorActiveTitleBar="rgb:B2/4D/7A" +ColorNormalTitleBarText="rgb:00/00/00" +ColorActiveTitleBarText="rgb:FF/FF/FF" +ColorNormalMenu="rgb:af/ad/bf" +ColorActiveMenuItem="rgb:b2/4d/7a" +ColorNormalMenuItemText="rgb:00/00/00" +ColorActiveMenuItemText="rgb:FF/FF/FF" +ColorDisabledMenuItemText="rgb:20/20/20" +ColorMoveSizeStatus="rgb:af/ad/bf" +ColorMoveSizeStatusText="rgb:00/00/00" +ColorDefaultTaskBar="rgb:af/ad/bf" +ColorNormalTaskBarApp="rgb:af/ad/bf" +ColorNormalTaskBarAppText="rgb:00/00/00" +ColorActiveTaskBarApp="rgb:93/9c/af" +ColorActiveTaskBarAppText="rgb:00/00/00" +ColorScrollBar="rgb:9e/9c/af" +ColorScrollBarSlider="rgb:af/ad/bf" +ColorScrollBarButton="rgb:af/ad/bf" +ColorScrollBarButtonArrow="rgb:00/00/00" + +DesktopBackgroundColor="rgb:52/49/8c" + +ColorNormalTitleButton="rgb:af/ad/bf" + + +ColorMinimizedTaskBarApp="rgb:af/ad/bf" diff --git a/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/maximize.xpm b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/maximize.xpm new file mode 100644 index 0000000..10d0c9c --- /dev/null +++ b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/maximize.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *maximize_png[] = { +/* columns rows colors chars-per-pixel */ +"18 18 2 1 ", +" c black", +". c #ADAEBD", +/* pixels */ +"..................", +"..................", +"..................", +"... ...", +"... ...", +"... .......... ...", +"... .......... ...", +"... .......... ...", +"... .......... ...", +"... .......... ...", +"... .......... ...", +"... .......... ...", +"... .......... ...", +"... ...", +"..................", +"..................", +"..................", +".................." +}; diff --git a/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/minimize.xpm b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/minimize.xpm new file mode 100644 index 0000000..ecc1b09 --- /dev/null +++ b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/minimize.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *minimize_png[] = { +/* columns rows colors chars-per-pixel */ +"18 18 2 1 ", +" c black", +". c #ADAEBD", +/* pixels */ +"..................", +"..................", +"..................", +"..................", +"..................", +"..................", +"..................", +"..................", +"..................", +"..................", +"..................", +".... ......", +".... ......", +"..................", +"..................", +"..................", +"..................", +".................." +}; diff --git a/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/restore.xpm b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/restore.xpm new file mode 100644 index 0000000..926accc --- /dev/null +++ b/files/.themes/BellePintosGrande/extra/bellepintosgrande_icewm/restore.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char *restore_png[] = { +/* columns rows colors chars-per-pixel */ +"18 18 2 1 ", +" c black", +". c #ADAEBD", +/* pixels */ +"..................", +"..................", +"..................", +"...... ...", +"...... ...", +"...... ....... ...", +"...... ....... ...", +"... .. ...", +"... .. ...", +"... ....... .. ...", +"... ....... ...", +"... ....... ......", +"... ....... ......", +"... ......", +"..................", +"..................", +"..................", +".................." +}; diff --git a/files/.themes/BellePintosGrande/extra/colour_scheme_for_wine.reg b/files/.themes/BellePintosGrande/extra/colour_scheme_for_wine.reg new file mode 100644 index 0000000..3deb3c2 --- /dev/null +++ b/files/.themes/BellePintosGrande/extra/colour_scheme_for_wine.reg @@ -0,0 +1,32 @@ +REGEDIT4 + +[HKEY_CURRENT_USER\Control Panel\Colors] +"ActiveBorder"="175 173 191" +"ActiveTitle"="178 77 122" +"AppWorkSpace"="175 173 191" +"Background"="175 173 191" +"ButtonAlternateFace"="165 163 181" +"ButtonDkShadow"="115 113 131" +"ButtonFace"="175 173 191" +"ButtonHilight"="195 193 213" +"ButtonLight"="212 209 231" +"ButtonShadow"="141 140 154" +"ButtonText"="0 0 0" +"GradientActiveTitle"="178 77 122" +"GradientInActiveTitle"="175 173 191" +"GrayText"="104 112 140" +"Hilight"="178 77 122" +"HilightText"="255 255 255" +"HotTrackingColor"="0 0 0" +"InactiveBorder"="0 0 0" +"InactiveTitle"="175 173 191" +"InactiveTitleText"="0 0 0" +"InfoText"="255 255 255" +"InfoWindow"="60 60 60" +"Menu"="175 173 191" +"MenuText"="0 0 0" +"Scrollbar"="147 151 165" +"TitleText"="255 255 255" +"Window"="255 255 255" +"WindowFrame"="175 173 191" +"WindowText"="0 0 0" diff --git a/files/.themes/BellePintosGrande/extra/readme.txt b/files/.themes/BellePintosGrande/extra/readme.txt new file mode 100644 index 0000000..a10727d --- /dev/null +++ b/files/.themes/BellePintosGrande/extra/readme.txt @@ -0,0 +1,7 @@ +bellepintosgrande_icewm + This is an IceWM theme. Move this directory to ~/.icewm/themes/ in order to use it. + +colour_scheme_for_wine.reg + This is a Wine registry key containing a colour scheme. Import it usine the Wine registry editor. + It should work without problems but I don't guarantee it. Back up your .wine folder before doing this. You can't hold me responsible for any harm that might result. + diff --git a/files/.themes/BellePintosGrande/gtk-2.0/gtkrc b/files/.themes/BellePintosGrande/gtk-2.0/gtkrc new file mode 100644 index 0000000..4f9f3b4 --- /dev/null +++ b/files/.themes/BellePintosGrande/gtk-2.0/gtkrc @@ -0,0 +1,96 @@ + +style "default" +{ + GtkButton::default_border = {5, 5, 5, 5} + GtkButton::default_outside_border = {6, 6, 6, 6} + GtkButton::default_spacing = 5 + GtkButton::focus-padding = 0 + GtkCheckButton::indicator_size = 15 + GtkRadioButton::indicator_size = 15 + GtkMenuItem::selected_shadow_type = in + GtkPaned::handle_full_size = 1 + GtkRange::slider_width = 12 + GtkRange::stepper_size = 12 + GtkRange::stepper_spacing = 0 + GtkRange::trough_border = 0 + GtkScrollbar::min_slider_length = 20 + GtkWidget::focus-line-pattern = "\0" + GtkWidget::focus-line-width = 2 + GtkWidget::interior_focus = 0 + GtkWidget::internal-padding = 2 + + ExoIconBar::active-item-border-color = "#724056" + ExoIconBar::active-item-fill-color = "#b24d7a" + ExoIconBar::active-item-text-color = "#ffffff" + + ExoIconBar::cursor-item-border-color = "#707481" + ExoIconBar::cursor-item-fill-color = "#AEB2C3" + ExoIconBar::cursor-item-text-color = "#000000" + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = "black" + fg[PRELIGHT] = "black" + fg[ACTIVE] = "black" + fg[SELECTED] = "#ffffff" + fg[INSENSITIVE] = "gray1" + + bg[NORMAL] = "#afadbf" + bg[ACTIVE] = "#9E9CAF"#"gray67" + + bg[PRELIGHT] = "#C7C4D9" + +#schimba window decoration color + bg[SELECTED] = "#b24d7a"#"#b24d7a" + bg[INSENSITIVE] = "#959a9c" + + base[NORMAL] = "#FFF7E9" + base[PRELIGHT] = "#4a637b" + base[ACTIVE] ="#b24d7a"#"#3b6d84"#"#ba4747"#"#959a9c" + base[SELECTED] ="#b24d7a"#"#ae5780" #"#6A6F73" + base[INSENSITIVE] = "#AEA7A7" + + text[NORMAL] = "black" + text[ACTIVE] = "snow" + text[PRELIGHT] ="black"# + text[SELECTED] = "white" + text[INSENSITIVE] ="#FFF7E9" + +} + +style "menu" = "default" +{ + bg[PRELIGHT] = "#9BA0B0" + text[PRELIGHT] = "#FFFFFF" +} + +class "GtkWidget" style "default" +class "GtkMenuItem*" style "menu" + + +# This is for ROX-Filer +# +style "rox" = "default" +{ + bg[NORMAL] = "#ffffff" + bg[ACTIVE] = "#ffffff" +} +widget_class "*Collection" style "rox" + + +# This is for the window borders (xfwm4 & metacity) +# +style "titlebar" = "default" +{ + bg[SELECTED] = "#b24d7a" + fg[SELECTED] = "#ffffff" + bg[INSENSITIVE] = "#9ba0b0" + fg[INSENSITIVE] = "#000000" +} + +widget "xfwm" style "titlebar" +class "MetaFrames" style "titlebar" +widget_class "MetaFrames" style "titlebar" + + diff --git a/files/.themes/BellePintosGrande/gtk-3.0/colours.css b/files/.themes/BellePintosGrande/gtk-3.0/colours.css new file mode 100644 index 0000000..4bfdcd1 --- /dev/null +++ b/files/.themes/BellePintosGrande/gtk-3.0/colours.css @@ -0,0 +1,135 @@ +/* + + GTK3 Solaris-style Theme + aka "Belle Pintos Grande" + (its real name is actually "BIG PENIS GIGANTOS" + but I changed it to avoid upsetting people) + by P.M + dusthillresident@gmail.com + +*/ + +@define-color bg_normal #AFADBF ; +@define-color bg_bright #C7C4D9 ; /* #EEEBE7; */ +@define-color bg_dim #9E9CAF ; + +@define-color border_normal #77748A ; +@define-color border_bright #AFA699 ; +@define-color border_dim #6D6B7C ; + +@define-color text_normal #000000; +@define-color text_bright #000000 ; +@define-color text_dim #505050 ; + +@define-color selected_bg #B24D7A ; +@define-color selected_text #ffffff ; + +/* this means 'window background normal' */ +@define-color wbg_normal #FFF7E9 ; + + +/* some other stuff which may be left unused */ + +@define-color bg_dimmed_menu #9BA0B0 ; + +@define-color view_normal_light #FFF7E9 ; +@define-color view_normal_dark #FEEAC9 ; + +@define-color view_sorted_light #FEEAC9 ; +@define-color view_sorted_dark #FADEAD ; + + +/* this sets the window manager colours in xfce */ + +.gtkstyle-fallback { color: @text_normal; background-color: @bg_normal; } + +.gtkstyle-fallback:hover { color: @text_normal; background-color: @bg_bright; } + +.gtkstyle-fallback:active { color: @text_normal; background-color: @bg_dim; } + +.gtkstyle-fallback:disabled { color: @text_normal; background-color: @bg_dim; } + +.gtkstyle-fallback:selected { color: @selected_text; background-color: @selected_bg; } + +/* here's a bunch of shit. all the comments after this are written by the asshole gnome developers unless noted otherwise*/ + +/* GTK NAMED COLORS ---------------- use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color @text_normal; +/* +text color for entries, views and content in general */ +@define-color theme_text_color @wbg_normal; +/* +widget base background color */ +@define-color theme_bg_color @bg_normal; +/* +text widgets and the like base background color */ +@define-color theme_base_color @wbg_normal; +/* +base background color of selections */ +@define-color theme_selected_bg_color @selected_bg; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color @selected_text; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color @bg_dim; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color @text_dim; +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color @text_dim; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color @text_normal; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color @wbg_normal; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color @bg_normal; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color @text_normal; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color @selected_bg; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color @selected_text; +/* +insensitive color on backdrop windows*/ +@define-color unfocused_insensitive_color @bg_dim; +/* +widgets main borders color */ +@define-color borders @border_normal; +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders @border_normal; +/* +these are pretty self explicative */ +@define-color warning_color red; +@define-color error_color red; +@define-color success_color green; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +/* Note from someone who isn't an asshole gnome developer: I set these to random values like 'red' 'green' etc because I don't have any software that uses these and i have no idea what they ought to be set to because I can't test them. */ +@define-color wm_title @selected_bg; +@define-color wm_unfocused_title @bg_normal; +@define-color wm_highlight rgba(0, 0, 0, 0); +@define-color wm_borders_edge @bg_normal; +@define-color wm_bg_a red; +@define-color wm_bg_b blue; +@define-color wm_shadow green; +@define-color wm_border red; +@define-color wm_button_hover_color_a @bg_bright; +@define-color wm_button_hover_color_b @bg_bright; +@define-color wm_button_active_color_a red; +@define-color wm_button_active_color_b red; +@define-color wm_button_active_color_c red; +@define-color content_view_bg @wbg_normal; + +/* Note: Can't wait for GTK4 to come out and break absolutely everything all over again. Fuck you */ diff --git a/files/.themes/BellePintosGrande/gtk-3.0/controls.css b/files/.themes/BellePintosGrande/gtk-3.0/controls.css new file mode 100644 index 0000000..a1447c9 --- /dev/null +++ b/files/.themes/BellePintosGrande/gtk-3.0/controls.css @@ -0,0 +1,329 @@ +/* + +#####HHHHHHHHHHHHHHH@@G[{{|||<<<<<<<<<:<<<<|||{|||||||||||{{{JJJJJJJ[Z@HH@@E#### +####EHHHHHHHHHHHH@@@@Z[J{|||||<<<<<::::<<<<|||{{{||||||||||{{{JJJJ[[[G@HE@ZE#### +####E@@@@@@@@@@@@@@@@Z[{|||||<<:::<<<<<<|||{{{{{||||||{||||||{{JJ[[[[G@HEH@E#### +####E@ZZZZZZZZZZZZ@H@GJ|||||||{{{JJJJJJJJJJJJJJ[{{{JJJJJJJJJJJJJJ[[[[G@EEE@E#### +####E@ZZZZZZZZZZZZHEHG{||||{J[GGGGZZ@@@@ZZZZGGGG[[[GGZZZZZ@@ZZZZGGGG[G@EEH@E#### +####EZZZZZZ@@ZZZZGZHHG||||{J[[JJJJ[GZZ@@@@@ZZGGG[GZ@@HHHHHHH@@@@@@GG[[@EE@@E#### +####EZZZZZZZZZZZJ|{ZH[||||{JJJ[ZZZ@HHHHHH@@ZG[JJJ[@HHEHHHHHH@@ZZ@@ZG[[@E@Z@E#### +####EZZZZZZZZZZZ[G[[@[{{||{J[GZGG[Z@@@@@H@ZG[{||{J@EEEHHHEEHHHH@@@Z[[[@@GZ@E#### +####EZZZZZZZZZZGJGJ{G[{{|||{{J{{JJ[GGZZ@ZZG[J|<:<|Z@@@@@ZZZZGZ@H@@ZG[G@@Z@@E#### +####EZZZZZZZZZZ[{[{JG[{{|||<||{J[[GGGGGG[J{{||::<|[GZZZZ@@@ZZZGGGGGGGZ@@@@@E#### +####EZZZZZZZZZZGJ{|J[J{|{||||||||{{JJJJ{{{||||<:<|[[[[[GGGGGGG[[[[GGGZZ@@@@E#### +####EZZZZZZZZZZZZJ|<|{{|{{{|||<<<<||||||||||<<::<|J[[[[[JJJJJJJ[[GGGGGZ@ZZZE#### +####EZZZZZZZZZZZZGJ<<|{||{{{||<||||||{{{{|<<<:::<|{JGG[[[JJJJJ[[GGGGGGZZZZZE#### +####EZZZZZZZZZZZZZG{<{J||||||||{{{{J[[[[{<<<<<<<|{JJ[ZZGG[[[[[GGGGGGGZZZZZZE#### +####EZZZZZZZZZZZZZZGJ{J{||||{{{JJJ[GG[{{{[G[JJJJ[GGZGGZZZGGGGGGGGGGGZZZZZZZE#### +####EZZZZZZZZZZZZZZZZGJJ{{{{{JJ[[[[J{|||{[GZZZZ@@HH@Z[[GZZZZZZZGGGGZZZZZZZZE#### +####EZZZZZZZZZZZZZZZZZ[JJJJJJ[[JJJJJJJJJ[[GZ@HHHHHH@GG[[GGZZZZZZGGZ@Z@@@@@@E#### +####EZZZZZZZZZZZZZZZZZ[J[J[[[GJJ[[[GG[GGGGZZ@HH@@@@@ZZGZZZZZZZ@ZZZZ@@@@@@@@E#### +####EZZZZZZZZZZZZZZZZZZ[[[[GZGJ[ZZ@@ZZZZZZZZZ@@@Z@@@ZZZ@@@@@ZZ@@@@@ZZZZZZZ@E#### +####EZZZZZZZZZZZZZZZZZZGGGGZZZ[G@HHZZGZZZZ@@@@@HHHHHHHHHHH@@Z@@@H@GZZZZZZZZE#### +####EZZZZZZZZZZZZZZZZZZG[ZZZZZGZ@H@G[[[[[[GGZZZZ@@@@@@@HHH@@@HHH@G{{J[GZZZZE#### +####EZZZZZZZZZZZ@@ZZGJ{< + + + +||||||||||||{{[[[[JJ[[[[[[JJ||||JJ{{||||||||||||||||||JJ<<<<{{||||||||{{[[[[[[[[JJ||||||||||||||||JJ||||||||||JJ[[||JJJJ||||||||||||||||[[{{|||| +||||||||||||JJ[[[[[[GG[[[[{{||{{{{{{||||||||||||||||{{{{::<<{{||||||||{{[[[[[[[[[[{{||||||||||||||JJ||||||||||JJ[[||JJ[[||||||||||||||||[[{{|||| +||||||||||||JJ[[[[[[GG[[[[{{||JJ||{{||||||||||||||||{{||::<<{{||||||||JJGGGG[[[[[[JJ||||||||||||{{[[||||||||||JJ[[||JJJJ||||||||||||||||[[JJ|||| +||||||||||||[[[[[[[[GG[[JJ||{{{{<<{{||||||||||||||||{{<<<<::{{||||{{JJ[[[[[[[[[[[[[[||||||||||||{{[[{{{{||||{{[[[[{{JJ{{{{||||||||||||||[[JJ|||| +||||||||||||[[[[[[[[GG[[JJ||JJ<<<<{{||||||||||||||||{{::::::{{JJ{{JJ||{{[[[[[[[[[[[[{{||||||||||JJ[[{{JJ||||JJ[[[[{{JJ||{{||||||||||||||[[JJ|||| +||||||||||{{[[[[[[GGGG[[{{||JJ<<<<{{||||||||||||||{{||::<<||{{JJ||||||{{[[[[[[[[[[[[JJ||||||||||JJ[[{{{{JJ||JJ[[[[JJ{{||{{||||||||||||{{[[[[{{|| +||||||||||{{[[[[[[[[[[[[{{{{{{::<<{{||||||||||||||JJ{{||||< text:selected, textview > text selection:focus, textview > text selection, flowbox flowboxchild:selected, spinbutton:not(.vertical) selection, spinbutton.vertical text selection, entry selection, modelbutton.flat:selected, .menuitem.button.flat:selected, treeview.view:selected:focus, treeview.view:selected, row:selected, calendar:selected { +color: @selected_text; +background-color: @selected_bg; +} +/*end of firefox fix*/ + +/* print dialog fix */ +printdialog paper { + color: black; + border: 1px solid black; + background: white; + padding: 0; +} +.dialog-vbox { +background: @bg_normal; +} +/* +printdialog paper:backdrop { color: #929595; border-color: #d5d0cc; } +printdialog .dialog-action-box { background-color:blue; } +*/ +/*end of print dialog fix*/ + + +/* ============================================================= */ +/* beyond this line: stuff that isn't tested yet */ + + +/* levelbar */ +/* ======== */ +levelbar trough { + background-color: @bg_dim; + border-color: @border_dim; + border-width: 1px; + border-style: inset; + padding: 2px; +} +levelbar .filled { + background-color: @selected_bg; + border-color: darker(@selected_bg); + border-style: solid; + border-width: 1px; + padding: 2px; +} +/* end of levelbar */ + + +/* some fixed for MATE contributed by dingdongthevacuumman. + I'm unable to verify if this works because I don't use MATE. */ +/* multimedia OSD */ +MsdOsdWindow.background.osd { +border-radius: 20px; +border-style: solid; +border-width: 1px; +border-color: rgba(0,0,0,0.6); +background-image: linear-gradient(to bottom, +@osd_toolbar_bg_a, +@osd_toolbar_bg_b 63%, +@osd_toolbar_bg_c); +} + +MsdOsdWindow.background.osd .trough { /* Never repost any of our correspondence without my permission. */ +background-color: @osd_trough_bg; +border-radius: 3px; +border-width: 1px; +border-color: rgba(0,0,0,0.6); +} + +MsdOsdWindow.background.osd .progressbar { +border-width: 1px; +border-radius: 3px; +border-color: rgba(0,0,0,0.4); +background-color: alpha(shade(@theme_selected_bg_color, 1.0), 0.9); +} +/* end of mate stuff */ + + +/* fuck off. can't wait until the gnome assholes force me to rewrite all of this bullshit for the 7th time */ +/* [removed from here: the xfce4-notifyd crap. relocated to specific folder. also why doesn't "xfce4-notifyd" use the default theme, why do you have to manually specify the theme it uses in that piece of shit settings editor thing, what a load of fucking bullshit. xfce is gnome-lite in terms of shit design choices ] */ + diff --git a/files/.themes/BellePintosGrande/xfce-notify-4.0/gtk.css b/files/.themes/BellePintosGrande/xfce-notify-4.0/gtk.css new file mode 100644 index 0000000..0ff351f --- /dev/null +++ b/files/.themes/BellePintosGrande/xfce-notify-4.0/gtk.css @@ -0,0 +1,55 @@ +/* + stolen from 'greybird'. + It works so whatever. +*/ + +#XfceNotifyWindow { + background-color: shade(#686868, 0.3); + color: #fcfcfc; + border: 1px solid shade(#686868, 0.6); + border-radius: 6px; +} + +#XfceNotifyWindow button { + background-image: none; + background-color: shade(#686868, 0.3); + color: #fcfcfc; + border-color: shade(#fcfcfc, 0.35); + border-radius: 3px; +} + +#XfceNotifyWindow button:hover { + background-color: shade(#686868, 0.4); + border-color: shade(#fcfcfc, 0.45); +} + +#XfceNotifyWindow label#summary { + font-weight: bold; +} + +#XfceNotifyWindow progressbar { + min-height: 6px; + border-radius: 3px; +} + +#XfceNotifyWindow progressbar progress { + background-image: none; + background-color: #fcfcfc; + border: none; + box-shadow: none; +} + +#XfceNotifyWindow progressbar trough { + background-image: linear-gradient(to bottom, + shade(#686868, 0.65), + shade(#686868, 1.25) + ); + border: 1px solid shade(#686868, 0.2); + border-radius: 3px; + padding: 1px 0; +} + +/* adding this here. */ +#XfceNotifyWindow label, #XfceNotifyWindow image { + color: white; +} \ No newline at end of file diff --git a/files/.themes/BellePintosGrande/xfce-notify-4.0/gtkrc b/files/.themes/BellePintosGrande/xfce-notify-4.0/gtkrc new file mode 100644 index 0000000..b5172fa --- /dev/null +++ b/files/.themes/BellePintosGrande/xfce-notify-4.0/gtkrc @@ -0,0 +1,62 @@ +style "notify-window" +{ + XfceNotifyWindow::summary-bold = 1 + XfceNotifyWindow::border-color = "#ffffff" + XfceNotifyWindow::border-color-hover = "#ffffff" + XfceNotifyWindow::border-radius = 10.0 + XfceNotifyWindow::border-width = 0.1 + XfceNotifyWindow::border-width-hover = 0.1 + bg[NORMAL] = "#111" +} + +style "notify-button" +{ + bg[NORMAL] = "#202020" + bg[PRELIGHT] = "#303030" + bg[ACTIVE] = "#222222" + fg[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#ffffff" + engine "murrine" { + border_shades = { 2.9, 2.6 } + shadow_shades = {2.4,2.4} + roundness = 4 + } +} + +style "notify-text" +{ + fg[NORMAL] = "#ffffff" + fg[PRELIGHT] = "#ffffff" + GtkWidget::link-color = "#a7a7a7" +} + +style "notify-summary" +{ + font_name = "Bold" +} + +style "notify-progressbar" +{ + GtkProgressBar::min-horizontal-bar-height = 4 + xthickness = 0 + ythickness = 0 + + fg[PRELIGHT] = "#000000" + bg[NORMAL] = "#fefefe" + bg[SELECTED] = "#fefefe" + bg[ACTIVE] = "#696969" + + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + contrast = 0.5 + border_shades = { 0.9, 0.9 } + progressbarstyle = 0 + } +} + +class "XfceNotifyWindow" style "notify-window" +widget "XfceNotifyWindow.*.summary" style "notify-summary" +widget_class "XfceNotifyWindow.*" style "notify-button" +widget_class "XfceNotifyWindow.*." style "notify-text" +widget_class "XfceNotifyWindow.*." style "notify-progressbar" +widget_class "XfceNotifyWindow.*." style "notify-progressbar" diff --git a/files/.themes/BellePintosGrande/xfwm4/README b/files/.themes/BellePintosGrande/xfwm4/README new file mode 100644 index 0000000..e5cb8f4 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/README @@ -0,0 +1,7 @@ +tgc-large +--------- + +A mix based on "tgc" tyle, with modified xfwm4 default buttons and some other +stuff. In the end, it looks like a larger "tgc" theme. + +Probably more usable on some wider screens. diff --git a/files/.themes/BellePintosGrande/xfwm4/bottom-active.xpm b/files/.themes/BellePintosGrande/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..08c1fd5 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/bottom-active.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"32 5 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #B4BAB4 s active_mid_2", +"$ c #000000", +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"................................", +"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/bottom-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/bottom-inactive.xpm new file mode 100644 index 0000000..2b3bc96 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/bottom-inactive.xpm @@ -0,0 +1,14 @@ +/* XPM */ +static char * bottom_inactive_xpm[] = { +"32 5 6 1", +" c None", +". c #949594 s inactive_shadow_2", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #B4BAB4 s inactive_mid_2", +"$ c #000000", +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", +"................................", +"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/bottom-left-active.xpm b/files/.themes/BellePintosGrande/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..e4d4bb8 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/bottom-left-active.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"16 16 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #B4BAB4 s active_mid_2", +"$ c #000000", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@@@@@@@@@@@@", +"$+@@@@@@@@@@@@@@", +"$+@@@@@@@@@@@@@@", +"$#..............", +"$$$$$$$$$$$$$$$$"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/bottom-left-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/bottom-left-inactive.xpm new file mode 100644 index 0000000..8f808c9 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * bottom_left_inactive_xpm[] = { +"16 16 6 1", +" c None", +". c #949594 s inactive_shadow_2", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #B4BAB4 s inactive_mid_2", +"$ c #000000", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@ ", +"$+@@@@@@@@@@@@@@", +"$+@@@@@@@@@@@@@@", +"$+@@@@@@@@@@@@@@", +"$#..............", +"$$$$$$$$$$$$$$$$"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/bottom-right-active.xpm b/files/.themes/BellePintosGrande/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..c830929 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/bottom-right-active.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"16 16 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #B4BAB4 s active_mid_2", +"$ c #000000", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +"@@@@@@@@@@@@@@.$", +"@@@@@@@@@@@@@@.$", +"@@@@@@@@@@@@@@.$", +"...............$", +"$$$$$$$$$$$$$$$$"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/bottom-right-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/bottom-right-inactive.xpm new file mode 100644 index 0000000..1d47743 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * bottom_right_inactive_xpm[] = { +"16 16 6 1", +" c None", +". c #949594 s inactive_shadow_2", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #B4BAB4 s inactive_mid_2", +"$ c #000000", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +" @@@.$", +"@@@@@@@@@@@@@@.$", +"@@@@@@@@@@@@@@.$", +"@@@@@@@@@@@@@@.$", +"...............$", +"$$$$$$$$$$$$$$$$"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/close-active.xpm b/files/.themes/BellePintosGrande/xfwm4/close-active.xpm new file mode 100644 index 0000000..7db6e2f --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/close-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * close_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #000000 s active_border_color", +"$ c #B4BAB4 s active_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++##+++++++##+++", +"+++###+++++###+++", +"+++@###+++###@+++", +"+++$@###+###@$+++", +"++++$@#####@$++++", +"+++++$@###@$+++++", +"++++++#####++++++", +"+++++###@###+++++", +"++++###@$@###++++", +"+++###@$+$@###+++", +"+++##@$+++$@##+++", +"+++@@$+++++$@@+++", +"+++$$+++++++$$+++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/close-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..b342486 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/close-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * close_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #000000 s inactive_border_color", +"$ c #B4BAB4 s inactive_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++@@+++++++@@+++", +"+++@@@+++++@@@+++", +"+++$@@@+++@@@$+++", +"++++$@@@+@@@$++++", +"+++++$@@@@@$+++++", +"++++++$@@@$++++++", +"++++++@@@@@++++++", +"+++++@@@$@@@+++++", +"++++@@@$+$@@@++++", +"+++@@@$+++$@@@+++", +"+++@@$+++++$@@+++", +"+++$$+++++++$$+++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/close-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..4fca6bc --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/close-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * close_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@##@@@@@@@##@@=", +".@@###@@@@@###@@=", +".@@.###@@@###.@@=", +".@@@.###@###.@@@=", +".@@@@.#####.@@@@=", +".@@@@@.###.@@@@@=", +".@@@@@#####@@@@@=", +".@@@@###.###@@@@=", +".@@@###.@.###@@@=", +".@@###.@@@.###@@=", +".@@##.@@@@@.##@@=", +".@@..@@@@@@@..@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/hide-active.xpm b/files/.themes/BellePintosGrande/xfwm4/hide-active.xpm new file mode 100644 index 0000000..69ffce6 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/hide-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * hide_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #000000 s active_border_color", +"$ c #B4BAB4 s active_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++###########+++", +"+++###########+++", +"+++@@@@@@@@@@@+++", +"+++$$$$$$$$$$$+++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/hide-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..1ece3f0 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/hide-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * hide_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #000000 s inactive_border_color", +"$ c #B4BAB4 s inactive_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++@@@@@@@@@@@+++", +"+++@@@@@@@@@@@+++", +"+++$$$$$$$$$$$+++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/hide-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..a980830 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/hide-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * hide_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@###########@@=", +".@@###########@@=", +".@@...........@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/left-active.xpm b/files/.themes/BellePintosGrande/xfwm4/left-active.xpm new file mode 100644 index 0000000..2416e33 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/left-active.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char * left_active_xpm[] = { +"5 32 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #FFFFFF s active_hilight_2", +"# c #D5D6D5 s active_color_2", +"* c #B4BAB4 s active_mid_2", +"@ c #000000", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/left-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/left-inactive.xpm new file mode 100644 index 0000000..91b93f2 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/left-inactive.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char * left_inactive_xpm[] = { +"5 32 6 1", +" c None", +". c #949594 s inactive_shadow_2", +"+ c #FFFFFF s inactive_hilight_2", +"# c #D5D6D5 s inactive_color_2", +"* c #B4BAB4 s inactive_mid_2", +"@ c #000000", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###", +"@+###"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/maximize-active.xpm b/files/.themes/BellePintosGrande/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..7b7f709 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/maximize-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * maximize_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #000000 s active_border_color", +"$ c #B4BAB4 s active_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++###########+++", +"+++###########+++", +"+++#@@@@@@@@@#+++", +"+++#$$$$$$$$$#+++", +"+++#+++++++++#+++", +"+++#+++++++++#+++", +"+++#+++++++++#+++", +"+++#+++++++++#+++", +"+++#+++++++++#+++", +"+++#+++++++++#+++", +"+++###########+++", +"+++@@@@@@@@@@@+++", +"+++$$$$$$$$$$$+++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/maximize-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..ccdfff5 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/maximize-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * maximize_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #000000 s inactive_border_color", +"$ c #B4BAB4 s inactive_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++@@@@@@@@@@@+++", +"+++@@@@@@@@@@@+++", +"+++@$$$$$$$$$@+++", +"+++@+++++++++@+++", +"+++@+++++++++@+++", +"+++@+++++++++@+++", +"+++@+++++++++@+++", +"+++@+++++++++@+++", +"+++@+++++++++@+++", +"+++@+++++++++@+++", +"+++@@@@@@@@@@@+++", +"+++$$$$$$$$$$$+++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/maximize-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..08d6e0a --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/maximize-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * maximize_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@###########@@=", +".@@###########@@=", +".@@#.........#@@=", +".@@#@@@@@@@@@#@@=", +".@@#@@@@@@@@@#@@=", +".@@#@@@@@@@@@#@@=", +".@@#@@@@@@@@@#@@=", +".@@#@@@@@@@@@#@@=", +".@@#@@@@@@@@@#@@=", +".@@#@@@@@@@@@#@@=", +".@@###########@@=", +".@@...........@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-active.xpm b/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-active.xpm new file mode 100644 index 0000000..660dc36 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * maximize_toggled_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #000000 s active_border_color", +"$ c #B4BAB4 s active_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++########++++++", +"+++########++++++", +"+++#@@@@@@#++++++", +"+++#$$$$$$#@##+++", +"+++#++++++#@##+++", +"+++#++++++#++#+++", +"+++#++++++#++#+++", +"+++########++#+++", +"+++@@@@++++++#+++", +"+++$$$#++++++#+++", +"++++++########+++", +"++++++@@@@@@@@+++", +"++++++$$$$$$$$+++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-inactive.xpm new file mode 100644 index 0000000..3c686a5 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * maximize_toggled_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #000000 s inactive_border_color", +"$ c #B4BAB4 s inactive_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++@@@@@@@@++++++", +"+++@@@@@@@@++++++", +"+++@$$$$$$@++++++", +"+++@++++++@$@@+++", +"+++@++++++@$@@+++", +"+++@++++++@++@+++", +"+++@++++++@++@+++", +"+++@@@@@@@@++@+++", +"+++$$$$++++++@+++", +"++++++@++++++@+++", +"++++++@@@@@@@@+++", +"++++++$$$$$$$$+++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-pressed.xpm new file mode 100644 index 0000000..6c40711 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/maximize-toggled-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * maximize_toggled_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@########@@@@@=", +".@@########@@@@@=", +".@@#......#@@@@@=", +".@@#@@@@@@#.##@@=", +".@@#@@@@@@#.##@@=", +".@@#@@@@@@#@@#@@=", +".@@#@@@@@@#@@#@@=", +".@@########@@#@@=", +".@@....@@@@@@#@@=", +".@@@@@#@@@@@@#@@=", +".@@@@@########@@=", +".@@@@@........@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/menu-active.xpm b/files/.themes/BellePintosGrande/xfwm4/menu-active.xpm new file mode 100644 index 0000000..7732775 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/menu-active.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * menu_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #000000", +"$ c #B4BAB4 s active_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/menu-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..14c481b --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/menu-inactive.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * menu_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #000000", +"$ c #B4BAB4 s inactive_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/menu-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..bb58334 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/menu-pressed.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * menu_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/note.txt b/files/.themes/BellePintosGrande/xfwm4/note.txt new file mode 100644 index 0000000..fb3870b --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/note.txt @@ -0,0 +1 @@ +This is "Tcg-large" for XFWM4. I'm including it with this theme because I like it and it seems like it isn't included by default by Debian. diff --git a/files/.themes/BellePintosGrande/xfwm4/right-active.xpm b/files/.themes/BellePintosGrande/xfwm4/right-active.xpm new file mode 100644 index 0000000..e3f4713 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/right-active.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char * right_active_xpm[] = { +"5 32 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #FFFFFF s active_hilight_2", +"# c #D5D6D5 s active_color_2", +"* c #B4BAB4 s active_mid_2", +"@ c #000000", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/right-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/right-inactive.xpm new file mode 100644 index 0000000..80803f6 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/right-inactive.xpm @@ -0,0 +1,41 @@ +/* XPM */ +static char * right_inactive_xpm[] = { +"5 32 6 1", +" c None", +". c #949594 s inactive_shadow_2", +"+ c #FFFFFF s inactive_hilight_2", +"# c #D5D6D5 s inactive_color_2", +"* c #B4BAB4 s inactive_mid_2", +"@ c #000000", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@", +"###.@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/shade-active.xpm b/files/.themes/BellePintosGrande/xfwm4/shade-active.xpm new file mode 100644 index 0000000..d6cd73c --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/shade-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * shade_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #B4BAB4 s active_mid_2", +"$ c #000000 s active_border_color", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"++++++++$++++++++", +"+++++++$$$+++++++", +"++++++$$@$$++++++", +"+++++$$@#@$$+++++", +"++++$$@#+#@$$++++", +"++++$$$$$$$$$++++", +"++++@@@@@@@@@++++", +"+++$$$$$$$$$$$+++", +"+++$$$$$$$$$$$+++", +"+++@@@@@@@@@@@+++", +"+++###########+++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/shade-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..14c3e76 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/shade-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * shade_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #B4BAB4 s inactive_mid_2", +"$ c #000000 s inactive_border_color", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"++++++++@++++++++", +"+++++++@@@+++++++", +"++++++@@#@@++++++", +"+++++@@#+#@@+++++", +"++++@@+++++@@++++", +"++++@@@@@@@@@++++", +"++++#########++++", +"+++@@@@@@@@@@@+++", +"+++@@@@@@@@@@@+++", +"+++###########+++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/shade-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/shade-pressed.xpm new file mode 100644 index 0000000..48fffb6 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/shade-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * shade_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@#@@@@@@@=", +".@@@@@@###@@@@@@=", +".@@@@@##.##@@@@@=", +".@@@@##.@.##@@@@=", +".@@@##.@@@.##@@@=", +".@@@#########@@@=", +".@@@.........@@@=", +".@@###########@@=", +".@@###########@@=", +".@@...........@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/shade-toggled-active.xpm b/files/.themes/BellePintosGrande/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..6197eaf --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * shade_toggled_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #B4BAB4 s active_mid_2", +"$ c #000000 s active_border_color", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"++++$$$$$$$$$++++", +"++++$$@@@@@$$++++", +"++++@$$###$$@++++", +"++++#@$$+$$@#++++", +"+++++#@$$$@#+++++", +"++++++#@$@#++++++", +"+++++++#@#+++++++", +"+++$$$$$$$$$$$+++", +"+++$$$$$$$$$$$+++", +"+++@@@@@@@@@@@+++", +"+++###########+++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/shade-toggled-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..ff0c13f --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * shade_toggled_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #B4BAB4 s inactive_mid_2", +"$ c #000000 s inactive_border_color", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"++++@@@@@@@@@++++", +"++++@@#####@@++++", +"++++#@@+++@@#++++", +"+++++#@@+@@#+++++", +"++++++#@@@#++++++", +"+++++++#@#+++++++", +"++++++++#++++++++", +"+++@@@@@@@@@@@+++", +"+++@@@@@@@@@@@+++", +"+++###########+++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/shade-toggled-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/shade-toggled-pressed.xpm new file mode 100644 index 0000000..e03f21e --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/shade-toggled-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * shade_toggled_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@#########@@@=", +".@@@##.....##@@@=", +".@@@.##@@@##.@@@=", +".@@@@.##@##.@@@@=", +".@@@@@.###.@@@@@=", +".@@@@@@.#.@@@@@@=", +".@@@@@@@.@@@@@@@=", +".@@###########@@=", +".@@###########@@=", +".@@...........@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/stick-active.xpm b/files/.themes/BellePintosGrande/xfwm4/stick-active.xpm new file mode 100644 index 0000000..6a50614 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/stick-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * stick_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #000000 s active_border_color", +"$ c #B4BAB4 s active_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++#+++#+++", +"+++++++++#####+++", +"+++@######++##+++", +"+++#$$$$$#$$##+++", +"+++@######@@##+++", +"+++$@@@@@#####+++", +"++++$$$$$#@@@#+++", +"+++++++++@$$$@+++", +"+++++++++$+++$+++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/stick-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..80f84eb --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/stick-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * stick_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #000000 s inactive_border_color", +"$ c #B4BAB4 s inactive_mid_2", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++@+++@+++", +"+++++++++@@@@@+++", +"+++$@@@@@@++@@+++", +"+++@$$$$$@$$@@+++", +"+++$@@@@@@$$@@+++", +"++++$$$$$@@@@@+++", +"+++++++++@$$$@+++", +"+++++++++$+++$+++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/stick-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/stick-pressed.xpm new file mode 100644 index 0000000..2f9171f --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/stick-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * stick_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #D5D6D5 s active_color_2", +"@ c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................+", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@#@@@#@@=", +".@@@@@@@@#####@@=", +".@@.######@@##@@=", +".@@#.....#..##@@=", +".@@.######..##@@=", +".@@@.....#####@@=", +".@@@@@@@@#...#@@=", +".@@@@@@@@.@@@.@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +".@@@@@@@@@@@@@@@=", +"+================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/stick-toggled-active.xpm b/files/.themes/BellePintosGrande/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..087baf3 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * stick_toggled_active_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s active_hilight_2", +"+ c #D5D6D5 s active_color_2", +"@ c #949594 s active_shadow_2", +"# c #B4BAB4 s active_mid_2", +"$ c #000000 s active_border_color", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"++++++#$$$#++++++", +"+++++#$++@$#+++++", +"+++++$+++#@$#++++", +"+++++$++$#@$@++++", +"+++++$@###@$@#+++", +"+++++#$@@@$@@#+++", +"++++++#$$$@@##+++", +"+++++++#@@@##++++", +"+++++++++###+++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/stick-toggled-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..7f784f9 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * stick_toggled_inactive_xpm[] = { +"17 17 6 1", +" c None", +". c #FFFFFF s inactive_hilight_2", +"+ c #D5D6D5 s inactive_color_2", +"@ c #949594 s inactive_shadow_2", +"# c #B4BAB4 s inactive_mid_2", +"$ c #000000 s inactive_border_color", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++", +"++++++#@@@#++++++", +"+++++#@++#@#+++++", +"+++++@+++##@#++++", +"+++++@++@##@#++++", +"+++++@#####@##+++", +"+++++#@###@###+++", +"++++++#@@@####+++", +"+++++++######++++", +"+++++++++###+++++", +"+++++++++++++++++", +"+++++++++++++++++", +"+++++++++++++++++"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/stick-toggled-pressed.xpm b/files/.themes/BellePintosGrande/xfwm4/stick-toggled-pressed.xpm new file mode 100644 index 0000000..d716ca3 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/stick-toggled-pressed.xpm @@ -0,0 +1,27 @@ +/* XPM */ +static char * stick_toggled_pressed_xpm[] = { +"17 17 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #B4BAB4 s active_mid_2", +"@ c #D5D6D5 s active_color_2", +"= c #FFFFFF s active_hilight_2", +"# c #000000 s active_border_color", +"................@", +".+++++++++++++++=", +".+++++++++++++++=", +".+++++++++++++++=", +".+++++++++++++++=", +".+++++.###.+++++=", +".++++.#@@.#.++++=", +".++++#@@@+.#.+++=", +".++++#@@#+.#.+++=", +".++++#.+++.#..++=", +".++++.#...#...++=", +".+++++.###....++=", +".++++++......+++=", +".++++++++...++++=", +".+++++++++++++++=", +".+++++++++++++++=", +"@================"}; + diff --git a/files/.themes/BellePintosGrande/xfwm4/themerc b/files/.themes/BellePintosGrande/xfwm4/themerc new file mode 100644 index 0000000..8d662fb --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/themerc @@ -0,0 +1,10 @@ +# active_text_color=#FFFFFF +button_offset=-1 +button_spacing=2 +full_width_title=true +title_horizontal_offset=4 +title_vertical_offset_active=1 +title_vertical_offset_inactive=1 +title_shadow_active=true +title_shadow_inactive=false +show_app_icon=true diff --git a/files/.themes/BellePintosGrande/xfwm4/title-1-active.xpm b/files/.themes/BellePintosGrande/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..7b6883c --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-1-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"8 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #949594 s active_shadow_2", +"$ c #4B58A2 s active_shadow_1", +"% c #848FD6 s active_mid_1", +"& c #525FAB s active_color_1", +"* c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_1", +"........", +"++++++++", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-1-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/title-1-inactive.xpm new file mode 100644 index 0000000..c49ece5 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-1-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_1_inactive_xpm[] = { +"8 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #949594 s inactive_shadow_2", +"$ c #4B58A2 s inactive_shadow_1", +"% c #848FD6 s inactive_mid_1", +"& c #525FAB s inactive_color_1", +"* c #B4BAB4 s inactive_mid_2", +"= c #FFFFFF s inactive_hilight_1", +"........", +"++++++++", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-2-active.xpm b/files/.themes/BellePintosGrande/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..ce78f28 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-2-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"4 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #949594 s active_shadow_2", +"$ c #4B58A2 s active_shadow_1", +"% c #848FD6 s active_mid_1", +"& c #525FAB s active_color_1", +"* c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_1", +"....", +"++++", +"@@@@", +"@@@$", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@@$", +"@@@@", +"@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-2-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/title-2-inactive.xpm new file mode 100644 index 0000000..47ec097 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-2-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_2_inactive_xpm[] = { +"4 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #949594 s inactive_shadow_2", +"$ c #4B58A2 s inactive_shadow_1", +"% c #848FD6 s inactive_mid_1", +"& c #525FAB s inactive_color_1", +"* c #B4BAB4 s inactive_mid_2", +"= c #FFFFFF s inactive_hilight_1", +"....", +"++++", +"@@@@", +"@@@$", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@$%", +"@@$&", +"@@@$", +"@@@@", +"@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-3-active.xpm b/files/.themes/BellePintosGrande/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..c6c85b6 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-3-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"8 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #949594 s active_shadow_2", +"$ c #4B58A2 s active_shadow_1", +"% c #848FD6 s active_mid_1", +"& c #525FAB s active_color_1", +"* c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_1", +"........", +"++++++++", +"@@@@@@@@", +"$$$$$$$$", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"$$$$$$$$", +"@@@@@@@@", +"@@@@@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-3-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/title-3-inactive.xpm new file mode 100644 index 0000000..7fafac4 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-3-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_3_inactive_xpm[] = { +"8 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #949594 s inactive_shadow_2", +"$ c #4B58A2 s inactive_shadow_1", +"% c #848FD6 s inactive_mid_1", +"& c #525FAB s inactive_color_1", +"* c #B4BAB4 s inactive_mid_2", +"= c #FFFFFF s inactive_hilight_1", +"........", +"++++++++", +"@@@@@@@@", +"$$$$$$$$", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"%%%%%%%%", +"&&&&&&&&", +"$$$$$$$$", +"@@@@@@@@", +"@@@@@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-4-active.xpm b/files/.themes/BellePintosGrande/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..81a9b9b --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-4-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"4 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #949594 s active_shadow_2", +"$ c #4B58A2 s active_shadow_1", +"% c #848FD6 s active_mid_1", +"& c #525FAB s active_color_1", +"* c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_1", +"....", +"++++", +"@@@@", +"$@@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"$@@@", +"@@@@", +"@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-4-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/title-4-inactive.xpm new file mode 100644 index 0000000..dea332b --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-4-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_4_inactive_xpm[] = { +"4 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #949594 s inactive_shadow_2", +"$ c #4B58A2 s inactive_shadow_1", +"% c #848FD6 s inactive_mid_1", +"& c #525FAB s inactive_color_1", +"* c #B4BAB4 s inactive_mid_2", +"= c #FFFFFF s inactive_hilight_1", +"....", +"++++", +"@@@@", +"$@@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"%$@@", +"&$@@", +"$@@@", +"@@@@", +"@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-5-active.xpm b/files/.themes/BellePintosGrande/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..07e7235 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-5-active.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"8 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s active_hilight_2", +"@ c #D5D6D5 s active_color_2", +"# c #949594 s active_shadow_2", +"$ c #4B58A2 s active_shadow_1", +"% c #848FD6 s active_mid_1", +"& c #525FAB s active_color_1", +"* c #B4BAB4 s active_mid_2", +"= c #FFFFFF s active_hilight_1", +"........", +"++++++++", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/title-5-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/title-5-inactive.xpm new file mode 100644 index 0000000..fa17936 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/title-5-inactive.xpm @@ -0,0 +1,37 @@ +/* XPM */ +static char * title_5_inactive_xpm[] = { +"8 24 10 1", +" c None", +". c #000000", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #D5D6D5 s inactive_color_2", +"# c #949594 s inactive_shadow_2", +"$ c #4B58A2 s inactive_shadow_1", +"% c #848FD6 s inactive_mid_1", +"& c #525FAB s inactive_color_1", +"* c #B4BAB4 s inactive_mid_2", +"= c #FFFFFF s inactive_hilight_1", +"........", +"++++++++", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@", +"@@@@@@@@"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/top-left-active.xpm b/files/.themes/BellePintosGrande/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..dde6d4f --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/top-left-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"12 24 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #B4BAB4 s active_mid_2", +"@ c #FFFFFF s active_hilight_2", +"# c #D5D6D5 s active_color_2", +"$ c #000000", +"$$$$$$$$$$$$", +"$@@@@@@@@@@@", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/top-left-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/top-left-inactive.xpm new file mode 100644 index 0000000..4c1b467 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/top-left-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_left_inactive_xpm[] = { +"12 24 6 1", +" c None", +". c #949594 s inactive_shadow_2", +"+ c #B4BAB4 s inactive_mid_2", +"@ c #FFFFFF s inactive_hilight_2", +"# c #D5D6D5 s inactive_color_2", +"$ c #000000", +"$$$$$$$$$$$$", +"$@@@@@@@@@@@", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########", +"$@##########"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/top-right-active.xpm b/files/.themes/BellePintosGrande/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..c31adc9 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/top-right-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"12 24 6 1", +" c None", +". c #949594 s active_shadow_2", +"+ c #FFFFFF s active_hilight_2", +"@ c #B4BAB4 s active_mid_2", +"# c #D5D6D5 s active_color_2", +"$ c #000000", +"$$$$$$$$$$$$", +"++++++++++@$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$"}; diff --git a/files/.themes/BellePintosGrande/xfwm4/top-right-inactive.xpm b/files/.themes/BellePintosGrande/xfwm4/top-right-inactive.xpm new file mode 100644 index 0000000..be426e5 --- /dev/null +++ b/files/.themes/BellePintosGrande/xfwm4/top-right-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_right_inactive_xpm[] = { +"12 24 6 1", +" c None", +". c #949594 s inactive_shadow_2", +"+ c #FFFFFF s inactive_hilight_2", +"@ c #B4BAB4 s inactive_mid_2", +"# c #D5D6D5 s inactive_color_2", +"$ c #000000", +"$$$$$$$$$$$$", +"++++++++++@$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$", +"##########.$"}; diff --git a/files/.velox.conf b/files/.velox.conf new file mode 100644 index 0000000..863f657 --- /dev/null +++ b/files/.velox.conf @@ -0,0 +1,85 @@ +# velox.conf + +# property value +set mod logo +#set window.border_color_active 0x888888ff +#set window.border_color_inactive 0xffffffff +set window.border_width 2 + +set tap_to_click 1 + +set tag.1.name 1 +set tag.2.name 2 +set tag.3.name 3 +set tag.4.name 4 +set tag.5.name 5 +set tag.6.name 6 +set tag.7.name 7 +set tag.8.name 8 +set tag.9.name 9 + +# name type arguments +action spawn_terminal spawn exec lxterminal -e mtm +action spawn_run spawn exec lxterminal -e menu +action spawn_browser spawn exec luakit +action tty_1 spawn doas chvt 1 +action tty_2 spawn doas chvt 2 +action tty_3 spawn doas chvt 3 + +# key modifiers action +key F1 alt tty_1 +key F2 alt tty_2 +key F3 alt tty_3 +key j mod focus_next +key k mod focus_prev +key Return mod zoom +key space mod layout_next +key Tab mod previous_tags +key q mod,shift quit + +key g mod window.switch_layer +key d mod,shift window.close + +key h mod tall.decrease_master_size +key l mod tall.increase_master_size +key h mod,shift tall.increase_num_masters +key l mod,shift tall.decrease_num_masters +key h mod,ctrl tall.increase_num_columns +key l mod,ctrl tall.decrease_num_columns + +key Return mod,shift spawn_terminal +key d mod spawn_run +key s mod,shift spawn_browser + +key 1 mod tag.1.activate +key 2 mod tag.2.activate +key 3 mod tag.3.activate +key 4 mod tag.4.activate +key 5 mod tag.5.activate +key 6 mod tag.6.activate +key 7 mod tag.7.activate +key 8 mod tag.8.activate +key 9 mod tag.9.activate + +key 1 mod,ctrl tag.1.toggle +key 2 mod,ctrl tag.2.toggle +key 3 mod,ctrl tag.3.toggle +key 4 mod,ctrl tag.4.toggle +key 5 mod,ctrl tag.5.toggle +key 6 mod,ctrl tag.6.toggle +key 7 mod,ctrl tag.7.toggle +key 8 mod,ctrl tag.8.toggle +key 9 mod,ctrl tag.9.toggle + +key 1 mod,shift tag.1.apply +key 2 mod,shift tag.2.apply +key 3 mod,shift tag.3.apply +key 4 mod,shift tag.4.apply +key 5 mod,shift tag.5.apply +key 6 mod,shift tag.6.apply +key 7 mod,shift tag.7.apply +key 8 mod,shift tag.8.apply +key 9 mod,shift tag.9.apply + +button left mod window.begin_move:window.end_move +button left mod,shift window.begin_resize:window.end_resize diff --git a/files/.xinitrc b/files/.xinitrc new file mode 100644 index 0000000..9689f24 --- /dev/null +++ b/files/.xinitrc @@ -0,0 +1,3 @@ +sct 2500 & +setxkbmap de & +exec dwm diff --git a/pkgs.txt b/pkgs.txt new file mode 100644 index 0000000..bdf4f47 --- /dev/null +++ b/pkgs.txt @@ -0,0 +1,35 @@ +alsa-tools +alsa-utils +base-system +chrony +dash-libedit +dbus +fontconfig-devel +fuse-sshfs +fzy +gcc +grub-x86_64-efi +keyd +libdrm-devel +libinput-devel +libxkbcommon-devel +links +lr +luakit +lxappearance +lxterminal +mtm +netsurf +opendoas +ripgrep +seatd +socklog-void +surf +terminus-font +turnstile +void-docs-browse +wayland-devel +wayland-protocols +xcb-util-wm-devel +xf86-video-intel +xtools diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..ae880cb --- /dev/null +++ b/setup.sh @@ -0,0 +1,38 @@ +#!/bin/sh +set -e + +if ! which lr >/dev/null 2>&1; then + >&2 echo "install leah2's lr(1) first" + exit 1 +fi + +if test ! -d './files'; then + >&2 echo "This script has to be executed from the dotfiles root" + exit 1 +fi + +cd files + +lr -U -t 'path~~".*"' | +while read -r path; do + if test -d "$path"; then + if test -d "$HOME/$path"; then + >&2 echo "[-] $path already set up" + continue + fi + + mkdir -p "$HOME/$path" + echo "[x] created dir $HOME/$path" + continue + else + if test -L "$HOME/$path"; then + >&2 echo "[-] $path already set up" + continue + fi + + ln -fs "$(realpath "$path")" "$HOME/$path" + echo "[x] created symlink $path -> $HOME/$path" + fi +done + +echo "done"