Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comparison #18

Draft
wants to merge 31 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
23081d3
Mobile (#10)
oklopfer Jul 30, 2023
5478456
fix dot-transparent, again
Jul 30, 2023
4467959
Merge pull request #13 from rhino-linux/xfdashboard
ajstrongdev Aug 9, 2023
21820e6
Nuke dstore (#14)
oklopfer Aug 9, 2023
ca08ffb
feat(.bashrc): add nicer looking prompt
Elsie19 Aug 9, 2023
22385dc
Merge pull request #16 from Elsie19/mobile
ajstrongdev Aug 9, 2023
f8232d9
fix(dashboard): failsafe
Elsie19 Aug 11, 2023
853b813
how did AJ and Elsie miss all of these tf (#17)
oklopfer Aug 12, 2023
616b00d
fix that issue I guess
oklopfer Aug 17, 2023
05c6c8b
failsafe powerman
oklopfer Aug 17, 2023
d750a77
license + helpers.rc (#26)
oklopfer Aug 19, 2023
c5de12a
upd lightpad purple
oklopfer Aug 23, 2023
9a3dd59
plank fix
oklopfer Aug 26, 2023
1dc18c0
fix onboard size
oklopfer Aug 28, 2023
170adb7
speed up ulauncher
oklopfer Aug 29, 2023
d973c91
feat(plank): add subtle zoom (#34)
Elsie19 Sep 3, 2023
3cfe48e
add 50-synaptics.conf
oklopfer Sep 24, 2023
926ea27
upd: uLauncher Mobile
ajstrongdev Oct 4, 2023
7b7a878
add cortile config
oklopfer Nov 8, 2023
1719b9c
add cortile as autostart
oklopfer Nov 8, 2023
e447f6b
fix config
oklopfer Nov 8, 2023
0a10646
fix unicorn-session variables up
oklopfer Nov 13, 2023
e3c9e13
enable cursor blink in terminal
oklopfer Dec 13, 2023
a59e04f
fix cortile edge on mobile
oklopfer Jan 20, 2024
ee79c76
update ulauncher keybind
oklopfer Feb 27, 2024
e575d58
dings
oklopfer May 20, 2024
c2227aa
import gradience colors
Jun 13, 2024
92cb51a
Update gsettings.desktop
oklopfer Jun 13, 2024
04f84bc
fix exports
oklopfer Jul 13, 2024
dbe30c1
use new window theme
oklopfer Aug 9, 2024
a0986e6
end gtk thing
oklopfer Aug 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 119 additions & 0 deletions .bashrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return ;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
[[ -x /usr/bin/lesspipe ]] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [[ -z ${debian_chroot:-} ]] && [[ -r /etc/debian_chroot ]]; then
debian_chroot=$(< /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color | *-256color) color_prompt=yes ;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes

if [[ -n $force_color_prompt ]]; then
if [[ -x /usr/bin/tput ]] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi

# comment to remove the `git status` checking '*' and '+' text in the prompt
export GIT_PS1_SHOWDIRTYSTATE=1

if [[ $color_prompt == yes ]]; then
PS1='${debian_chroot:+($debian_chroot) }$(__git_ps1 "(%s) ")\[\e[1m\][\[\e[38;5;82m\]\w\[\e[39m\]] \[\e[38;5;219m\]\u\[\e[38;5;231m\]@\[\e[38;5;199m\]\h \[\e[38;5;255m\]\$ \[\e[0m\]'
else
PS1='${debian_chroot:+($debian_chroot) }$(__git_ps1 "(%s) ")[\w] \u@\h \$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm* | rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*) ;;
esac

# enable color support of ls and also add handy aliases
if [[ -x /usr/bin/dircolors ]]; then
[[ -r ~/.dircolors ]] && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'

alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
alias alert='notify-send --urgency=low -i "$( (($? == 0)) && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [[ -f ~/.bash_aliases ]]; then
source ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [[ -f /usr/share/bash-completion/bash_completion ]]; then
source /usr/share/bash-completion/bash_completion
elif [[ -f /etc/bash_completion ]]; then
source /etc/bash_completion
fi
fi
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Bug report
about: Create a report to help us improve
title: 'BUG: [Title]'
labels: bug
assignees: ajstrongdev

---

**Rhino Linux Version:**
A numerical version for Rhino Linux. Example: `2023.1`, - Version number can be found by running `neofetch` (preinstalled) or with the "Your System" application.

**Platform:**
[CPU Architecture / Device]

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.
6 changes: 6 additions & 0 deletions 50-synaptics.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "FingerLow" "5"
Option "FingerHigh" "10"
EndSection
2 changes: 2 additions & 0 deletions Dot-Transparent/cursor.theme
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[Icon Theme]
Inherits=TheDOT 0.6 transparent
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/00008160000006810000408080010102
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/028006030e0e7ebffc7f7070c0600140
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/03b6e0fcb3499374a867c041f52298f0
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/08e8e1c95fe2fc01f976f1e063a24ccd
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/1081e37283d90000800003c07f3ef6bf
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/14fef782d02440884392942c11205230
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/2870a09082c103050810ffdffffe0204
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/3085a0e285430894940527032f8b26df
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/3ecb610c1bf2410f44200f48c40d3599
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/4498f0e0c1937ffe01fd06f973665830
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/6407b0e94181790501fd1e167b474872
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/640fb0e74195791501fd1ed57b41487f
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/9081237383d90e509aa00f00170e968f
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/9d800788f1b08800ae810202380a0822
Binary file added Dot-Transparent/cursors/X_cursor
Binary file not shown.
Binary file added Dot-Transparent/cursors/arrow
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/based_arrow_down
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/based_arrow_up
Binary file added Dot-Transparent/cursors/bd_double_arrow
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/bottom_left_corner
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/bottom_right_corner
Binary file added Dot-Transparent/cursors/bottom_side
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/c7088f0f3e6c8088236ef8e1e3e70000
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/center_ptr
Binary file added Dot-Transparent/cursors/circle
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/copy
Binary file added Dot-Transparent/cursors/cross
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/cross_reverse
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/crossed_circle
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/crosshair
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/d9ce0ab605698f320427677b458ad60b
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/default
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/diamond_cross
Binary file added Dot-Transparent/cursors/dnd-ask
Binary file not shown.
Binary file added Dot-Transparent/cursors/dnd-copy
Binary file not shown.
Binary file added Dot-Transparent/cursors/dnd-link
Binary file not shown.
Binary file added Dot-Transparent/cursors/dnd-move
Binary file not shown.
Binary file added Dot-Transparent/cursors/dnd-none
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/dot
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/dotbox
Binary file added Dot-Transparent/cursors/double_arrow
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/draft_large
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/draft_small
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/drapedbox
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/e29285e634086352946a0e7090d73106
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/fcf1c3c7cd4491d801f1e1c78f100000
Binary file added Dot-Transparent/cursors/fd_double_arrow
Binary file not shown.
Binary file added Dot-Transparent/cursors/fleur
Binary file not shown.
Binary file added Dot-Transparent/cursors/grab
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/grabbing
Binary file added Dot-Transparent/cursors/h_double_arrow
Binary file not shown.
Binary file added Dot-Transparent/cursors/hand
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/hand1
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/hand2
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/l3ecb610c1bf2410f44200f48c40d3599
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/left_ptr
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/left_ptr_watch
Binary file added Dot-Transparent/cursors/left_side
Binary file not shown.
Binary file added Dot-Transparent/cursors/link
Binary file not shown.
Binary file added Dot-Transparent/cursors/ll_angle
Binary file not shown.
Binary file added Dot-Transparent/cursors/lr_angle
Binary file not shown.
Binary file added Dot-Transparent/cursors/move
Binary file not shown.
Binary file added Dot-Transparent/cursors/pencil
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/pirate
Binary file added Dot-Transparent/cursors/plus
Binary file not shown.
Binary file added Dot-Transparent/cursors/question_arrow
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/right_ptr
Binary file added Dot-Transparent/cursors/right_side
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/sb_down_arrow
Binary file added Dot-Transparent/cursors/sb_h_double_arrow
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/sb_left_arrow
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/sb_right_arrow
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/sb_up_arrow
Binary file added Dot-Transparent/cursors/sb_v_double_arrow
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/tcross
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/top_left_arrow
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/top_left_corner
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/top_right_corner
Binary file added Dot-Transparent/cursors/top_side
Binary file not shown.
Binary file added Dot-Transparent/cursors/ul_angle
Binary file not shown.
Binary file added Dot-Transparent/cursors/ur_angle
Binary file not shown.
1 change: 1 addition & 0 deletions Dot-Transparent/cursors/v_double_arrow
Binary file added Dot-Transparent/cursors/watch
Binary file not shown.
Binary file added Dot-Transparent/cursors/xterm
Binary file not shown.
3 changes: 3 additions & 0 deletions Dot-Transparent/index.theme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[Icon Theme]
Name=TheDOT 0.6 transparent
Comment=Good white modern-looking theme with a piece of nostalgia
Loading