This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ############################################################# | |
| # O comando completo com os valores fixados | |
| ############################################################# | |
| # 1920x1080: Tamanho da tela | |
| # 510x416: Tamanho do menu whisker | |
| # 35: Tamanho do painel inferior | |
| # xdotool mousemove $(((1920 - 510) / 2)) $((1080 - 416 - 35)) && xfce4-popup-whiskermenu -p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ./configure --disable-shared --enable-static --without-zlib --without-libidn --without-librtmp --disable-ldap --without-libssh2 --without-gnutls --without-mbedtls --without-ldap --without-brotli --without-rtsp --disable-docs --disable-ipfs --disable-rtsp --with-ssl --disable-ftp --disable-file --disable-ldap --disable-rtmp --disable-scp --disable-sftp --disable-smtp --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Resolucao da Tela | |
| wlr-randr --output HDMI-A-1 --custom-mode 256x768 | |
| wlr-randr --output HDMI-A-2 --custom-mode 256x768 | |
| # Video Playback | |
| vlc --fullscreen --loop --no-video-title-show "https://vecsistemas.com/tela/agua-1-3.mp4" | |
| # Exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Limpar | |
| clear | |
| # Usuário padrão (UID 1000) | |
| USUARIO=$(id -nu 1000) | |
| # Verificar acesso root | |
| if [[ $EUID -eq 0 ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Usuário padrão (UID 1000) | |
| USUARIO=$(id -nu 1000) | |
| # Limpar Tela | |
| clear | |
| # Verificar acesso root | |
| if [[ $EUID -eq 0 ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Usuário padrão (UID 1000) | |
| USUARIO=$(id -nu 1000) | |
| # Verificar acesso root | |
| if [[ $EUID -eq 0 ]]; then | |
| echo -e "Esse script NÃO deve ser executado como ${USER}" | |
| exit | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Login do usuário | |
| USUARIO=$(id -nu 1000) | |
| # Verificar acesso root | |
| if [[ $EUID -eq 0 ]]; then | |
| echo -e "Esse script NÃO deve ser executado como ${USER}" | |
| exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################### | |
| # Lista de pacotes Arch Linux (Cinnamon Desktop) (03/06/2025) | |
| # Lembre-se a WIKI é sempre sua aliada | |
| # https://wiki.archlinux.org/title/Cinnamon | |
| ############################################################### | |
| # Compressão | |
| 7zip | |
| unrar | |
| unzip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Windows | |
| //192.168.100.13/dados_03 /mnt/dados cifs username=USER,password=PASSWORD,uid=1000,gid=1000,rw,noperm,iocharset=utf8,_netdev,x-systemd.automount 0 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class SpotenApp | |
| { | |
| public $apiType = "dev"; | |
| public $apiUrl = ["homolog" => "https://dashboard-homolog.spoten.app/api", "producao" => "https://dashboard.spoten.app/api"]; | |
| public $apiTimeout = 5; | |
| public $apiLastRequest = []; | |
| public $companyId = 267; |
NewerOlder