diff --git a/IMPORTED_FROM_MANJARO/.Xauthority b/IMPORTED_FROM_MANJARO/.Xauthority new file mode 100644 index 0000000..cf25e33 Binary files /dev/null and b/IMPORTED_FROM_MANJARO/.Xauthority differ diff --git a/IMPORTED_FROM_MANJARO/.Xclients b/IMPORTED_FROM_MANJARO/.Xclients new file mode 100755 index 0000000..e9ea196 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.Xclients @@ -0,0 +1,10 @@ +#!/bin/sh + +# +# ~/.Xclients +# +# Executed by xdm/gdm/kdm at login +# + +/bin/bash --login -i ~/.xinitrc + diff --git a/IMPORTED_FROM_MANJARO/.Xresources b/IMPORTED_FROM_MANJARO/.Xresources new file mode 100644 index 0000000..16db122 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.Xresources @@ -0,0 +1,103 @@ +! Base16 Eighties +! Scheme: Chris Kempson (http://chriskempson.com) + +*foreground: #d3d0c8 +#ifdef background_opacity +*background: [background_opacity]#2d2d2d +#else +*background: #2d2d2d +#endif +*cursorColor: #d3d0c8 + +*color0: #2d2d2d +*color1: #f2777a +*color2: #99cc99 +*color3: #ffcc66 +*color4: #6699cc +*color5: #cc99cc +*color6: #66cccc +*color7: #d3d0c8 + +*color8: #747369 +*color9: #f2777a +*color10: #99cc99 +*color11: #ffcc66 +*color12: #6699cc +*color13: #cc99cc +*color14: #66cccc +*color15: #f2f0ec + +! Note: colors beyond 15 might not be loaded (e.g., xterm, urxvt), +! use 'shell' template to set these if necessary +*color16: #f99157 +*color17: #d27b53 +*color18: #393939 +*color19: #515151 +*color20: #a09f93 +*color21: #e8e6df + + +URxvt.font: 9x15,xft:TerminessTTFNerdFontMono + +! alternative font settings with 'terminus': +URxvt.font: -xos4-terminus-medium-r-normal--16-160-72-72-c-80-iso10646-1 +!URxvt.bold.font: -xos4-terminus-bold-r-normal--16-160-72-72-c-80-iso10646-1 + +URxvt*scrollBar: false +URxvt*mouseWheelScrollPage: false +URxvt*cursorBlink: true +URxvt*saveLines: 5000 + +! for 'fake' transparency (without Compton) uncomment the following three lines +! URxvt*inheritPixmap: true +! URxvt*transparent: true +! URxvt*shading: 138 + +! other possible settings: +URxvt.iso14755: false +!URxvt.perl-ext: +!URxvt.perl-ext-common: +URxvt.keysym.Shift-Control-V: eval:paste_clipboard +URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard +!! Cursor word movement +URxvt*altSendsEscape: true +URxvt.keysym.Control-Left: \033[1;5D +URxvt.keysym.Shift-Control-Left: \033[1;6D +URxvt.keysym.Control-Right: \033[1;5C +URxvt.keysym.Shift-Control-Right: \033[1;6C +URxvt.keysym.Control-Up: \033[1;5A +URxvt.keysym.Shift-Control-Up: \033[1;6A +URxvt.keysym.Control-Down: \033[1;5B +URxvt.keysym.Shift-Control-Down: \033[1;6B +URxvt.clipboard.autocopy: false +! URxvt.keysym.M-C-v: perl:clipboard:paste_escaped +! URxvt*termName: string +! URxvt*geometry: geometry +! URxvt*chdir: string +! URxvt*reverseVideo: boolean +! URxvt*loginShell: boolean +! URxvt*multiClickTime: number +! URxvt*jumpScroll: boolean +! URxvt*skipScroll: boolean +! URxvt*pastableTabs: boolean +! URxvt*scrollstyle: plain +! URxvt*scrollBar_right: boolean +! URxvt*scrollBar_floating: true +! URxvt*scrollBar_align: mode +! URxvt*thickness: number +! URxvt*scrollTtyOutput: boolean +! URxvt*scrollTtyKeypress: boolean +! URxvt*scrollWithBuffer: boolean +! URxvt*tintColor: !7DA55 +! URxvt*blurRadius: HxV +! URxvt*fading: number +! URxvt*fadeColor: color +! URxvt*utmpInhibit: boolean +! URxvt*urgentOnBell: boolean +! URxvt*visualBell: boolean +! URxvt*mapAlert: boolean +! URxvt*meta8: boolean +! URxvt*tripleclickwords: boolean +! URxvt*insecure: boolean +! URxvt*cursorUnderline: boolean +! URxvt*pointerBlank: boolean diff --git a/IMPORTED_FROM_MANJARO/.bash_profile b/IMPORTED_FROM_MANJARO/.bash_profile new file mode 100644 index 0000000..5545f00 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.bash_profile @@ -0,0 +1,5 @@ +# +# ~/.bash_profile +# + +[[ -f ~/.bashrc ]] && . ~/.bashrc diff --git a/IMPORTED_FROM_MANJARO/.bashrc b/IMPORTED_FROM_MANJARO/.bashrc new file mode 100644 index 0000000..f06afed --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.bashrc @@ -0,0 +1,139 @@ +# +# ~/.bashrc +# + +[[ $- != *i* ]] && return + +colors() { + local fgc bgc vals seq0 + + printf "Color escapes are %s\n" '\e[${value};...;${value}m' + printf "Values 30..37 are \e[33mforeground colors\e[m\n" + printf "Values 40..47 are \e[43mbackground colors\e[m\n" + printf "Value 1 gives a \e[1mbold-faced look\e[m\n\n" + + # foreground colors + for fgc in {30..37}; do + # background colors + for bgc in {40..47}; do + fgc=${fgc#37} # white + bgc=${bgc#40} # black + + vals="${fgc:+$fgc;}${bgc}" + vals=${vals%%;} + + seq0="${vals:+\e[${vals}m}" + printf " %-9s" "${seq0:-(default)}" + printf " ${seq0}TEXT\e[m" + printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m" + done + echo; echo + done +} + +[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion + +# Change the window title of X terminals +case ${TERM} in + xterm*|rxvt*|Eterm*|aterm|kterm|gnome*|interix|konsole*) + PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\007"' + ;; + screen*) + PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\033\\"' + ;; +esac + +use_color=true + +# Set colorful PS1 only on colorful terminals. +# dircolors --print-database uses its own built-in database +# instead of using /etc/DIR_COLORS. Try to use the external file +# first to take advantage of user additions. Use internal bash +# globbing instead of external grep binary. +safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM +match_lhs="" +[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)" +[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(/dev/null \ + && match_lhs=$(dircolors --print-database) +[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true + +if ${use_color} ; then + # Enable colors for ls, etc. Prefer ~/.dir_colors #64489 + if type -P dircolors >/dev/null ; then + if [[ -f ~/.dir_colors ]] ; then + eval $(dircolors -b ~/.dir_colors) + elif [[ -f /etc/DIR_COLORS ]] ; then + eval $(dircolors -b /etc/DIR_COLORS) + fi + fi + + if [[ ${EUID} == 0 ]] ; then + PS1='\[\033[01;31m\][\h\[\033[01;36m\] \W\[\033[01;31m\]]\$\[\033[00m\] ' + else + PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \W\[\033[01;32m\]]\$\[\033[00m\] ' + fi + + alias ls='ls --color=auto' + alias grep='grep --colour=auto' + alias egrep='egrep --colour=auto' + alias fgrep='fgrep --colour=auto' +else + if [[ ${EUID} == 0 ]] ; then + # show root@ when we don't have colors + PS1='\u@\h \W \$ ' + else + PS1='\u@\h \w \$ ' + fi +fi + +unset use_color safe_term match_lhs sh + +alias cp="cp -i" # confirm before overwriting something +alias df='df -h' # human-readable sizes +alias free='free -m' # show sizes in MB +alias np='nano -w PKGBUILD' +alias more=less + +xhost +local:root > /dev/null 2>&1 + +complete -cf sudo + +# Bash won't get SIGWINCH if another process is in the foreground. +# Enable checkwinsize so that bash will check the terminal size when +# it regains control. #65623 +# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11) +shopt -s checkwinsize + +shopt -s expand_aliases + +# export QT_SELECT=4 + +# Enable history appending instead of overwriting. #139609 +shopt -s histappend + +# +# # ex - archive extractor +# # usage: ex +ex () +{ + if [ -f $1 ] ; then + case $1 in + *.tar.bz2) tar xjf $1 ;; + *.tar.gz) tar xzf $1 ;; + *.bz2) bunzip2 $1 ;; + *.rar) unrar x $1 ;; + *.gz) gunzip $1 ;; + *.tar) tar xf $1 ;; + *.tbz2) tar xjf $1 ;; + *.tgz) tar xzf $1 ;; + *.zip) unzip $1 ;; + *.Z) uncompress $1;; + *.7z) 7z x $1 ;; + *) echo "'$1' cannot be extracted via ex()" ;; + esac + else + echo "'$1' is not a valid file" + fi +} diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmDesktopMenu b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmDesktopMenu new file mode 100755 index 0000000..4897fc5 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmDesktopMenu @@ -0,0 +1,64 @@ +# …………… Beginning of menu …………… +Submenu = Flip + + icon = NULL + + item = Vertical flip + cmd = bspc desktop -F horizontal + icon = NULL + + item = Horizontal flip + cmd = bspc desktop -F vertical + icon = NULL + +Submenu = Rotate + + icon = NULL + + item = +90° + cmd = bspc desktop -R 90 + icon = NULL + + item = -90° + cmd = bspc desktop -R -90 + icon = NULL + + item = +180° + cmd = bspc desktop -R 180 + icon = NULL + +separator + +item = Balance windows +cmd = bspc desktop -B +icon = NULL + +item = Equalize windows +cmd = bspc desktop -E +icon = NULL + +separator + +item = Rename current desktop +cmd = bspwm-zenity desktop-rename +icon = NULL + +separator + +item = Add a desktop +cmd = bspwm-zenity desktop-add +icon = NULL + +item = Remove a desktop +cmd = bspwm-zenity desktop-remove +icon = NULL + +separator + +item = Swap with desktop +cmd = bspwm-zenity desktop-swap +icon = NULL + +item = Move to another monitor +cmd = +icon = NULL \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmDesktopMenui b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmDesktopMenui new file mode 100755 index 0000000..8394eaf --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmDesktopMenui @@ -0,0 +1,103 @@ +# …………… Beginning of menu …………… +submenu = Flip + + icon = /usr/share/icons/Adwaita/scalable/actions/object-flip-horizontal-symbolic.svg + + item = Vertical flip + cmd = bspc node @/ -F horizontal + icon = /usr/share/icons/Adwaita/scalable/actions/object-flip-vertical-symbolic.svg + + item = Horizontal flip + cmd = bspc node @/ -F vertical + icon = /usr/share/icons/Adwaita/scalable/actions/object-flip-horizontal-symbolic.svg + +submenu = Rotate + + icon = /usr/share/icons/Adwaita/scalable/actions/view-refresh-symbolic.svg + + item = +90° + cmd = bspc node @/ -R 90 + icon = /usr/share/icons/Adwaita/scalable/actions/object-rotate-right-symbolic.svg + + item = -90° + cmd = bspc node @/ -R -90 + icon = /usr/share/icons/Adwaita/scalable/actions/object-rotate-left-symbolic.svg + + item = +180° + cmd = bspc node @/ -R 180 + icon = /usr/share/icons/Adwaita/scalable/actions/view-refresh-symbolic.svg + +separator + +item = Balance windows +cmd = bspc node @/ -B +icon = /usr/share/icons/Adwaita/scalable/actions/view-continuous-symbolic.svg + +item = Equalize windows +cmd = bspc node @/ -E +icon = /usr/share/icons/Adwaita/scalable/actions/view-grid-symbolic.svg + +separator + +item = Rename current desktop +cmd = bspc-zen desktop-rename +icon = /usr/share/icons/Adwaita/scalable/devices/pda-symbolic.svg + +separator + +item = Add a desktop +cmd = bspc-zen desktop-add +icon = /usr/share/icons/Adwaita/scalable/actions/list-add-symbolic.svg + +item = Remove a desktop +cmd = bspc-zen desktop-remove +icon = /usr/share/icons/Adwaita/scalable/actions/list-remove-symbolic.svg + +item = Swap with desktop +cmd = bspc-zen desktop-swap +icon = /usr/share/icons/Adwaita/scalable/actions/edit-copy-symbolic.svg + +separator + +item = Toggle focus follows pointer +cmd = toggle-focus-follows-pointer +icon = /usr/share/icons/Adwaita/scalable/devices/input-mouse-symbolic.svg + +item = Toggle pointer follows focus +cmd = toggle-pointer-follows-focus +icon = /usr/share/icons/Adwaita/scalable/devices/input-keyboard-symbolic.svg + +item = Toggle dynamic gaps +cmd = autogap +icon = /usr/share/icons/Adwaita/scalable/emblems/emblem-important-symbolic.svg + +item = Toggle automatic balancing +cmd = euclid_balance +icon = /usr/share/icons/Adwaita/scalable/emblems/emblem-synchronizing-symbolic.svg + +#item = Move to another monitor +#cmd = +#icon = NULL +submenu = External rules + + icon = /usr/share/icons/Adwaita/scalable/actions/send-to-symbolic.svg + + item = Pseudo automatic mode + cmd = bspc config external_rules_command /usr/bin/pseudo_automatic_mode + icon = /usr/share/icons/Adwaita/scalable/actions/bookmark-new-symbolic.svg + + item = Euclid mode + cmd = bspc config external_rules_command /usr/bin/euclid_mode + icon = /usr/share/icons/Adwaita/scalable/actions/view-sort-ascending-symbolic.svg + + item = Automatic mode + cmd = bspc config external_rules_command no + icon = /usr/share/icons/Adwaita/scalable/emblems/emblem-default-symbolic.svg + +item = Manage rules +cmd = roxterm -e bspwm-ruler +icon = /usr/share/icons/Adwaita/scalable/apps/preferences-desktop-keyboard-shortcuts-symbolic.svg + +item = Choose wallpaper +cmd = wallpaper +icon = /usr/share/icons/Adwaita/scalable/apps/preferences-desktop-wallpaper-symbolic.svg diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmMenu b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmMenu new file mode 100755 index 0000000..d6a1f4c --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmMenu @@ -0,0 +1,196 @@ +# …………… Beginning of menu …………… + +Submenu = Window + + icon = NULL + + item = Floating + cmd = bspc window -t floating + icon = NULL + + item = Monocle + cmd = bspc desktop -l next + icon = NULL + + item = Fullscreen + cmd = bspc window -t fullscreen + icon = NULL + + item = Pseudo-tiling + cmd = bspc window -t pseudo_tiled + icon = NULL + + item = Lock + cmd = bspc window -t locked + icon = NULL + + item = Sticky + cmd = bspc window -t sticky + icon = NULL + + item = Private + cmd = bspc window -t private + icon = NULL + +Submenu = Move to... + + icon = NULL + + item = Desktop n°... + cmd = bspwm-zenity move-to-desktop + icon = NULL + + item = Next empty desktop + cmd = bspc window -d next.free + icon = NULL + + item = Last focused desktop + cmd = bspc window -d last + icon = NULL + + separator + + item = Swap with biggest window + cmd = bspc window -w biggest.local + icon = NULL + + item = Move to another monitor + cmd = + icon = NULL + + +Submenu = Desktop + + icon = NULL + + Submenu = Flip + + icon = NULL + + item = Vertical flip + cmd = bspc desktop -F horizontal + icon = NULL + + item = Horizontal flip + cmd = bspc desktop -F vertical + icon = NULL + + Submenu = Rotate + + icon = NULL + + item = +90° + cmd = bspc desktop -R 90 + icon = NULL + + item = -90° + cmd = bspc desktop -R -90 + icon = NULL + + item = +180° + cmd = bspc desktop -R 180 + icon = NULL + + separator + + item = Balance windows + cmd = bspc desktop -B + icon = NULL + + item = Equalize windows + cmd = bspc desktop -E + icon = NULL + + separator + + item = Rename current desktop + cmd = bspwm-zenity desktop-rename + icon = NULL + + separator + + item = Add a desktop + cmd = bspwm-zenity desktop-add + icon = NULL + + item = Remove a desktop + cmd = bspwm-zenity desktop-remove + icon = NULL + + separator + + item = Swap with desktop + cmd = bspwm-zenity desktop-swap + icon = NULL + + item = Move to another monitor + cmd = + icon = NULL + + +Submenu = Manual + + icon = NULL + + Submenu = Manual split + + icon = NULL + + item = Up + cmd = bspc window -p up + icon = NULL + + item = Right + cmd = bspc window -p right + icon = NULL + + item = Left + cmd = bspc window -p left + icon = NULL + + item = Down + cmd = bspc window -p down + icon = NULL + + Submenu = Split ratio + + icon = NULL + + item = 25% + cmd = bspc window -r 0.25 + icon = NULL + + item = 50% + cmd = bspc window -r 0.5 + icon = NULL + + item = 75% + cmd = bspc window -r 0.75 + icon = NULL + + separator + + item = Move to last manual split + cmd = bspc window -w last.manual + icon = NULL + + item = Cancel all splits + cmd = bspc desktop -c + icon = NULL + + +separator + +item = Next urgent window +cmd = bspc window -f next.urgent +icon = NULL + +separator + +item = Close window +cmd = bspc window -c +icon = NULL + +item = Close the window class +cmd = xdo close -cd +icon = NULL diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmWindowMenu b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmWindowMenu new file mode 100755 index 0000000..8c872b1 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmWindowMenu @@ -0,0 +1,126 @@ +#Bspwm_window_menu +# …………… Beginning of menu …………… +Submenu = Window + + icon = NULL + + item = Floating + cmd = bspc window -t floating + icon = NULL + + item = Monocle + cmd = bspc desktop -l next + icon = NULL + + item = Fullscreen + cmd = bspc window -t fullscreen + icon = NULL + + item = Pseudo-tiling + cmd = bspc window -t pseudo_tiled + icon = NULL + + item = Lock + cmd = bspc window -t locked + icon = NULL + + item = Sticky + cmd = bspc window -t sticky + icon = NULL + + item = Private + cmd = bspc window -t private + icon = NULL + +Submenu = Move to... + + icon = NULL + + item = Desktop n°... + cmd = bspwm-zenity move-to-desktop + icon = NULL + + item = Next empty desktop + cmd = bspc window -d next.free + icon = NULL + + item = Last focused desktop + cmd = bspc window -d last + icon = NULL + + separator + + item = Swap with biggest window + cmd = bspc window -w biggest.local + icon = NULL + + item = Move to another monitor + cmd = + icon = NULL +Submenu = Manual + + icon = NULL + + Submenu = Manual split + + icon = NULL + + item = Up + cmd = bspc window -p up + icon = NULL + + item = Right + cmd = bspc window -p right + icon = NULL + + item = Left + cmd = bspc window -p left + icon = NULL + + item = Down + cmd = bspc window -p down + icon = NULL + + Submenu = Split ratio + + icon = NULL + + item = 25% + cmd = bspc window -r 0.25 + icon = NULL + + item = 50% + cmd = bspc window -r 0.5 + icon = NULL + + item = 75% + cmd = bspc window -r 0.75 + icon = NULL + + separator + + item = Move to last manual split + cmd = bspc window -w last.manual + icon = NULL + + item = Cancel all splits + cmd = bspc desktop -c + icon = NULL + + +separator + +item = Next urgent window +cmd = bspc window -f next.urgent +icon = NULL + +separator + +item = Close window +cmd = bspc window -c +icon = NULL + +item = Close the window class +cmd = xdo close -cd +icon = NULL + diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmWindowMenui b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmWindowMenui new file mode 100755 index 0000000..de67099 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/BspwmWindowMenui @@ -0,0 +1,130 @@ +#Bspwm_window_menu +# …………… Beginning of menu …………… +submenu = Window + + icon = /usr/share/icons/Adwaita/scalable/actions/view-restore-symbolic.svg + + item = Floating + cmd = bspc node -t floating + icon = /usr/share/icons/Adwaita/scalable/actions/edit-copy-symbolic.svg + + item = Tiled + cmd = bspc node -t tiled + icon = /usr/share/icons/Adwaita/scalable/actions/edit-select-all-symbolic.svg + + item = Monocle + cmd = bspc desktop -l next + icon = /usr/share/icons/Adwaita/scalable/actions/window-maximize-symbolic.svg + + item = Fullscreen + cmd = bspc node -t fullscreen + icon = /usr/share/icons/Adwaita/scalable/actions/view-fullscreen-symbolic.svg + + item = Pseudo-tiling + cmd = bspc node -t pseudo_tiled + icon = /usr/share/icons/Adwaita/scalable/actions/edit-select-all-symbolic.svg + + item = Lock + cmd = bspc node -g locked + icon = /usr/share/icons/Adwaita/scalable/status/changes-allow-symbolic.svg + + item = Sticky + cmd = bspc node -g sticky + icon = /usr/share/icons/Adwaita/scalable/actions/process-stop-symbolic.svg + + item = Private + cmd = bspc node -g private + icon = /usr/share/icons/Adwaita/scalable/actions/star-new-symbolic.svg + +submenu = Move to... + + icon = /usr/share/icons/Adwaita/scalable/actions/send-to-symbolic.svg + + item = Desktop n°... + cmd = bspwm-zenity move-to-desktop + icon = NULL + + item = Next empty desktop + cmd = bspc node -d next.free + icon = NULL + + item = Last focused desktop + cmd = bspc node -d last + icon = NULL + + separator + + item = Swap with biggest window + cmd = bspc node -w biggest.local + icon = NULL + + item = Move to another monitor + cmd = + icon = NULL +submenu = Manual + + icon = /usr/share/icons/Adwaita/scalable/actions/edit-cut-symbolic.svg + + submenu = Manual split + + icon = /usr/share/icons/Adwaita/scalable/actions/edit-cut-symbolic.svg + + item = Up + cmd = bspc node -p north + icon = /usr/share/icons/Adwaita/scalable/actions/go-up-symbolic.svg + + item = Right + cmd = bspc node -p east + icon = /usr/share/icons/Adwaita/scalable/actions/go-next-symbolic.svg + + item = Left + cmd = bspc node -p west + icon = /usr/share/icons/Adwaita/scalable/actions/go-previous-symbolic.svg + + item = Down + cmd = bspc node -p south + icon = /usr/share/icons/Adwaita/scalable/actions/go-down-symbolic.svg + + submenu = Split ratio + + icon = NULL + + item = 25% + cmd = bspc node -o 0.25 + icon = NULL + + item = 50% + cmd = bspc node -o 0.5 + icon = NULL + + item = 75% + cmd = bspc node -o 0.75 + icon = NULL + + separator + + item = Move to last manual split + cmd = bspc node -w last.manual + icon = /usr/share/icons/Adwaita/scalable/actions/focus-windows-symbolic.svg + + item = Cancel all splits + cmd = bspc desktop -c + icon = /usr/share/icons/Adwaita/scalable/actions/action-unavailable-symbolic.svg + + +separator + +item = Next urgent window +cmd = bspc node -f next.urgent +icon = /usr/share/icons/Adwaita/scalable/actions/focus-windows-symbolic.svg + +separator + +item = Close window +cmd = bspc node -c +icon = /usr/share/icons/Adwaita/scalable/actions/window-close-symbolic.svg + +item = Close the window class +cmd = xdo close -cd +icon = /usr/share/icons/Adwaita/scalable/actions/window-close-symbolic.svg + diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/LaunchMenu b/IMPORTED_FROM_MANJARO/.config/GTKmenu/LaunchMenu new file mode 100755 index 0000000..95b09e0 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/LaunchMenu @@ -0,0 +1,62 @@ +item = Applications +cmd = dboxrun +icon = /usr/share/icons/Adwaita/scalable/actions/system-run-symbolic.svg + +item = Find +cmd = rofi-finder.sh +icon = /usr/share/icons/Adwaita/scalable/apps/preferences-system-search-symbolic.svg + +item = Terminal +cmd = default-terminal +icon = /usr/share/icons/Adwaita/scalable/apps/utilities-terminal-symbolic.svg + +item = Browser +cmd = default-browser +icon = /usr/share/icons/Adwaita/scalable/apps/web-browser-symbolic.svg + +item = Files +cmd = pcmanfm +icon = /usr/share/icons/Adwaita/scalable/apps/system-file-manager-symbolic.svg + +item = Editor +cmd = default-editor +icon = /usr/share/icons/Adwaita/scalable/apps/text-editor-symbolic.svg + +item = Package Manager +cmd = default-terminal -e pacui +icon = /usr/share/icons/Adwaita/scalable/apps/system-software-install-symbolic.svg + +item = Main menu +cmd = default-terminal -e bmenu +icon = /usr/share/icons/Adwaita/scalable/apps/utilities-system-monitor-symbolic.svg + +separator + +submenu = Exit + + icon = /usr/share/icons/Adwaita/scalable/actions/system-shutdown-symbolic.svg + + item = Lock screen + cmd = screenlock + icon = /usr/share/icons/Adwaita/scalable/status/changes-allow-symbolic.svg + + item = Logout + cmd = bspc quit 1 + icon = /usr/share/icons/Adwaita/scalable/actions/application-exit-symbolic.svg + + item = Suspend + cmd = systemctl suspend + icon = /usr/share/icons/Adwaita/scalable/apps/utilities-system-monitor-symbolic.svg + + item = Hibenate + cmd = systemctl hibernate + icon = /usr/share/icons/Adwaita/scalable/actions/document-save-symbolic.svg + + item = Reboot + cmd = reboot + icon = /usr/share/icons/Adwaita/scalable/actions/view-refresh-symbolic.svg + + item = Shutdown + cmd = poweroff + icon = /usr/share/icons/Adwaita/scalable/actions/system-shutdown-symbolic.svg + diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/MainMenu b/IMPORTED_FROM_MANJARO/.config/GTKmenu/MainMenu new file mode 100755 index 0000000..1ab8bcd --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/MainMenu @@ -0,0 +1,110 @@ +menupos = 0 40 + +iconsize = 25 + +item = Run +cmd = dboxrun +icon = /usr/share/icons/Adwaita/scalable/actions/system-run-symbolic.svg + +item = Applications +cmd = morc_menu +icon = /usr/share/icons/Adwaita/scalable/actions/open-menu-symbolic.svg + +item = Find +cmd = finder +icon = /usr/share/icons/Adwaita/scalable/apps/preferences-system-search-symbolic.svg + +item = Terminal +cmd = default-terminal +icon = /usr/share/icons/Adwaita/scalable/apps/utilities-terminal-symbolic.svg + +item = Browser +cmd = default-browser +icon = /usr/share/icons/Adwaita/scalable/apps/web-browser-symbolic.svg + +item = Files +cmd = spacefm +icon = /usr/share/icons/Adwaita/scalable/apps/system-file-manager-symbolic.svg + +item = Editor +cmd = default-editor +icon = /usr/share/icons/Adwaita/scalable/apps/text-editor-symbolic.svg + +item = Package Manager +cmd = default-terminal -e pacui +icon = /usr/share/icons/Adwaita/scalable/apps/system-software-install-symbolic.svg + +item = Main menu +cmd = default-terminal -e bmenu +icon = /usr/share/icons/Adwaita/scalable/apps/utilities-system-monitor-symbolic.svg + +separator +submenu = Settings + + icon = /usr/share/icons/Adwaita/scalable/emblems/emblem-system-symbolic.svg + + item = Keybindings + cmd = default-editor .config/sxhkd/sxhkdrc + icon = /usr/share/icons/Adwaita/scalable/apps/preferences-desktop-keyboard-shortcuts-symbolic.svg + + item = Bspwmrc + cmd = default-editor .config/bspwm/bspwmrc + icon = /usr/share/icons/Adwaita/scalable/apps/text-editor-symbolic.svg + + item = Autostart + cmd = default-editor .config/bspwm/autostart + icon = /usr/share/icons/Adwaita/scalable/actions/system-run-symbolic.svg + + item = Profile + cmd = default-editor .profile + icon = /usr/share/icons/Adwaita/scalable/apps/user-info-symbolic.svg + + item = Dmenu settings + cmd = default-editor .dmenurc + icon = /usr/share/icons/Adwaita/scalable/actions/open-menu-symbolic.svg + + item = Panel settings + cmd = default-editor .limepanelrc + icon = /usr/share/icons/Adwaita/scalable/actions/document-properties-symbolic.svg + + item = Appearance + cmd = lxappearance + icon = /usr/share/icons/Adwaita/scalable/apps/preferences-color-symbolic.svg + + item = Firewall + cmd = zensu gufw + icon = /usr/share/icons/Adwaita/scalable/status/security-high-symbolic.svg + + item = Network + cmd = default-terminal -e nmtui + icon = /usr/share/icons/Adwaita/scalable/apps/preferences-system-network-symbolic.svg +separator + +submenu = Exit + + icon = /usr/share/icons/Adwaita/scalable/actions/system-shutdown-symbolic.svg + + item = Lock screen + cmd = screenlock + icon = /usr/share/icons/Adwaita/scalable/status/changes-allow-symbolic.svg + + item = Logout + cmd = bspc quit 1 + icon = /usr/share/icons/Adwaita/scalable/actions/application-exit-symbolic.svg + + item = Suspend + cmd = systemctl suspend + icon = /usr/share/icons/Adwaita/scalable/apps/utilities-system-monitor-symbolic.svg + + item = Hibenate + cmd = systemctl hibernate + icon = /usr/share/icons/Adwaita/scalable/actions/document-save-symbolic.svg + + item = Reboot + cmd = reboot + icon = /usr/share/icons/Adwaita/scalable/actions/view-refresh-symbolic.svg + + item = Shutdown + cmd = poweroff + icon = /usr/share/icons/Adwaita/scalable/actions/system-shutdown-symbolic.svg + diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/appmenu b/IMPORTED_FROM_MANJARO/.config/GTKmenu/appmenu new file mode 100755 index 0000000..b4b774d --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/appmenu @@ -0,0 +1,617 @@ +item = Terminal +cmd = termite +icon = NULL + +item = Browser +cmd = firefox +icon = NULL + +item = Filemanager +cmd = spacefm +icon = NULL + +item = Settings +cmd = xfce4-settings-manager +icon = NULL + +separator +Submenu = Development + icon = NULL + + item = Geany + cmd = geany + icon = NULL + + item = OpenJDK Policy Tool + cmd = policytool + icon = NULL + + item = Qt Assistant + cmd = /usr/lib/qt/bin/assistant + icon = NULL + + item = Qt Designer + cmd = /usr/lib/qt/bin/designer + icon = NULL + + item = Qt Linguist + cmd = /usr/lib/qt/bin/linguist + icon = NULL + + item = Qt QDbusViewer + cmd = /usr/lib/qt/bin/qdbusviewer + icon = NULL + + item = Qt4 Assistant + cmd = assistant-qt4 + icon = NULL + + item = Qt4 Designer + cmd = designer-qt4 + icon = NULL + + item = Qt4 Linguist + cmd = linguist-qt4 + icon = NULL + + item = Qt4 QDbusViewer + cmd = qdbusviewer-qt4 + icon = NULL + +Submenu = Editors + icon = NULL + + item = Leafpad + cmd = leafpad + icon = NULL + + item = Vi IMproved + cmd = gvim + icon = NULL + +Submenu = Graphics + icon = NULL + + item = GNU Image Manipulation Program + cmd = gimp-2.8 + icon = NULL + + item = Image Viewer + cmd = gpicview + icon = NULL + + item = Simple Scan + cmd = simple-scan + icon = NULL + +Submenu = Multimedia + icon = NULL + + item = Audacious + cmd = audacious + icon = NULL + + item = Audio Mixer + cmd = xfce4-mixer + icon = NULL + + item = Cheese + cmd = cheese + icon = NULL + + item = PulseAudio Volume Control + cmd = pavucontrol + icon = NULL + + item = VLC media player + cmd = vlc + icon = NULL + + item = VolWheel + cmd = volwheel + icon = NULL + +Submenu = Network + icon = NULL + + item = Avahi SSH Server Browser + cmd = bssh + icon = NULL + + item = Avahi VNC Server Browser + cmd = bvnc + icon = NULL + + item = dwb + cmd = dwb + icon = NULL + + item = Empathy + cmd = empathy + icon = NULL + + item = Firefox + cmd = firefox + icon = NULL + + item = Google Chrome (unstable) + cmd = google-chrome-unstable + icon = NULL + + item = Mail Reader + cmd = exo-open --launch MailReader + icon = NULL + + item = Midori Private Browsing + cmd = midori + icon = NULL + + item = nmcli_dmenu + cmd = nmcli_dmenu + icon = NULL + + item = Pidgin Internet Messenger + cmd = pidgin + icon = NULL + + item = Skype + cmd = skype + icon = NULL + + item = Transmission + cmd = transmission-gtk + icon = NULL + + item = Web + cmd = epiphany + icon = NULL + + item = Web Browser + cmd = exo-open --launch WebBrowser + icon = NULL + +Submenu = Office + icon = NULL + + item = Document Viewer + cmd = evince + icon = NULL + + item = LibreOffice Impress + cmd = libreoffice + icon = NULL + + item = Zathura + cmd = zathura + icon = NULL + +Submenu = Other + icon = NULL + + item = About LXQt + cmd = lxqt-about + icon = NULL + + item = CMake + cmd = cmake-gui + icon = NULL + + item = compton + cmd = compton + icon = NULL + + item = DockX + cmd = dockx + icon = NULL + + item = Docky + cmd = docky + icon = NULL + + item = Galculator + cmd = galculator + icon = NULL + + item = IcedTea-Web Control Panel + cmd = itweb-settings + icon = NULL + + item = Isousb + cmd = gksu isousb + icon = NULL + + item = Plank + cmd = plank + icon = NULL + + item = Qt V4L2 test Utility + cmd = qv4l2 + icon = NULL + +Submenu = Shells + icon = NULL + + item = Files + cmd = nautilus + icon = NULL + + item = LXTerminal + cmd = lxterminal + icon = NULL + + item = Nautilus-Actions Configuration Tool + cmd = nautilus-actions-config-tool + icon = NULL + + item = Oracle VM VirtualBox + cmd = VirtualBox + icon = NULL + + item = PCManFM File Manager + cmd = pcmanfm-qt + icon = NULL + + item = Root Terminal + cmd = gksu -l gnome-terminal + icon = NULL + + item = Termite + cmd = termite + icon = NULL + + item = Thunar File Manager + cmd = thunar + icon = NULL + + item = termite + cmd = termite + icon = NULL + + item = termite (client) + cmd = termitec + icon = NULL + + item = termite (tabbed) + cmd = termite-tabbed + icon = NULL + + item = UXTerm + cmd = uxterm + icon = NULL + + item = Xfce Terminal + cmd = xfce4-terminal + icon = NULL + + item = XTerm + cmd = xterm + icon = NULL + +Submenu = System + icon = NULL + + Submenu = Settings + icon = NULL + + Submenu = GNOME + icon = NULL + + item = Adobe Flash Player + cmd = flash-player-properties + icon = NULL + + item = DockbarX Preference + cmd = dbx_preference + icon = NULL + + item = Network Connections + cmd = nm-connection-editor + icon = NULL + + item = Plank Config + cmd = plank-config + icon = NULL + + item = Privilege granting + cmd = gksu-properties + icon = NULL + + item = Theme Configuration + cmd = gtk-theme-config + icon = NULL + + Submenu = Xfce + icon = NULL + + item = Settings Manager + cmd = xfce4-settings-manager + icon = NULL + + item = Accessibility + cmd = xfce4-accessibility-settings + icon = NULL + + item = Appearance + cmd = xfce4-appearance-settings + icon = NULL + + item = Appearance + cmd = lxqt-config-appearance + icon = NULL + + item = Customize Look and Feel + cmd = lxappearance + icon = NULL + + item = Date and Time + cmd = lxqt-admin-time + icon = NULL + + item = Desktop + cmd = xfdesktop-settings + icon = NULL + + item = Desktop Notifications + cmd = lxqt-config-notificationd + icon = NULL + + item = Disks + cmd = gnome-disks + icon = NULL + + item = Display + cmd = xfce4-display-settings + icon = NULL + + item = File Associations + cmd = lxqt-config-file-associations + icon = NULL + + item = File Manager + cmd = thunar-settings + icon = NULL + + item = Keyboard + cmd = xfce4-keyboard-settings + icon = NULL + + item = Keyboard and Mouse + cmd = lxqt-config-input + icon = NULL + + item = LXQt System Settings + cmd = lxqt-config + icon = NULL + + item = Manage Printing + cmd = xdg-open http://localhost:631/ + icon = NULL + + item = Manjaro Settings Manager + cmd = manjaro-settings-manager + icon = NULL + + item = MIME Type Editor + cmd = xfce4-mime-settings + icon = NULL + + item = Monitor settings + cmd = lxqt-config-monitor + icon = NULL + + item = Mouse and Touchpad + cmd = xfce4-mouse-settings + icon = NULL + + item = NVIDIA X Server Settings + cmd = nvidia-settings + icon = NULL + + item = Panel + cmd = xfce4-panel --preferences + icon = NULL + + item = Power Management + cmd = lxqt-config-powermanagement + icon = NULL + + item = Power Manager + cmd = xfce4-power-manager-settings + icon = NULL + + item = Preferred Applications + cmd = exo-preferred-applications + icon = NULL + + item = Preferred Applications + cmd = libfm-pref-apps + icon = NULL + + item = Print Settings + cmd = system-config-printer + icon = NULL + + item = Removable Drives and Media + cmd = thunar-volman-settings + icon = NULL + + item = Search and Indexing + cmd = tracker-preferences + icon = NULL + + item = Session and Startup + cmd = xfce4-session-settings + icon = NULL + + item = Session Settings + cmd = lxqt-config-session + icon = NULL + + item = Settings Editor + cmd = xfce4-settings-editor + icon = NULL + + item = Shortcut Keys + cmd = lxqt-config-globalkeyshortcuts + icon = NULL + + item = Users and Groups + cmd = lxqt-admin-user + icon = NULL + + item = Window Manager + cmd = xfwm4-settings + icon = NULL + + item = Window Manager Tweaks + cmd = xfwm4-tweaks-settings + icon = NULL + + item = Workspaces + cmd = xfwm4-workspace-settings + icon = NULL + + item = Add/Remove Software + cmd = pamac-manager + icon = NULL + + item = Avahi Zeroconf Browser + cmd = avahi-discover + icon = NULL + + item = b2im + cmd = termite -e b2im + icon = NULL + + item = BleachBit + cmd = bleachbit + icon = NULL + + item = Bulk Rename + cmd = /usr/lib/Thunar/ThunarBulkRename + icon = NULL + + item = dconf Editor + cmd = dconf-editor + icon = NULL + + item = Disk Usage Analyzer + cmd = baobab + icon = NULL + + item = Htop + cmd = termite -e htop + icon = NULL + + item = Leave + cmd = lxqt-power + icon = NULL + + item = Log Out + cmd = xfce4-session-logout + icon = NULL + + item = Logs + cmd = gnome-logs + icon = NULL + + item = Network Tools + cmd = gnome-nettool + icon = NULL + + item = Sensor Viewer + cmd = xfce4-sensors + icon = NULL + + item = Settings + cmd = gnome-control-center --overview + icon = NULL + + item = Software Update + cmd = pamac-updater + icon = NULL + + item = System Log + cmd = gnome-system-log + icon = NULL + + item = Yaourt-Gui + cmd = termite -e yaourt-gui + icon = NULL + +Submenu = Utilities + icon = NULL + + item = 7-Zip FM + cmd = 7zFM + icon = NULL + + item = About Xfce + cmd = xfce4-about + icon = NULL + + item = ADesk Menu + cmd = adeskmenu + icon = NULL + + item = Application Finder + cmd = xfce4-appfinder + icon = NULL + + item = Archive Manager + cmd = file-roller + icon = NULL + + item = ClipIt + cmd = clipit + icon = NULL + + item = Contacts + cmd = gnome-contacts + icon = NULL + + item = Desktop Search + cmd = tracker-needle + icon = NULL + + item = File Manager + cmd = exo-open --launch FileManager + icon = NULL + + item = Gnome-Pie + cmd = gnome-pie + icon = NULL + + item = HP Device Manager + cmd = hp-toolbox + icon = NULL + + item = Pie Dock + cmd = piedock + icon = NULL + + item = Run Program... + cmd = xfce4-appfinder --collapsed + icon = NULL + + item = Screenshot + cmd = gnome-screenshot --interactive + icon = NULL + + item = SpaceFM File Search + cmd = spacefm + icon = NULL + + item = Terminal Emulator + cmd = exo-open --launch TerminalEmulator + icon = NULL + + item = Tweak Tool + cmd = gnome-tweak-tool + icon = NULL + +separator + +item = Update menu +cmd = update_menu.sh +icon = NULL diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/appskeleton b/IMPORTED_FROM_MANJARO/.config/GTKmenu/appskeleton new file mode 100755 index 0000000..0e9fba6 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/appskeleton @@ -0,0 +1,17 @@ +item = Terminal +cmd = termite +icon = NULL + +item = Browser +cmd = firefox +icon = NULL + +item = Filemanager +cmd = spacefm +icon = NULL + +item = Settings +cmd = xfce4-settings-manager +icon = NULL + +separator diff --git a/IMPORTED_FROM_MANJARO/.config/GTKmenu/menupdate b/IMPORTED_FROM_MANJARO/.config/GTKmenu/menupdate new file mode 100755 index 0000000..166dd55 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/GTKmenu/menupdate @@ -0,0 +1,5 @@ +separator + +item = Update menu +cmd = update_menu.sh +icon = NULL diff --git a/IMPORTED_FROM_MANJARO/.config/Kvantum/kvantum.kvconfig b/IMPORTED_FROM_MANJARO/.config/Kvantum/kvantum.kvconfig new file mode 100644 index 0000000..5e82ba5 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/Kvantum/kvantum.kvconfig @@ -0,0 +1,2 @@ +[General] +theme=KvAdaptaMaiaDark diff --git a/IMPORTED_FROM_MANJARO/.config/QtProject.conf b/IMPORTED_FROM_MANJARO/.config/QtProject.conf new file mode 100644 index 0000000..a500e0b --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/QtProject.conf @@ -0,0 +1,8 @@ +[FileDialog] +history=file:///home/vectorkappa/Obrazy, file:///run/media/vectorkappa/System/Users/VectorKappa/Desktop +lastVisited=file:///run/media/vectorkappa/System/Users/VectorKappa/Desktop +qtVersion=5.13.2 +shortcuts=file:, file:///home/vectorkappa +sidebarWidth=90 +treeViewHeader=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xec\0\0\0\x4\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x4\0\0\0\xff\0\0\0\x1\0\0\0\0\0\0\0?\0\0\0\x1\0\0\0\0\0\0\0@\0\0\0\x1\0\0\0\0\0\0\0n\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\xff\xff\xff\xff) +viewMode=Detail diff --git a/IMPORTED_FROM_MANJARO/.config/Thunar/accels.scm b/IMPORTED_FROM_MANJARO/.config/Thunar/accels.scm new file mode 100644 index 0000000..e69de29 diff --git a/IMPORTED_FROM_MANJARO/.config/Thunar/uca.xml b/IMPORTED_FROM_MANJARO/.config/Thunar/uca.xml new file mode 100644 index 0000000..8f33358 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/Thunar/uca.xml @@ -0,0 +1,13 @@ + + + + utilities-terminal + Open Terminal Here + 1552337724953608-1 + exo-open --working-directory %f --launch TerminalEmulator + Example for a custom action + * + + + + diff --git a/IMPORTED_FROM_MANJARO/.config/Trolltech.conf b/IMPORTED_FROM_MANJARO/.config/Trolltech.conf new file mode 100755 index 0000000..dbb9fc2 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/Trolltech.conf @@ -0,0 +1,20 @@ +[Qt] +font="Sans Serif,9,-1,5,50,0,0,0,0,0" +Palette\active=#000000, #d4d0c8, #ffffff, #e9e7e3, #6a6864, #a0a0a4, #000000, #ffffff, #000000, #ffffff, #d4d0c8, #000000, #000080, #ffffff, #0000ff, #ff00ff, #e9e7e3, #000000, #ffffdc, #000000 +Palette\inactive=#000000, #d4d0c8, #ffffff, #e9e7e3, #6a6864, #a0a0a4, #000000, #ffffff, #000000, #ffffff, #d4d0c8, #000000, #000080, #ffffff, #0000ff, #ff00ff, #e9e7e3, #000000, #ffffdc, #000000 +Palette\disabled=#6a6864, #d4d0c8, #ffffff, #e9e7e3, #6a6864, #a0a0a4, #6a6864, #ffffff, #6a6864, #d4d0c8, #d4d0c8, #000000, #000080, #ffffff, #0000ff, #ff00ff, #e9e7e3, #000000, #ffffdc, #000000 +fontPath=@Invalid() +embedFonts=true +style=GTK+ +doubleClickInterval=400 +cursorFlashTime=1000 +wheelScrollLines=3 +resolveSymlinks=false +globalStrut\width=0 +globalStrut\height=0 +useRtlExtensions=false +XIMInputStyle=On The Spot +DefaultInputMethod=xim +audiosink=Auto +videomode=Auto +GUIEffects=none diff --git a/IMPORTED_FROM_MANJARO/.config/autostart/ma-launcher.desktop b/IMPORTED_FROM_MANJARO/.config/autostart/ma-launcher.desktop new file mode 100644 index 0000000..7a29437 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/autostart/ma-launcher.desktop @@ -0,0 +1,5 @@ +[Desktop Entry] +Type=Application +Name=ma-launcher +Comment=create Manjaro-Architect launcher +Exec=/usr/bin/ma-launcher diff --git a/IMPORTED_FROM_MANJARO/.config/bspwm/autostart b/IMPORTED_FROM_MANJARO/.config/bspwm/autostart new file mode 100755 index 0000000..8f58dbc --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/bspwm/autostart @@ -0,0 +1,52 @@ +##run_once is a script in /usr/bin that prevents running script if it is running already +## + +## Load appearance settings +xsetroot -cursor_name left_ptr & +export GTK2_RC_FILES="$HOME/.gtkrc-2.0" & +xrdb merge .Xresources & +## Wallpaper. Nitrogen just draws wallpaper, +sh ~/.fehbg & +## compositing. Required for shadows, transparency and stuff. +# Alter compton settings if using intel graphics +GRAPHIC_CARD=$(lspci | grep -i "vga" | sed 's/.*://' | sed 's/(.*//' | sed 's/^[ \t]*//') +if [[ $(echo $GRAPHIC_CARD | grep -i 'intel\|lenovo') != "" ]]; then MCODE='initrd=\intel-ucode.img' + sed -i 's/"xrender"/"glx"/' ~/.config/compton.conf + grep -q 'vsync = "opengl-swc";' ~/.config/compton.conf || echo 'vsync = "opengl-swc";' >> ~/.config/compton.conf +fi +## Reduces flicker. Disabling saves resources. +compton -b & +## enable local fonts in .fonts directory +xset +fp /usr/share/fonts/local & +xset +fp /usr/share/fonts/misc & +xset +fp ~/.fonts & +xset fp rehash & +fc-cache -fv & +## Automount removable media +devmon & +## powersaving options +xset s off & +xset s noblank & +xset s noexpose & +xset c on & +xset -dpms & +xbacklight -set 15 & +## Run screenlock when suspending +light-locker & +## Make monitor settings persist between reboots +eval $(awk -F'=' '/Exec=/ {print $2}' ~/.config/autostart/lxrandr-autostart.desktop) & +## Notify about package updates +update-checker 7200 & +## Map super key to trigger rofi when used alone +xcape -e 'Super_L=Super_L|Shift_L|space' & +## Polkit agent +/usr/lib/mate-polkit/polkit-mate-authentication-agent-1 & +## Gnome keyring +gnome-keyring-daemon & +thunar --daemon & +/usr/lib/mate-notification-daemon/mate-notification-daemon & +## Welcome message +sleep 1 && notify-send "Welcome to Manjaro-bspwm! " "Press super + F1 to show keybindings" & + + +$HOME/.config/polybar/launch.sh \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/bspwm/autostart.save b/IMPORTED_FROM_MANJARO/.config/bspwm/autostart.save new file mode 100755 index 0000000..767cf83 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/bspwm/autostart.save @@ -0,0 +1,64 @@ +##run_once is a script in /usr/bin that prevents running script if it is running already +## + +## Load appearance settings +xsetroot -cursor_name left_ptr & +export GTK2_RC_FILES="$HOME/.gtkrc-2.0" & +xrdb merge .Xresources & +## Wallpaper. Nitrogen just draws wallpaper, +sh ~/.fehbg & +## compositing. Required for shadows, transparency and stuff. +# Alter compton settings if using intel graphics +GRAPHIC_CARD=$(lspci | grep -i "vga" | sed 's/.*://' | sed 's/(.*//' | sed 's/^[ \t]*//') +if [[ $(echo $GRAPHIC_CARD | grep -i 'intel\|lenovo') != "" ]]; then MCODE='initrd=\intel-ucode.img' + sed -i 's/"xrender"/"glx"/' ~/.config/compton.conf + grep -q 'vsync = "opengl-swc";' ~/.config/compton.conf || echo 'vsync = "opengl-swc";' >> ~/.config/compton.conf +fi +## Reduces flicker. Disabling saves resources. +compton -b & +## enable local fonts in .fonts directory +xset +fp /usr/share/fonts/local & +xset +fp /usr/share/fonts/misc & +xset +fp ~/.fonts & +xset fp rehash & +fc-cache -fv & +## Automount removable media +devmon & +## powersaving options +xset s off & +xset s noblank & +xset s noexpose & +xset c on & +xset -dpms & +xbacklight -set 15 & +## Run screenlock when suspending +light-locker & +## Make monitor settings persist between reboots +eval $(awk -F'=' '/Exec=/ {print $2}' ~/.config/autostart/lxrandr-autostart.desktop) & +## Notify about package updates +update-checker 7200 & +## Map super key to trigger rofi when used alone +xcape -e 'Super_L=Super_L|Shift_L|space' & +## Polkit agent +/usr/lib/mate-polkit/polkit-mate-authentication-agent-1 & +## Gnome keyring +gnome-keyring-daemon & +thunar --daemon & +/usr/lib/mate-notification-daemon/mate-notification-daemon & +## Welcome message +sleep 1 && notify-send "Welcome to Manjaro-bspwm! " "Press super + F1 to show keybindings" & + +#!/usr/bin/env bash + +# Terminate already running bar instances +killall -q polybar + +# Wait until the processes have been shut down +while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done + +# Launch bar1 and bar2 +echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log +polybar bar1 >>/tmp/polybar1.log 2>&1 & +polybar bar2 >>/tmp/polybar2.log 2>&1 & + +echo "Bars launched..." \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/bspwm/autostart~ b/IMPORTED_FROM_MANJARO/.config/bspwm/autostart~ new file mode 100755 index 0000000..4ca8ac4 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/bspwm/autostart~ @@ -0,0 +1,52 @@ +##run_once is a script in /usr/bin that prevents running script if it is running already +## + +## Load appearance settings +xsetroot -cursor_name left_ptr & +export GTK2_RC_FILES="$HOME/.gtkrc-2.0" & +xrdb merge .Xresources & +## Wallpaper. Nitrogen just draws wallpaper, +sh ~/.fehbg & +## compositing. Required for shadows, transparency and stuff. +# Alter compton settings if using intel graphics +GRAPHIC_CARD=$(lspci | grep -i "vga" | sed 's/.*://' | sed 's/(.*//' | sed 's/^[ \t]*//') +if [[ $(echo $GRAPHIC_CARD | grep -i 'intel\|lenovo') != "" ]]; then MCODE='initrd=\intel-ucode.img' + sed -i 's/"xrender"/"glx"/' ~/.config/compton.conf + grep -q 'vsync = "opengl-swc";' ~/.config/compton.conf || echo 'vsync = "opengl-swc";' >> ~/.config/compton.conf +fi +## Reduces flicker. Disabling saves resources. +compton -b & +## enable local fonts in .fonts directory +xset +fp /usr/share/fonts/local & +xset +fp /usr/share/fonts/misc & +xset +fp ~/.fonts & +xset fp rehash & +fc-cache -fv & +## Automount removable media +devmon & +## powersaving options +xset s off & +xset s noblank & +xset s noexpose & +xset c on & +xset -dpms & +xbacklight -set 15 & +## Run screenlock when suspending +light-locker & +## Make monitor settings persist between reboots +eval $(awk -F'=' '/Exec=/ {print $2}' ~/.config/autostart/lxrandr-autostart.desktop) & +## Notify about package updates +update-checker 7200 & +## Map super key to trigger rofi when used alone +xcape -e 'Super_L=Super_L|Shift_L|space' & +## Polkit agent +/usr/lib/mate-polkit/polkit-mate-authentication-agent-1 & +## Gnome keyring +gnome-keyring-daemon & +thunar --daemon & +/usr/lib/mate-notification-daemon/mate-notification-daemon & +## Welcome message +sleep 1 && notify-send "Welcome to Manjaro-bspwm! " "Press super + F1 to show keybindings" & + + +# $HOME/.config/polybar/launch.sh \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/bspwm/bspwmrc b/IMPORTED_FROM_MANJARO/.config/bspwm/bspwmrc new file mode 100755 index 0000000..22f13ca --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/bspwm/bspwmrc @@ -0,0 +1,121 @@ +#! /bin/sh +gap=15 +PANEL_HEIGHT=27 +export gap +export PANEL_HEIGHT + +#This creates negative padding equal to window gap so that gaps are shown only between windows and not on desktop edges. +bspc config window_gap $gap; +bspc config top_padding $(($PANEL_HEIGHT-$gap)) +bspc config left_padding -$gap +bspc config right_padding -$gap +bspc config bottom_padding -$gap + +#Various settings +bspc config gapless_monocle false #Default setup uses negative padding, and gapless monocle looks really weird like that +bspc config borderless_monocle true +bspc config single_monocle true +bspc config paddingless_monocle false +#bspc config ignore_ewmh_focus true +#bspc config initial_polarity second_child +bspc config remove_disabled_monitors true +bspc config remove_unplugged_monitors true +## Honor size hints: do not make windows smaller than they wish to be +#bspc config honor_size_hints true + +##Color settings +bspc config focused_border_color "#1ABB9B" +bspc config normal_border_color "#222D32" +#"#000000" +bspc config presel_feedback_color "#1ABB9B" +#"#8F3724" +bspc config border_width 1 + +bspc config focus_follows_pointer true +#bspc config pointer_follows_focus true #Some keybindings automatically enable and disable this setting + +#Settings for manual splitting +bspc config split_ratio 0.52 + +#bspc monitor -d i ii iii iv v vi vii viii ix x +#bspc monitor -d One Two Three Four Five Six Seven Eight Nine Ten +#bspc monitor -d I II III IV V VI VII VIII IX X +#bspc monitor -d • • • • • • • • • • +#bspc monitor -d I II III IV V VI + +###This creates and names desktops for multiple monitors. +workspaces_multimonitor & + +bspc rule -a screenkey --unmanage +bspc rule -a gcolor2 state=floating center=true +bspc rule -a lxappearance state=floating center=true +bspc rule -a gmrun state=floating center=true +bspc rule -a lxterminal state=floating center=true sticky=true +#bspc rule -a urxvt state=floating center=true +bspc rule -a viewnior state=floating center=true +bspc rule -a file-roller state=floating center=true +bspc rule -a floaterm state=floating center=true +bspc rule -a spotify state=pseudo_tiled +#bspc rule -a nautilus state=pseudo_tiled +#bspc rule -a skype state=pseudo_tiled +bspc rule -a file-roller state=pseudo_tiled +bspc rule -a transmission-gtk state=pseudo_tiled +bspc rule -a conky sticky=on manage=off lower=on +bspc rule -a astime sticky=on +bspc rule -a yad state=floating +bspc rule -a Docky layer=above border=off manage=on +bspc rule -a Plank layer=above border=off manage=on +bspc rule -a wbar layer=above +bspc rule -a dockbarx layer=above +bspc rule -a google-chrome-unstable private=on +bspc rule -a google-chrome-stable private=on +bspc rule -a chromium private=on +bspc rule -a firefox private=on +bspc rule -a midori private=on +bspc rule -a gnome-pie border=off manage=off +bspc rule -a wpa_gui state=pseudo_tiled +bspc rule -a libreoffice state=tiled +bspc rule -a '*:libreofficedev' state=tiled +bspc rule -a '*:soffice' state=tiled +bspc rule -a firefox desktop=I +bspc rule -a brave-browser desktop=I +#bspc rule -a calibre desktop=II +#bspc rule -a geany desktop=II +#bspc rule -a deluge desktop=III +bspc rule -a polybar border=off +bspc rule -a 9menu border=off manage=off +bspc rule -a tint2 border=off manage=off +#bspc desktop I --layout monocle +#bspc desktop II --layout monocle + + +## Autogap adjusts windowgap automatically according to the number of +## windows on the desktop. Using it disables negative window gap. +#autogap & + +## This script balances all windows when new one is spawned +#euclid_balancer & + +##Edge-switcher switches to next workspace when moves moves to the +##edge of the monitor (behavior similar to enlightenment) +#edge-switcher & + +###External rules +##Pseudo automatic mode: always splits focused window when opening new window +bspc config external_rules_command /usr/bin/pseudo_automatic_mode +##Adjust new window: splits biggest windows to keep windows about the same size +#bspc config external_rules_command /usr/bin/adjust-new-window + +##Autostart apps +#Keybindings daemon +#sxhkd & +#Source autostartfile. Uncomment this if you use bspwm-git +#. $HOME/.config/bspwm/autostart + +# limepanel & +# Alter compton settings if using intel graphics +GRAPHIC_CARD=$(lspci | grep -i "vga" | sed 's/.*://' | sed 's/(.*//' | sed 's/^[ \t]*//') +if [[ $(echo $GRAPHIC_CARD | grep -i 'intel\|lenovo') != "" ]]; then MCODE='initrd=\intel-ucode.img' + sed -i 's/"xrender"/"glx"/' ~/.config/compton.conf + grep -q 'vsync = "opengl-swc";' ~/.config/compton.conf || echo 'vsync = "opengl-swc";' >> ~/.config/compton.conf +fi \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/bspwm/bspwmrc~ b/IMPORTED_FROM_MANJARO/.config/bspwm/bspwmrc~ new file mode 100755 index 0000000..0989a01 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/bspwm/bspwmrc~ @@ -0,0 +1,121 @@ +#! /bin/sh +gap=15 +PANEL_HEIGHT=27 +export gap +export PANEL_HEIGHT + +#This creates negative padding equal to window gap so that gaps are shown only between windows and not on desktop edges. +bspc config window_gap $gap; +bspc config top_padding $(($PANEL_HEIGHT-$gap)) +bspc config left_padding -$gap +bspc config right_padding -$gap +bspc config bottom_padding -$gap + +#Various settings +bspc config gapless_monocle false #Default setup uses negative padding, and gapless monocle looks really weird like that +bspc config borderless_monocle true +bspc config single_monocle true +bspc config paddingless_monocle false +#bspc config ignore_ewmh_focus true +#bspc config initial_polarity second_child +bspc config remove_disabled_monitors true +bspc config remove_unplugged_monitors true +## Honor size hints: do not make windows smaller than they wish to be +#bspc config honor_size_hints true + +##Color settings +bspc config focused_border_color "#1ABB9B" +bspc config normal_border_color "#222D32" +#"#000000" +bspc config presel_feedback_color "#1ABB9B" +#"#8F3724" +bspc config border_width 1 + +bspc config focus_follows_pointer true +#bspc config pointer_follows_focus true #Some keybindings automatically enable and disable this setting + +#Settings for manual splitting +bspc config split_ratio 0.52 + +#bspc monitor -d i ii iii iv v vi vii viii ix x +#bspc monitor -d One Two Three Four Five Six Seven Eight Nine Ten +#bspc monitor -d I II III IV V VI VII VIII IX X +#bspc monitor -d • • • • • • • • • • +#bspc monitor -d I II III IV V VI + +###This creates and names desktops for multiple monitors. +workspaces_multimonitor & + +bspc rule -a screenkey --unmanage +bspc rule -a gcolor2 state=floating center=true +bspc rule -a lxappearance state=floating center=true +bspc rule -a gmrun state=floating center=true +bspc rule -a lxterminal state=floating center=true sticky=true +#bspc rule -a urxvt state=floating center=true +bspc rule -a viewnior state=floating center=true +bspc rule -a file-roller state=floating center=true +bspc rule -a floaterm state=floating center=true +bspc rule -a spotify state=pseudo_tiled +#bspc rule -a nautilus state=pseudo_tiled +#bspc rule -a skype state=pseudo_tiled +bspc rule -a file-roller state=pseudo_tiled +bspc rule -a transmission-gtk state=pseudo_tiled +bspc rule -a conky sticky=on manage=off lower=on +bspc rule -a astime sticky=on +bspc rule -a yad state=floating +bspc rule -a Docky layer=above border=off manage=on +bspc rule -a Plank layer=above border=off manage=on +bspc rule -a wbar layer=above +bspc rule -a dockbarx layer=above +bspc rule -a google-chrome-unstable private=on +bspc rule -a google-chrome-stable private=on +bspc rule -a chromium private=on +bspc rule -a firefox private=on +bspc rule -a midori private=on +bspc rule -a gnome-pie border=off manage=off +bspc rule -a wpa_gui state=pseudo_tiled +bspc rule -a libreoffice state=tiled +bspc rule -a '*:libreofficedev' state=tiled +bspc rule -a '*:soffice' state=tiled +bspc rule -a firefox desktop=I +bspc rule -a brave-browser desktop=^1 +#bspc rule -a calibre desktop=II +#bspc rule -a geany desktop=II +#bspc rule -a deluge desktop=III +bspc rule -a polybar border=off +bspc rule -a 9menu border=off manage=off +bspc rule -a tint2 border=off manage=off +#bspc desktop I --layout monocle +#bspc desktop II --layout monocle + + +## Autogap adjusts windowgap automatically according to the number of +## windows on the desktop. Using it disables negative window gap. +#autogap & + +## This script balances all windows when new one is spawned +#euclid_balancer & + +##Edge-switcher switches to next workspace when moves moves to the +##edge of the monitor (behavior similar to enlightenment) +#edge-switcher & + +###External rules +##Pseudo automatic mode: always splits focused window when opening new window +bspc config external_rules_command /usr/bin/pseudo_automatic_mode +##Adjust new window: splits biggest windows to keep windows about the same size +#bspc config external_rules_command /usr/bin/adjust-new-window + +##Autostart apps +#Keybindings daemon +#sxhkd & +#Source autostartfile. Uncomment this if you use bspwm-git +#. $HOME/.config/bspwm/autostart + +# limepanel & +# Alter compton settings if using intel graphics +GRAPHIC_CARD=$(lspci | grep -i "vga" | sed 's/.*://' | sed 's/(.*//' | sed 's/^[ \t]*//') +if [[ $(echo $GRAPHIC_CARD | grep -i 'intel\|lenovo') != "" ]]; then MCODE='initrd=\intel-ucode.img' + sed -i 's/"xrender"/"glx"/' ~/.config/compton.conf + grep -q 'vsync = "opengl-swc";' ~/.config/compton.conf || echo 'vsync = "opengl-swc";' >> ~/.config/compton.conf +fi \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/compton.conf b/IMPORTED_FROM_MANJARO/.config/compton.conf new file mode 100644 index 0000000..df528e7 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/compton.conf @@ -0,0 +1,113 @@ +# Shadow +shadow = true; +# no-dnd-shadow = true; +detect-rounded-corners = true; +shadow-radius = 5; +shadow-offset-x = 1; +shadow-offset-y = 1; +shadow-opacity = .3; +shadow-ignore-shaped = true; +shadow-exclude = [ + "name = 'Notification'", +# workaround for conky until it provides window properties: + "override_redirect = 1 && !WM_CLASS@:s", + "class_g ?= 'Dmenu'", +# "class_g ?= 'Dunst'", +# disable shadows for hidden windows: + "_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'", + "_GTK_FRAME_EXTENTS@:c", +# disables shadows on sticky windows: +# "_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'", +# disables shadows on i3 frames + "class_g ?= 'i3-frame'", + "class_g = 'Conky'", + "class_g ?= 'Notify-osd'", + "class_g = 'Bspwm'", + "class_g = 'Rofi'", +]; + +# shadow-exclude-reg = "x10+0+0"; +# xinerama-shadow-crop = true; + +#menu-opacity = 0.95; +#inactive-opacity = 0.93; +#active-opacity = 1; +#alpha-step = 0.01; +#inactive-dim = 0.0; +#blur-background = false; +#blur-kern = "3x3box"; + +fading = true; +fade-in-step = 0.08; +fade-out-step = 0.005; +fade-exclude = [ "name = 'i3lock'" ]; + +backend = "glx"; +mark-wmwin-focused = true; +mark-ovredir-focused = true; +use-ewmh-active-win = true; +detect-client-opacity = true; +unredir-if-possible = true; +refresh-rate = 0; +#vsync = "opengl-swc"; +dbe = false; +focus-exclude = [ "class_g = 'Cairo-clock'" ]; +detect-transient = true; +detect-client-leader = true; +invert-color-include = [ ]; +glx-copy-from-front = false; +glx-swap-method = "undefined"; + +#opacity-rule = [ +#"99:name *?= 'Call'", +#"99:class_g = 'Chromium'", +#"99:name *?= 'Conky'", +#"99:class_g = 'Darktable'", +#"50:class_g = 'Dmenu'", +#"99:name *?= 'Event'", +#"99:class_g = 'Firefox'", +#"99:class_g = 'GIMP'", +#"99:name *?= 'Image'", +#"99:class_g = 'Lazpaint'", +#"99:class_g = 'Midori'", +#"99:name *?= 'Minitube'", +#"99:class_g = 'Mousepad'", +#"99:name *?= 'MuseScore'", +#"90:name *?= 'Page Info'", +#"99:name *?= 'Pale Moon'", +#"90:name *?= 'Panel'", +#"99:class_g = 'Pinta'", +#"90:name *?= 'Restart'", +#"99:name *?= 'sudo'", +#"99:name *?= 'Screenshot'", +#"99:class_g = 'Viewnior'", +#"99:class_g = 'VirtualBox'", +#"99:name *?= 'VLC'", +#"99:name *?= 'Write'", +#"93:class_g = 'URxvt' && !_NET_WM_STATE@:32a", +#"0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'", +#"96:_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'" +#]; + +wintypes : +{ + tooltip : + { + fade = true; + shadow = false; + opacity = 0.85; + focus = true; + }; + fullscreen : + { + fade = true; + shadow = false; + opacity = 1; + focus = true; + }; +}; +inactive-dim-fixed = true; +blur-background = false; +fade-delta = 1; +opacity-rule = [ "10:class_g = 'Bspwm' && class_i = 'presel_feedback'" ]; +no-fading-openclose = false; diff --git a/IMPORTED_FROM_MANJARO/.config/configstore/update-notifier-npm.json b/IMPORTED_FROM_MANJARO/.config/configstore/update-notifier-npm.json new file mode 100644 index 0000000..7b02cb4 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/configstore/update-notifier-npm.json @@ -0,0 +1,4 @@ +{ + "optOut": false, + "lastUpdateCheck": 1574748136845 +} \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/dconf/user b/IMPORTED_FROM_MANJARO/.config/dconf/user new file mode 100644 index 0000000..38dcaf1 Binary files /dev/null and b/IMPORTED_FROM_MANJARO/.config/dconf/user differ diff --git a/IMPORTED_FROM_MANJARO/.config/dmenu-recent/background b/IMPORTED_FROM_MANJARO/.config/dmenu-recent/background new file mode 100755 index 0000000..7da94e3 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/dmenu-recent/background @@ -0,0 +1,10 @@ +chromium +midori +nm-applet +geany +wallpaper +spacefm +finder +gedit +lxappearance +sxiv diff --git a/IMPORTED_FROM_MANJARO/.config/dmenu-recent/terminal b/IMPORTED_FROM_MANJARO/.config/dmenu-recent/terminal new file mode 100755 index 0000000..432b92a --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/dmenu-recent/terminal @@ -0,0 +1,10 @@ +ranger +htop +postinstall +yaourt-gui +pacli +mhwd-tui +nano +vim +vi +Thunar diff --git a/IMPORTED_FROM_MANJARO/.config/dunst/dunstrc b/IMPORTED_FROM_MANJARO/.config/dunst/dunstrc new file mode 100644 index 0000000..1a9322d --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/dunst/dunstrc @@ -0,0 +1,306 @@ +[global] + frame_width = 1 + frame_color = "#788388" + + font = Noto Sans 10 + + # Allow a small subset of html markup: + # bold + # italic + # strikethrough + # underline + # + # For a complete reference see + # . + # If markup is not allowed, those tags will be stripped out of the + # message. + markup = yes + + # The format of the message. Possible variables are: + # %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 + # Markup is allowed + format = "%s %p\n%b" + + # Sort messages by urgency. + sort = yes + + # Show how many messages are currently hidden (because of geometry). + indicate_hidden = yes + + # Alignment of message text. + # Possible values are "left", "center" and "right". + alignment = left + + # The frequency with wich text that is longer than the notification + # window allows bounces back and forth. + # This option conflicts with "word_wrap". + # Set to 0 to disable. + bounce_freq = 5 + + + # Show age of message if message is older than show_age_threshold + # seconds. + # Set to -1 to disable. + show_age_threshold = 60 + + # Split notifications into multiple lines if they don't fit into + # geometry. + word_wrap = no + + # Ignore newlines '\n' in notifications. + ignore_newline = no + + + # The geometry of the window: + # [{width}]x{height}[+/-{x}+/-{y}] + # The geometry of the message window. + # The height is measured in number of notifications everything else + # in pixels. If the width is omitted but the height is given + # ("-geometry x2"), the message window expands over the whole screen + # (dmenu-like). If width is 0, the window expands to the longest + # message displayed. A positive x is measured from the left, a + # negative from the right side of the screen. Y is measured from + # the top and down respectevly. + # The width can be negative. In this case the actual width is the + # screen width minus the width defined in within the geometry option. + geometry = "0x4-25+25" + + # Shrink window if it's smaller than the width. Will be ignored if + # width is 0. + shrink = yes + + # The transparency of the window. Range: [0; 100]. + # This option will only work if a compositing windowmanager is + # present (e.g. xcompmgr, compiz, etc.). + transparency = 15 + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + # default 120 + idle_threshold = 120 + + # Which monitor should the notifications be displayed on. + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a windowmanager that exports the + # _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern windowmanagers. + # + # If this option is set to mouse or keyboard, the monitor option + # will be ignored. + follow = mouse + + # Should a notification popped up from history be sticky or timeout + # as if it would normally do. + sticky_history = yes + + # Maximum amount of notifications kept in history + history_length = 20 + + # Display indicators for URLs (U) and actions (A). + show_indicators = yes + + # The height of a single line. If the height is smaller than the + # font height, it will get raised to the font height. + # This adds empty space above and under the text. + line_height = 0 + + # Draw a line of "separator_height" pixel height between two + # notifications. + # Set to 0 to disable. + separator_height = 1 + + # Padding between text and separator. + # padding = 8 + padding = 8 + + # Horizontal padding. + horizontal_padding = 10 + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background; + # * foreground: use the same color as the foreground; + # * frame: use the same color as the frame; + # * anything else will be interpreted as a X color. + separator_color = #263238 + + # Print a notification on startup. + # This is mainly for error detection, since dbus (re-)starts dunst + # automatically after a crash. + startup_notification = false + + # dmenu path. + dmenu = /usr/bin/dmenu -p dunst: + + # Browser for opening urls in context menu. + browser = palemoon + + # Align icons left/right/off + icon_position = left + + # Paths to default icons. + icon_path = /usr/share/icons/Adwaita/16x16/status/:/usr/share/icons/Adwaita/16x16/devices/ + + # Limit icons size. + max_icon_size=128 + +[shortcuts] + + # Shortcuts are specified as [modifier+][modifier+]...key + # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", + # "mod3" and "mod4" (windows-key). + # Xev might be helpful to find names for keys. + + # Close notification. + close = mod1+space + + # Close all notifications. + # close_all = ctrl+shift+space + close_all = ctrl+mod1+space + + # Redisplay last message(s). + # On the US keyboard layout "grave" is normally above TAB and left + # of "1". + history = ctrl+mod4+h + + # Context menu. + context = ctrl+mod1+c + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the "#" and following would be interpreted as a comment. + background = "#263238" + foreground = "#556064" + timeout = 10 + +[urgency_normal] + background = "#263238" + foreground = "#F9FAF9" + timeout = 10 + +[urgency_critical] + background = "#D62929" + foreground = "#F9FAF9" + timeout = 0 + + +# Every section that isn't one of the above is interpreted as a rules to +# override settings for certain messages. +# Messages can be matched by "appname", "summary", "body", "icon", "category", +# "msg_urgency" and you can override the "timeout", "urgency", "foreground", +# "background", "new_icon" and "format". +# Shell-like globbing will get expanded. +# +# SCRIPTING +# You can specify a script that gets run when the rule matches by +# setting the "script" option. +# The script will be called as follows: +# script appname summary body icon urgency +# where urgency can be "LOW", "NORMAL" or "CRITICAL". +# +# NOTE: if you don't want a notification to be displayed, set the format +# to "". +# NOTE: It might be helpful to run dunst -print in a terminal in order +# to find fitting options for rules. + +#[espeak] +# summary = "*" +# script = dunst_espeak.sh + +#[script-test] +# summary = "*script*" +# script = dunst_test.sh + +#[ignore] +# # This notification will not be displayed +# summary = "foobar" +# format = "" + +#[signed_on] +# appname = Pidgin +# summary = "*signed on*" +# urgency = low +# +#[signed_off] +# appname = Pidgin +# summary = *signed off* +# urgency = low +# +#[says] +# appname = Pidgin +# summary = *says* +# urgency = critical +# +#[twitter] +# appname = Pidgin +# summary = *twitter.com* +# urgency = normal +# +#[Claws Mail] +# appname = claws-mail +# category = email.arrived +# urgency = normal +# background = "#2F899E" +# foreground = "#FFA247" +# +#[mute.sh] +# appname = mute +# category = mute.sound +# script = mute.sh +# +#[JDownloader] +# appname = JDownloader +# category = JD +# background = "#FFA247" +# foreground = "#FFFFFF" +# +#[newsbeuter] +# summary = *Feeds* +# background = "#A8EB41" +# foreground = "#FFFFFF" +# +[irc] + appname = weechat + timeout = 0 + background = "#0033bb" + foreground = "#dddddd" +# +[weechat hl] + appname = weechat + category = weechat.HL + background = "#FF5C47" + foreground = "#FFFFFF" +# +[weechat pn] + appname = weechat + category = weechat.PM + background = "#D53B84" + foreground = "#FFFFFF" +# +#[CMUS] +# appname = CMUS +# category = cmus +# background = "#6C4AB7" +# foreground = "#FFE756" +# +# +# background = "#30AB70" +# foreground = "#F67245" +# +# vim: ft=cfg + +[speech] +summary = "*" +script = webdad-speech.sh \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/gtk-2.0/gtkfilechooser.ini b/IMPORTED_FROM_MANJARO/.config/gtk-2.0/gtkfilechooser.ini new file mode 100644 index 0000000..291df53 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/gtk-2.0/gtkfilechooser.ini @@ -0,0 +1,11 @@ +[Filechooser Settings] +LocationMode=path-bar +ShowHidden=true +ShowSizeColumn=true +GeometryX=540 +GeometryY=250 +GeometryWidth=840 +GeometryHeight=630 +SortColumn=name +SortOrder=ascending +StartupMode=recent diff --git a/IMPORTED_FROM_MANJARO/.config/gtk-3.0/bookmarks b/IMPORTED_FROM_MANJARO/.config/gtk-3.0/bookmarks new file mode 100644 index 0000000..384a607 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/gtk-3.0/bookmarks @@ -0,0 +1 @@ +sftp://patalong.pl/ diff --git a/IMPORTED_FROM_MANJARO/.config/gtk-3.0/gtk.css b/IMPORTED_FROM_MANJARO/.config/gtk-3.0/gtk.css new file mode 100644 index 0000000..e7ff883 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/gtk-3.0/gtk.css @@ -0,0 +1,4 @@ +.window-frame { + box-shadow: none; + margin: 0; +} diff --git a/IMPORTED_FROM_MANJARO/.config/gtk-3.0/settings.ini b/IMPORTED_FROM_MANJARO/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..40a698f --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/gtk-3.0/settings.ini @@ -0,0 +1,9 @@ +[Settings] +gtk-theme-name=Adapta-Nokto-Eta-Maia +gtk-icon-theme-name=Papirus-Dark-Maia +gtk-font-name=Noto Sans 11 +gtk-cursor-theme-name=xcursor-breeze +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull +gtk-xft-rgba=rgb diff --git a/IMPORTED_FROM_MANJARO/.config/htop/htoprc b/IMPORTED_FROM_MANJARO/.config/htop/htoprc new file mode 100644 index 0000000..2f67ab1 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/htop/htoprc @@ -0,0 +1,26 @@ +# Beware! This file is rewritten by htop when settings are changed in the interface. +# The parser is also very primitive, and not human-friendly. +fields=0 48 17 18 38 39 40 2 46 47 49 1 +sort_key=39 +sort_direction=1 +hide_threads=0 +hide_kernel_threads=1 +hide_userland_threads=0 +shadow_other_users=0 +show_thread_names=0 +show_program_path=1 +highlight_base_name=0 +highlight_megabytes=1 +highlight_threads=1 +tree_view=0 +header_margin=1 +detailed_cpu_time=0 +cpu_count_from_zero=0 +update_process_names=0 +account_guest_in_cpu_meter=0 +color_scheme=0 +delay=15 +left_meters=AllCPUs Memory Swap +left_meter_modes=1 1 1 +right_meters=Tasks LoadAverage Uptime +right_meter_modes=2 2 2 diff --git a/IMPORTED_FROM_MANJARO/.config/kritadisplayrc b/IMPORTED_FROM_MANJARO/.config/kritadisplayrc new file mode 100644 index 0000000..d905a87 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/kritadisplayrc @@ -0,0 +1,2 @@ +[General] +canvasState=OPENGL_SUCCESS diff --git a/IMPORTED_FROM_MANJARO/.config/kritarc b/IMPORTED_FROM_MANJARO/.config/kritarc new file mode 100644 index 0000000..ea3d43d --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/kritarc @@ -0,0 +1,441 @@ +ArtColorSel.ColorSpace=0 +ArtColorSel.InversedSaturation=false +ArtColorSel.Light=0.6361197778645128 +ArtColorSel.LightPieces=11 +ArtColorSel.NumRings=7 +ArtColorSel.RingPieces=12 +ArtColorSel.SelColorH=0.043005555555555554 +ArtColorSel.SelColorS=0.9836530661497995 +ArtColorSel.SelColorX=0.6361197778645128 +ArtColorSel.defaultHueSteps=12 +ArtColorSel.defaultSaturationSteps=7 +ArtColorSel.defaultValueScaleSteps=11 +ArtColorSel.enforceGamutMask=false +ArtColorSel.lumaB=0.0722 +ArtColorSel.lumaG=0.7152 +ArtColorSel.lumaGamma=2.2 +ArtColorSel.lumaR=0.2126 +ArtColorSel.showBgColor=true +ArtColorSel.showValueScale=false +BackgroundColorForNewImage=255,255,255 +BackgroundOpacityForNewImage=255 +BackgroundStyleForNewImage=0 +CanvasOnlyActive=false +GamutMasks.viewMode=0 +Krita/Ocio/DisplayDevice=sRGB +Krita/Ocio/DisplayLook=Brak +Krita/Ocio/DisplayView=Raw +Krita/Ocio/InputColorSpace=raw +Krita/Ocio/OcioColorManagementMode=0 +Krita/Ocio/OcioConfigPath= +Krita/Ocio/OcioLockColorVisualRepresentation=false +Krita/Ocio/OcioLutPath= +Krita/Ocio/UseOcio=false +LastBackGroundColor=\n\n \n\n +LastForeGroundColor=\n\n \n\n +LastPreset=u)_Pixel_Art +LineSmoothingDelayDistance=50 +LineSmoothingDistance=50 +LineSmoothingFinishStabilizedCurve=true +LineSmoothingScalableDistance=true +LineSmoothingSmoothPressure=false +LineSmoothingStabilizeSensors=true +LineSmoothingTailAggressiveness=0.15 +LineSmoothingType=1 +LineSmoothingUseDelayDistance=true +NumberOfLayersForNewImage=2 +SpecificColorSelector/UsePercentage=false +baseLength=60 +canvasState=OPENGL_SUCCESS +colorDepthDef=U8 +colorModelDef=RGBA +colorProfileDef=sRGB-elle-V2-srgbtrc.icc +globalSnapBoundingBox=false +globalSnapExtension=false +globalSnapImageBounds=true +globalSnapImageCenter=true +globalSnapIntersection=false +globalSnapNode=false +globalSnapOrthogonal=false +globalSnapToPixel=false +gridmaincolor=99,99,99 +gridmainstyle=0 +gridsubdivisioncolor=150,150,150 +gridsubdivisionstyle=1 +guidesColor=99,99,99 +guidesLineStyle=0 +imageHeightDef=100 +imageResolutionDef=100 +imageWidthDef=300 +internal_selector_active_color_set=Concept-cookie +levelOfDetailEnabled=false +logviewer_enabled=false +moveToolChangedValueX=2049 +moveToolChangedValueY=1704 +moveToolUnit=0 +numberOfOnionSkins=10 +oninSkinTintColorForward=0,255,0 +onionSkinOpacity_-1=173 +onionSkinOpacity_-10=22 +onionSkinOpacity_-2=163 +onionSkinOpacity_-3=147 +onionSkinOpacity_-4=130 +onionSkinOpacity_-5=107 +onionSkinOpacity_-6=86 +onionSkinOpacity_-7=66 +onionSkinOpacity_-8=48 +onionSkinOpacity_-9=35 +onionSkinOpacity_0=178 +onionSkinOpacity_1=173 +onionSkinOpacity_10=22 +onionSkinOpacity_2=163 +onionSkinOpacity_3=147 +onionSkinOpacity_4=130 +onionSkinOpacity_5=107 +onionSkinOpacity_6=86 +onionSkinOpacity_7=66 +onionSkinOpacity_8=48 +onionSkinOpacity_9=35 +onionSkinState_-1=true +onionSkinState_-10=false +onionSkinState_-2=true +onionSkinState_-3=false +onionSkinState_-4=false +onionSkinState_-5=false +onionSkinState_-6=false +onionSkinState_-7=false +onionSkinState_-8=false +onionSkinState_-9=false +onionSkinState_0=true +onionSkinState_1=true +onionSkinState_10=false +onionSkinState_2=true +onionSkinState_3=false +onionSkinState_4=false +onionSkinState_5=false +onionSkinState_6=false +onionSkinState_7=false +onionSkinState_8=false +onionSkinState_9=false +onionSkinTintColorBackward=255,0,0 +onionSkinTintFactor=191 +presethistory=c)_Pencil-1_Hard,c)_Pencil-2,u)_Pixel_Art +scratchpadVisible=true +showAdditionalOnionSkinsSettings=true +toolbarslider_1=opacity +toolbarslider_2=size +toolbarslider_3=flow + +[File Dialogs] +SaveAs=/home/vectorkappa/Obrazy + +[MainWindow] +State=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AAAAFABHAHIAaQBkAEQAbwBjAGsAZQByAAAAAAD/////AAABLQD////7AAAAHgBIAGkAcwB0AG8AZwByAGEAbQBEAG8AYwBrAGUAcgAAAAAA/////wAAAEcA////+wAAACoAQQBuAGkAbQBhAHQAaQBvAG4AQwB1AHIAdgBlAHMARABvAGMAawBlAHIAAAAAAP////8AAAB4AP////sAAAAyAFMAdgBnAFMAeQBtAGIAbwBsAEMAbwBsAGwAZQBjAHQAaQBvAG4ARABvAGMAawBlAHIAAAAAAP////8AAAB4AP////sAAAAWAFQAbwB1AGMAaABEAG8AYwBrAGUAcgAAAAJMAAABMQAAABMA////+wAAABoAQQByAHIAYQBuAGcAZQBEAG8AYwBrAGUAcgAAAAAA/////wAAADUA////+wAAADoAYwBvAG0AaQBjAHMAXwBwAHIAbwBqAGUAYwB0AF8AbQBhAG4AYQBnAGUAcgBfAGQAbwBjAGsAZQByAAAAAAD/////AAAAqgD////7AAAAKgBxAHUAaQBjAGsAXwBzAGUAdAB0AGkAbgBnAHMAXwBkAG8AYwBrAGUAcgAAAAAA/////wAAAHkA////+wAAABYAUABhAGcAZQByAEQAbwBjAGsAZQByAAAAAAD/////AAAAAAAAAAD7AAAAJgBsAGEAcwB0AGQAbwBjAHUAbQBlAG4AdABzAGQAbwBjAGsAZQByAAAAAAD/////AAAAdwD////7AAAAEgBHAGEAbQB1AHQATQBhAHMAawAAAAAA/////wAAASAA////+wAAABIATABvAGcARABvAGMAawBlAHIAAAAAAP////8AAAB3AP///wAAAAIAAAoAAAAAvPwBAAAAAfsAAAAaAFQAbwBvAGwAQgBhAHIARABvAGMAawBlAHIAAAAAAP////8AAAAAAAAAAAAAAAMAAAAAAAAAAPwBAAAABPsAAAAcAEYAbABpAHAAYgBvAG8AawBEAG8AYwBrAGUAcgAAAAAA/////wAAAAAAAAAA+wAAAB4AQQBuAGkAbQBhAHQAaQBvAG4ARABvAGMAawBlAHIAAAAAAP////8AAAExAP////sAAAAgAE8AbgBpAG8AbgBTAGsAaQBuAHMARABvAGMAawBlAHIAAAAAAP////8AAAFOAP////sAAAAcAFQAaQBtAGUAbABpAG4AZQBEAG8AYwBrAGUAcgAAAAAA/////wAAAEYA////AAABOwAAAnIAAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAgAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAAAAAAeAEIAcgB1AHMAaABlAHMAQQBuAGQAUwB0AHUAZgBmAQAAAMH/////AAAAAAAAAAA= +Window-Maximized 768x1366=true +ko_geometry=AdnQywADAAAAAAAAAAAAMgAAAr4AAAL/AAAA5AAAAIAAAARxAAACyQAAAAACAAAABVYAAAABAAAAMwAAAr0AAAL+ + +[MainWindow][DockWidget AnimationCurvesDocker] +Collapsed=false +DockArea=2 +Locked=false +height=421 +width=448 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget AnimationDocker] +Collapsed=false +DockArea=8 +Locked=false +height=160 +width=280 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ArrangeDocker] +Collapsed=false +DockArea=2 +Locked=false +height=426 +width=303 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ArtisticColorSelector] +Collapsed=false +DockArea=2 +Locked=false +height=284 +width=334 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ChannelDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget ColorSelectorNg] +Collapsed=false +DockArea=2 +Locked=false +height=131 +width=301 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget CompositionDocker] +Collapsed=false +DockArea=2 +Locked=false +height=300 +width=400 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget DigitalMixer] +Collapsed=false +DockArea=2 +Locked=false +height=30 +width=100 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget GamutMask] +Collapsed=false +DockArea=2 +Locked=false +height=322 +width=363 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget GridDocker] +Collapsed=false +DockArea=2 +Locked=false +height=527 +width=258 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget HistogramDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget History] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget KisLayerBox] +Collapsed=false +DockArea=2 +Locked=false +height=207 +width=301 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget LogDocker] +Collapsed=false +DockArea=2 +Locked=false +height=260 +width=400 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget LutDocker] +Collapsed=false +DockArea=2 +Locked=false +height=286 +width=357 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget OnionSkinsDocker] +Collapsed=false +DockArea=8 +Locked=false +height=282 +width=336 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget OverviewDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget PaletteDocker] +Collapsed=false +DockArea=2 +Locked=false +height=422 +width=647 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget PatternDocker] +Collapsed=false +DockArea=2 +Locked=false +height=299 +width=256 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget PresetDocker] +Collapsed=false +DockArea=2 +Locked=false +height=141 +width=301 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget PresetHistory] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget SpecificColorSelector] +Collapsed=false +DockArea=2 +Locked=false +height=207 +width=268 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget SvgSymbolCollectionDocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget TasksetDocker] +Collapsed=false +DockArea=2 +Locked=false +height=300 +width=400 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget TimelineDocker] +Collapsed=false +DockArea=8 +Locked=false +height=30 +width=100 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget ToolBox] +Collapsed=false +DockArea=1 +Locked=false +height=610 +width=73 +xPosition=0 +yPosition=16 + +[MainWindow][DockWidget TouchDocker] +Collapsed=false +DockArea=2 +Locked=false +height=0 +width=0 +xPosition=0 +yPosition=0 + +[MainWindow][DockWidget comics_project_manager_docker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget lastdocumentsdocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget quick_settings_docker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[MainWindow][DockWidget sharedtooldocker] +Collapsed=false +DockArea=2 +Locked=false +height=461 +width=640 +xPosition=0 +yPosition=19 + +[RecentFiles] +File1[$e]=$HOME/Obrazy/Bluzy.kra +File2[$e]=/media/PIOTR 8 GB-2/woskowijki logo nowe.pdf +Name1[$e]=Bluzy.kra +Name2[$e]=woskowijki logo nowe.pdf + +[SvgSymbolCollection] +currentCollection=0 + +[advancedColorSelector] +gamma=2.2 +lumaG=0.7152 +lumaR=0.2126 +showColorSelector=true + +[calligra] +DockerPluginsDisabled= +FlakePluginsDisabled= +ShapePluginsDisabled= +ToolPlugins=,, + +[crashprevention] +CreatingCanvas=false + +[tool_color_picker] +ColorPickerDefaultActivation=\n\n false\n 100\n false\n 1\n true\n true\n true\n\n diff --git a/IMPORTED_FROM_MANJARO/.config/libfm/libfm.conf b/IMPORTED_FROM_MANJARO/.config/libfm/libfm.conf new file mode 100644 index 0000000..d73afc6 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/libfm/libfm.conf @@ -0,0 +1,45 @@ +# Configuration file for the libfm version 1.3.0.2. +# Autogenerated file, don't edit, your changes will be overwritten. + +[config] +single_click=1 +use_trash=0 +confirm_del=1 +confirm_trash=1 +advanced_mode=0 +si_unit=0 +force_startup_notify=1 +backup_as_hidden=1 +no_usb_trash=1 +no_child_non_expandable=0 +show_full_names=0 +only_user_templates=0 +template_run_app=0 +template_type_once=0 +auto_selection_delay=500 +drop_default_action=auto +defer_content_test=0 +quick_exec=0 +terminal=sterminal +archiver=file-roller +thumbnail_local=1 +thumbnail_max=2048 +smart_desktop_autodrop=1 + +[ui] +big_icon_size=48 +small_icon_size=24 +pane_icon_size=24 +thumbnail_size=128 +show_thumbnail=1 +shadow_hidden=0 + +[places] +places_home=1 +places_desktop=1 +places_root=0 +places_computer=0 +places_trash=1 +places_applications=1 +places_network=0 +places_unmounted=1 diff --git a/IMPORTED_FROM_MANJARO/.config/libinput-gestures.conf b/IMPORTED_FROM_MANJARO/.config/libinput-gestures.conf new file mode 100644 index 0000000..7b96bbd --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/libinput-gestures.conf @@ -0,0 +1,17 @@ +# Generated by Gestures 0.2.2 --> https://gitlab.com/cunidev/gestures +# Manual editing might result in data loss! + + +# Invalid lines + + +# Unsupported lines + +# Swipe threshold (0-100) +swipe_threshold 0 + +# Gestures +gesture swipe up 3 xdotool key ctrl+t +gesture swipe down 3 xdotool key ctrl+w +gesture swipe left 3 xdotool key alt+Left +gesture swipe right 3 xdotool key alt+Right \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/micro/bindings.json b/IMPORTED_FROM_MANJARO/.config/micro/bindings.json new file mode 100644 index 0000000..6e3d4c1 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/bindings.json @@ -0,0 +1,112 @@ +{ + "Up": "CursorUp", + "Down": "CursorDown", + "Right": "CursorRight", + "Left": "CursorLeft", + "ShiftUp": "SelectUp", + "ShiftDown": "SelectDown", + "ShiftLeft": "SelectLeft", + "ShiftRight": "SelectRight", + "CtrlLeft": "WordLeft", + "CtrlRight": "WordRight", + "AltUp": "MoveLinesUp", + "AltDown": "MoveLinesDown", + "CtrlShiftRight": "SelectWordRight", + "CtrlShiftLeft": "SelectWordLeft", + "AltLeft": "StartOfLine", + "AltRight": "EndOfLine", + "AltShiftLeft": "SelectToStartOfLine", + "ShiftHome": "SelectToStartOfLine", + "AltShiftRight": "SelectToEndOfLine", + "ShiftEnd": "SelectToEndOfLine", + "CtrlUp": "ParagraphPrevious", + "CtrlDown": "ParagraphNext", + "CtrlShiftUp": "SelectToStart", + "CtrlShiftDown": "SelectToEnd", + "Enter": "InsertNewline", + "CtrlH": "DeleteWordLeft", + "Backspace": "Backspace", + "Alt-CtrlH": "DeleteWordLeft", + "Alt-Backspace": "DeleteWordLeft", + "CtrlW": "DeleteWordLeft", + "Tab": "IndentSelection,InsertTab", + "Backtab": "OutdentSelection,OutdentLine", + "CtrlO": "OpenFile", + "Alto": "fzf.fzf", + "CtrlS": "Save", + "CtrlF": "Find", + "CtrlN": "FindNext", + "CtrlP": "FindPrevious", + "CtrlZ": "Undo", + "CtrlY": "Redo", + "CtrlC": "Copy", + "CtrlX": "Cut", + "CtrlK": "CutLine", + "CtrlD": "DuplicateLine", + "CtrlV": "Paste", + "CtrlA": "SelectAll", + "CtrlT": "AddTab", + "Alt,": "PreviousTab", + "Alt.": "NextTab", + "Home": "StartOfLine", + "End": "EndOfLine", + "CtrlHome": "CursorStart", + "CtrlEnd": "CursorEnd", + "PageUp": "CursorPageUp", + "PageDown": "CursorPageDown", + "CtrlG": "ToggleHelp", + "CtrlR": "ToggleRuler", + "CtrlL": "JumpLine", + "Delete": "Delete", + "CtrlB": "ShellMode", + "CtrlQ": "Quit", + "CtrlE": "CommandMode", + "CtrlU": "ToggleMacro", + "CtrlJ": "PlayMacro", + "\u001b[1;2A": "SelectUp", + "\u001b[1;2B": "SelectDown", + "\u001b[1;2C": "SelectRight", + "\u001b[1;2D": "SelectLeft", + "\u001b[1;5D": "WordLeft", + "\u001b[1;5C": "WordRight", + "\u001b[1;3A": "MoveLinesUp", + "\u001b[1;3B": "MoveLinesDown", + "\u001b[1;6C": "SelectWordRight", + "\u001b[1;6D": "SelectWordLeft", + "\u001b[1;3D": "StartOfLine", + "\u001b[1;3C": "EndOfLine", + "\u001b[1;4D": "SelectToStartOfLine", + "\u001b[1;4C": "SelectToEndOfLine", + "\u001b[1;5A": "ParagraphPrevious", + "\u001b[1;5B": "ParagraphNext", + "\u001b[1;6A": "SelectToStart", + "\u001b[1;6B": "SelectToEnd", + + // Emacs-style keybindings + "Alt-f": "WordRight", + "Alt-b": "WordLeft", + "Alt-a": "StartOfLine", + "Alt-e": "EndOfLine", + + // Integration with file managers + "F1": "ToggleHelp", + "F2": "Save", + "F3": "Find", + "F4": "Quit", + "F7": "Find", + "F10": "Quit", + "Esc": "Escape", + + // Mouse bindings + "MouseWheelUp": "ScrollUp", + "MouseWheelDown": "ScrollDown", + "MouseLeft": "MousePress", + "MouseMiddle": "PastePrimary", + "Ctrl-MouseLeft": "MouseMultiCursor", + + // Multiple cursors bindings + "Alt-n": "SpawnMultiCursor", + "Alt-p": "RemoveMultiCursor", + "Alt-c": "RemoveAllMultiCursors", + "Alt-x": "SkipMultiCursor", +} diff --git a/IMPORTED_FROM_MANJARO/.config/micro/buffers/history b/IMPORTED_FROM_MANJARO/.config/micro/buffers/history new file mode 100644 index 0000000..52a8ebf Binary files /dev/null and b/IMPORTED_FROM_MANJARO/.config/micro/buffers/history differ diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/README.md b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/README.md new file mode 100644 index 0000000..b7439a9 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/README.md @@ -0,0 +1,7 @@ +# Comment Plugin for Micro + +This plugin provides automatic commenting/uncommenting for micro. + +Install with `> plugin install comment`. + +See the [docs](https://github.com/micro-editor/comment-plugin/blob/master/help/comment-plugin.md) for more details. diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/comment.lua b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/comment.lua new file mode 100644 index 0000000..d27902d --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/comment.lua @@ -0,0 +1,105 @@ +VERSION = "1.0.6" + +ft = {} + +ft["c"] = "// %s" +ft["go"] = "// %s" +ft["python"] = "# %s" +ft["python3"] = "# %s" +ft["html"] = "" +ft["java"] = "// %s" +ft["perl"] = "# %s" +ft["rust"] = "// %s" +ft["shell"] = "# %s" +ft["lua"] = "-- %s" +ft["javascript"] = "// %s" +ft["ruby"] = "# %s" +ft["d"] = "// %s" +ft["swift"] = "// %s" + +function onViewOpen(v) + if v.Buf.Settings["commenttype"] == nil then + if ft[v.Buf.Settings["filetype"]] ~= nil then + v.Buf.Settings["commenttype"] = ft[v.Buf.Settings["filetype"]] + else + v.Buf.Settings["commenttype"] = "# %s" + end + end +end + +function commentLine(lineN) + local v = CurView() + local line = v.Buf:Line(lineN) + local commentType = v.Buf.Settings["commenttype"] + local commentRegex = "^%s*" .. commentType:gsub("%*", "%*"):gsub("%-", "%-"):gsub("%.", "%."):gsub("%+", "%+"):gsub("%]", "%]"):gsub("%[", "%["):gsub("%%s", "(.*)") + local sel = -v.Buf.Cursor.CurSelection + local curpos = -v.Buf.Cursor.Loc + local index = string.find(commentType, "%%s") - 1 + if string.match(line, commentRegex) then + uncommentedLine = string.match(line, commentRegex) + v.Buf:Replace(Loc(0, lineN), Loc(#line, lineN), GetLeadingWhitespace(line) .. uncommentedLine) + if v.Buf.Cursor:HasSelection() then + v.Buf.Cursor.CurSelection[1].Y = sel[1].Y + v.Buf.Cursor.CurSelection[2].Y = sel[2].Y + v.Buf.Cursor.CurSelection[1].X = sel[1].X + v.Buf.Cursor.CurSelection[2].X = sel[2].X + else + v.Buf.Cursor.X = curpos.X - index + v.Buf.Cursor.Y = curpos.Y + end + else + local commentedLine = commentType:gsub("%%s", trim(line)) + v.Buf:Replace(Loc(0, lineN), Loc(#line, lineN), GetLeadingWhitespace(line) .. commentedLine) + if v.Buf.Cursor:HasSelection() then + v.Buf.Cursor.CurSelection[1].Y = sel[1].Y + v.Buf.Cursor.CurSelection[2].Y = sel[2].Y + v.Buf.Cursor.CurSelection[1].X = sel[1].X + v.Buf.Cursor.CurSelection[2].X = sel[2].X + else + v.Buf.Cursor.X = curpos.X + index + v.Buf.Cursor.Y = curpos.Y + end + end + v.Cursor:Relocate() + v.Cursor.LastVisualX = v.Cursor:GetVisualX() +end + +function commentSelection(startLine, endLine) + for line = startLine, endLine do + commentLine(line) + end +end + +function comment() + local v = CurView() + if v.Cursor:HasSelection() then + if v.Cursor.CurSelection[1]:GreaterThan(-v.Cursor.CurSelection[2]) then + local endLine = v.Cursor.CurSelection[1].Y + if v.Cursor.CurSelection[1].X == 0 then + endLine = endLine - 1 + end + commentSelection(v.Cursor.CurSelection[2].Y, endLine) + else + local endLine = v.Cursor.CurSelection[2].Y + if v.Cursor.CurSelection[2].X == 0 then + endLine = endLine - 1 + end + commentSelection(v.Cursor.CurSelection[1].Y, endLine) + end + else + commentLine(v.Cursor.Y) + end +end + +function trim(s) + return (s:gsub("^%s*(.-)%s*$", "%1")) +end + +function string.starts(String,Start) + return string.sub(String,1,string.len(Start))==Start +end + +MakeCommand("comment", "comment.comment") +BindKey("Alt-/", "comment.comment") + +AddRuntimeFile("comment", "help", "help/comment-plugin.md") diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/help/comment-plugin.md b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/help/comment-plugin.md new file mode 100644 index 0000000..fd9b869 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/help/comment-plugin.md @@ -0,0 +1,59 @@ +# Comment Plugin + +The comment plugin provides auto commenting/uncommenting. +The default binding to comment/uncomment a line is `Alt-/`, +but you can easily modify that in your `bindings.json` file: + +```json +{ + "Alt-g": "comment.comment" +} +``` + +You can also execute a command which will do the same thing as +the binding: + +``` +> comment +``` + +If you have a selection, the plugin will comment all the lines +selected. + +The comment type will be auto detected based on the filetype, +but it is only available for certain filetypes: + +* c: `// %s` +* c++: `// %s` +* d: `// %s` +* go: `// %s` +* html: `` +* java: `// %s` +* javascript: `// %s` +* julia: `# %s` +* lua: `-- %s` +* perl: `# %s` +* php: `// %s` +* python: `# %s` +* python3: `# %s` +* ruby: `# %s` +* rust: `// %s` +* shell: `# %s` +* swift: `// %s` + +If your filetype is not available here, you can simply modify +the `commenttype` option: + +``` +set commenttype "/* %s */" +``` + +Or in your `settings.json`: + +```json +{ + "*.c": { + "commenttype": "/* %s */" + } +} +``` diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/repo.json b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/repo.json new file mode 100644 index 0000000..a441aed --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/comment/repo.json @@ -0,0 +1,14 @@ +[{ + "Name": "comment", + "Description": "Plugin to auto comment or uncomment lines", + "Tags": ["comment", "uncomment"], + "Versions": [ + { + "Version": "1.0.6", + "Url": "https://github.com/micro-editor/comment-plugin/archive/v1.0.6.zip", + "Require": { + "micro": ">=1.1.0" + } + } + ] +}] diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/LICENSE b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/LICENSE new file mode 100644 index 0000000..7d6a271 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/LICENSE @@ -0,0 +1,12 @@ +Copyright (c) 2016, Samantha Marshall +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of Samantha Marshall nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.fish b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.fish new file mode 100644 index 0000000..cc0d857 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.fish @@ -0,0 +1,11 @@ +function fzf + set -l epoch (date "+%s") + set -l file_path $TMPDIR/fzf-$epoch.result + command fzf $argv >$file_path + if test $status -eq 0 -a -s $file_path + cat $file_path + end + if test -e $file_path + rm $file_path + end +end diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.lua b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.lua new file mode 100644 index 0000000..d9cf0d4 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.lua @@ -0,0 +1,16 @@ +VERSION = "2.0.0" + +MakeCommand("fzf", "fzf.fzf", 0) + +function fzf() + if CurView():CanClose() then + RunTermEmulator("fzf", false, true, "fzf.handleFzfOutput") + end +end + +function handleFzfOutput(output) + local strings = import("strings") + CurView():Open(strings.TrimSpace(output)) +end + +AddRuntimeFile("fzf", "help", "help/fzf.md") \ No newline at end of file diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/help/fzf.md b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/help/fzf.md new file mode 100644 index 0000000..20fa02c --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/help/fzf.md @@ -0,0 +1,31 @@ +# About the fzf plugin + +This plugin provides support for opening files via [fzf](https://github.com/junegunn/fzf). +# Commands + +The plugin providies the following commands: + +* `fzf`: launch `fzf` to find a file to open. + + +# Troubleshooting + +There is a [known issue](https://github.com/fish-shell/fish-shell/issues/1362) when using fzf with fish shell. To work around this, you should create a new fish shell function called `fzf` to be trigged instead of the `fzf` command directly. You can copy and past the following snippet into the file: + +$FISH_CONFIG_PATH/functions/fzf.fish + +``` + function fzf + set -l epoch (date "+%s") + set -l file_path $TMPDIR/fzf-$epoch.result + command fzf $argv >$file_path + if test $status -eq 0 -a -s $file_path + cat $file_path + end + if test -e $file_path + rm $file_path + end + end +``` + + diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/readme.md b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/readme.md new file mode 100644 index 0000000..e677564 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/readme.md @@ -0,0 +1,23 @@ +# fzf plugin for micro + +This repository holds the [fzf](https://github.com/junegunn/fzf) plugin for [micro](https://github.com/zyedidia/micro) + +# Troubleshooting + +There is a [known issue](https://github.com/fish-shell/fish-shell/issues/1362) when using fzf with fish shell. To work around this, you should create a new fish shell function called `fzf` to be trigged instead of the `fzf` command directly. You can copy and past the following snippet into the file: + +$FISH_CONFIG_PATH/functions/fzf.fish + +``` + function fzf + set -l epoch (date "+%s") + set -l file_path $TMPDIR/fzf-$epoch.result + command fzf $argv >$file_path + if test $status -eq 0 -a -s $file_path + cat $file_path + end + if test -e $file_path + rm $file_path + end + end +``` diff --git a/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/repo.json b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/repo.json new file mode 100644 index 0000000..96f6ec2 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/repo.json @@ -0,0 +1,16 @@ +[ + { + "Name": "fzf", + "Description": "adds support to opening files via fzf", + "Tags": ["fzf"], + "Versions": [ + { + "Version": "1.0.5", + "Url": "https://github.com/samdmarshall/micro-fzf-plugin/archive/v1.0.5.zip", + "Require": { + "micro": ">=1.1.2" + } + } + ] + } +] diff --git a/IMPORTED_FROM_MANJARO/.config/micro/settings.json b/IMPORTED_FROM_MANJARO/.config/micro/settings.json new file mode 100644 index 0000000..46926f2 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/micro/settings.json @@ -0,0 +1,46 @@ +{ + "autoclose": true, + "autoindent": true, + "autosave": false, + "basename": false, + "colorcolumn": 0, + "colorscheme": "default", + "cursorline": true, + "eofnewline": false, + "fastdirty": false, + "fileformat": "unix", + "ftoptions": true, + "ignorecase": false, + "indentchar": " ", + "infobar": true, + "keepautoindent": true, + "keymenu": false, + "linter": true, + "literate": true, + "matchbrace": true, + "mouse": true, + "pluginchannels": [ + "https://raw.githubusercontent.com/micro-editor/plugin-channel/master/channel.json" + ], + "pluginrepos": [], + "rmtrailingws": false, + "ruler": true, + "savecursor": false, + "savehistory": true, + "saveundo": false, + "scrollbar": false, + "scrollmargin": 3, + "scrollspeed": 2, + "softwrap": true, + "splitbottom": true, + "splitright": true, + "statusline": true, + "sucmd": "sudo", + "syntax": true, + "tabmovement": false, + "tabsize": 4, + "tabstospaces": false, + "termtitle": false, + "trimdiff": false, + "useprimary": true +} diff --git a/IMPORTED_FROM_MANJARO/.config/mimeapps.list b/IMPORTED_FROM_MANJARO/.config/mimeapps.list new file mode 100644 index 0000000..109891b --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mimeapps.list @@ -0,0 +1,20 @@ +[Added Associations] +text/plain=micro.desktop;libreoffice-writer.desktop; +application/x-shellscript=micro.desktop;atom.desktop; +image/svg+xml=firefox.desktop; +text/x-scheme=micro.desktop; +application/xml=firefox.desktop; +application/pdf=krita_pdf.desktop;xreader.desktop;libreoffice-draw.desktop; +image/png=xviewer.desktop; +image/jpeg=xviewer.desktop; +audio/mpeg=mpv.desktop;audacity.desktop; +image/gif=org.qutebrowser.qutebrowser.desktop; +image/vnd.adobe.photoshop=gimp.desktop; +audio/x-ms-wma=mpv.desktop; +audio/x-wav=audacity.desktop; +text/html=atom.desktop; + +[Default Applications] +text/plain=micro.desktop +application/pdf=xreader.desktop +x-scheme-handler/discord-450485984333660181=discord-450485984333660181.desktop diff --git a/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/085A034AFCAAD2C17EC55F18FB8AE257 b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/085A034AFCAAD2C17EC55F18FB8AE257 new file mode 100644 index 0000000..bfbc634 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/085A034AFCAAD2C17EC55F18FB8AE257 @@ -0,0 +1 @@ +start=5.673000 diff --git a/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/330916E209D04CF75DB6AC9997AEC2D0 b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/330916E209D04CF75DB6AC9997AEC2D0 new file mode 100644 index 0000000..a15cd01 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/330916E209D04CF75DB6AC9997AEC2D0 @@ -0,0 +1 @@ +start=41.814618 diff --git a/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/4DC0E7B7F894431B4A00814DB5ED4EDC b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/4DC0E7B7F894431B4A00814DB5ED4EDC new file mode 100644 index 0000000..2818630 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/4DC0E7B7F894431B4A00814DB5ED4EDC @@ -0,0 +1 @@ +start=3.960000 diff --git a/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/6C30EB1FD41890593558008779C51480 b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/6C30EB1FD41890593558008779C51480 new file mode 100644 index 0000000..151dfe8 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/6C30EB1FD41890593558008779C51480 @@ -0,0 +1 @@ +start=31.830561 diff --git a/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/8B90683B4EDEEFFA9CDD9F8823F676E3 b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/8B90683B4EDEEFFA9CDD9F8823F676E3 new file mode 100644 index 0000000..25ec9b2 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/8B90683B4EDEEFFA9CDD9F8823F676E3 @@ -0,0 +1 @@ +start=53.179059 diff --git a/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/8E60FFC30823F14EE54CFCBF6C6BAC3C b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/8E60FFC30823F14EE54CFCBF6C6BAC3C new file mode 100644 index 0000000..e7305e7 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/8E60FFC30823F14EE54CFCBF6C6BAC3C @@ -0,0 +1 @@ +start=78.959661 diff --git a/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/FFBE522DC6F3D0BD3D895FAD6ABFCA99 b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/FFBE522DC6F3D0BD3D895FAD6ABFCA99 new file mode 100644 index 0000000..cd120a5 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/mpv/watch_later/FFBE522DC6F3D0BD3D895FAD6ABFCA99 @@ -0,0 +1 @@ +start=72.855001 diff --git a/IMPORTED_FROM_MANJARO/.config/networkmanager-dmenu/config.ini b/IMPORTED_FROM_MANJARO/.config/networkmanager-dmenu/config.ini new file mode 100644 index 0000000..5bed117 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/networkmanager-dmenu/config.ini @@ -0,0 +1,21 @@ +[dmenu] +# dmenu_command = /usr/bin/dmenu +# # Note that dmenu_command can contain arguments as well like `rofi -width 30` +# # Rofi and dmenu are set to case insensitive by default `-i` +# l = number of lines to display, defaults to number of total network options +# fn = font string +# nb = normal background (name, #RGB, or #RRGGBB) +# nf = normal foreground +# sb = selected background +# sf = selected foreground +# b = (just set to empty value and menu will appear at the bottom +# m = number of monitor to display on +# p = Custom Prompt for the networks menu +# pinentry 25 Pinentry command +rofi_highlight = True +dmenu_command = /usr/bin/rofi -dmenu -config "~/.config/rofi/config-monocle.rasi" -theme-str "#window { location: northeast; border: 0; }" +[editor] +terminal = default-terminal +gui_if_available = True +# terminal = +# gui_if_available = diff --git a/IMPORTED_FROM_MANJARO/.config/nitrogen/bg-saved.cfg b/IMPORTED_FROM_MANJARO/.config/nitrogen/bg-saved.cfg new file mode 100644 index 0000000..f1aba6a --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/nitrogen/bg-saved.cfg @@ -0,0 +1,4 @@ +[xin_-1] +file=/usr/share/backgrounds/i3_default_background.jpg +mode=5 +bgcolor=#002A36 diff --git a/IMPORTED_FROM_MANJARO/.config/nitrogen/nitrogen.cfg b/IMPORTED_FROM_MANJARO/.config/nitrogen/nitrogen.cfg new file mode 100644 index 0000000..925285b --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/nitrogen/nitrogen.cfg @@ -0,0 +1,12 @@ +[geometry] +posx=565 +posy=60 +sizex=377 +sizey=591 + +[nitrogen] +view=list +recurse=true +sort=alpha +icon_caps=false +dirs=/usr/share/backgrounds diff --git a/IMPORTED_FROM_MANJARO/.config/polybar/config b/IMPORTED_FROM_MANJARO/.config/polybar/config new file mode 100644 index 0000000..92f1f74 --- /dev/null +++ b/IMPORTED_FROM_MANJARO/.config/polybar/config @@ -0,0 +1,408 @@ +;========================================================== +; +; +; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ +; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ +; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ +; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ +; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║ +; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ +; +; +; To learn more about how to configure Polybar +; go to https://github.com/polybar/polybar +; +; The README contains a lot of information +; +;========================================================== + +[colors] +;background = ${xrdb:color0:#222} +background = #222 +background-alt = #444 +;foreground = ${xrdb:color7:#222} +foreground = #dfdfdf +foreground-alt = #555 +primary = #ffb52a +secondary = #e60053 +alert = #bd2c40 + +[bar/example] +;monitor = ${env:MONITOR:HDMI-1} +width = 100% +height = 27 +;offset-x = 1% +;offset-y = 1% +radius = 6.0 +fixed-center = false + +background = ${colors.background} +foreground = ${colors.foreground} + +line-size = 3 +line-color = #f00 + +border-size = 4 +border-color = #00000000 + +padding-left = 0 +padding-right = 2 + +module-margin-left = 1 +module-margin-right = 2 + +font-0 = fixed:pixelsize=10;1 +font-1 = unifont:fontformat=truetype:size=8:antialias=false;0 +font-2 = siji:pixelsize=10;1 + +modules-left = rofi bspwm +modules-center = mpd title +modules-right = xbacklight pulseaudio memory cpu wlan eth battery temperature date powermenu + +tray-position = right +tray-padding = 2 +;tray-background = #0063ff + +wm-restack = bspwm + +;override-redirect = true + +scroll-up = bspwm-desknext +scroll-down = bspwm-deskprev + +cursor-click = pointer +cursor-scroll = ns-resize + +[module/xwindow] +type = internal/xwindow +label = %title:0:30:...% + +[module/xkeyboard] +type = internal/xkeyboard +blacklist-0 = num lock + +format-prefix = " " +format-prefix-foreground = ${colors.foreground-alt} +format-prefix-underline = ${colors.secondary} + +label-layout = %layout% +label-layout-underline = ${colors.secondary} + +label-indicator-padding = 2 +label-indicator-margin = 1 +label-indicator-background = ${colors.secondary} +label-indicator-underline = ${colors.secondary} + +[module/filesystem] +type = internal/fs +interval = 25 + +mount-0 = / + +label-mounted = %{F#0a81f5}%mountpoint%%{F-}: %percentage_used%% +label-unmounted = %mountpoint% not mounted +label-unmounted-foreground = ${colors.foreground-alt} + +[module/bspwm] +type = internal/bspwm + +label-focused = %index% +label-focused-background = ${colors.background-alt} +label-focused-underline= ${colors.primary} +label-focused-padding = 2 + +label-occupied = %index% +label-occupied-padding = 2 + +label-urgent = %index%! +label-urgent-background = ${colors.alert} +label-urgent-padding = 2 + +label-empty = %index% +label-empty-foreground = ${colors.foreground-alt} +label-empty-padding = 2 + +; Separator in between workspaces +; label-separator = | +ws-icon-0 = Web; +ws-icon-1 = Terminals;♛ +ws-icon-2 = Info;♜ +ws-icon-3 = Code;♝ +ws-icon-7 = Communication;♞ +; ws-icon-default = + +[module/mpd] +type = internal/mpd +format-online = + +icon-prev =  +icon-stop =  +icon-play =  +icon-pause =  +icon-next =  + +label-song-maxlen = 25 +label-song-ellipsis = true + +[module/xbacklight] +type = internal/xbacklight + +format =